* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #111;
  background: #000;
  line-height: 1.6;
}

/* navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  font-size: larger;
  padding: 15px 10%;
  background: #FF7070;
  position: relative;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 90px;
}

.nav-links a {
  text-decoration: none;
  font-family: "Playfair Display", serif; 
  font-weight: 700; 
  color: #111;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

/* menu */
.menu {
  display: block; 
  cursor: pointer;
}

.menu img {
  width: 28px;
}

/* hero section */
.hero {
  display: flex;
  justify-content: space-between;
  height: 92vh;
  background: linear-gradient(to right,#FEF7AE , #FFD2D2 , #FFABF7);
}

.hero-left {
  flex: 1;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-left h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 3px;
}

.hero-left p {
  font-size: large;
  margin-bottom: 25px;
  max-width: 800px;
}

/* button */
.btn {
  background: #FF7070;
  color: #fff;
  padding: 7px 14px; 
  border: none;
  font-weight: 900;
  font-size: 1rem;
  cursor: pointer;
  width: 150px;
}

.hero-right {
  flex: 1;
  overflow: hidden;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* gallery section */
.gallery {
  margin-top: 10px;
  height: 100vh;
  padding: 60px 10%;
  background: linear-gradient(to right, #FEF7AE , #FFD2D2 , #FFABF7);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.gallery-images {
  display: flex;
  gap: 20px;
  flex: 1;
}

.small-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.small-images img {
  width: 300px;
  height: 250px;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tall-image img {
  width: 300px;
  height: 520px;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gallery-text {
  flex: 1;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  background: #FF7070;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.gallery-text p {
  font-size: 1rem;
  font-weight: 600;
  color: #111;
}

.gallery-text h2 {
  font-size: 2.9rem;
  font-weight: 600;
  color: #111;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #111;
  text-decoration: none;
  padding: 10px 16px;
  font-weight: 500;
  transition: transform 0.2s ease;
}

.arrow-link:hover {
  transform: translateX(5px);
}

.arrow-link img {
  width: 18px;
}

/* for responsive */
@media (max-width: 1024px) {
  .hero-left h1 {
    font-size: 2.5rem;
  }
  .gallery-images {
    gap: 15px;
  }
}

@media (max-width: 780px) {
  .navbar {
    justify-content: space-between;
    padding: 15px 5%;
  }
  
  .menu {
    display: block; 
  }
  
  .nav-links {
    display: none; 
    flex-direction: column;
    background: #FF7070;
    position: absolute;
    top: 60px;
    right: 5%;
    width: 90%;
    padding: 15px;
    gap: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  
  .nav-links.show {
    display: flex;
  }
  
  .hero {
    flex-direction: column;
    height: auto;
  }
  .hero-left {
    padding: 40px 20px;
    text-align: left;
    order: 2;
  }
  .hero-right {
    height: 300px;
    order: 1;
  }
  .btn {
    width: 150px;
    margin: 0 auto;
    display: block;
  }
  
  .gallery {
    flex-direction: column;
    align-items: center;
    padding: 40px 5%;
    height: auto;
  }
  .gallery-images {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .small-images img,
  .tall-image img {
    width: 280px;
    height: 250px;
  }
  .gallery-text {
    text-align: center;
    max-width: 100%;
    padding: 20px;
    margin-top: 20px;
  }
}
