* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #f8f3eb;
  color: #222;
  font-family: "Poppins", sans-serif;
}

/* NAVBAR */

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 25px 60px;

  background: rgba(255,255,255,0.95);

  position: sticky;
  top: 0;
  z-index: 100;
}

nav h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 600;
}

nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
}

nav a {
  text-decoration: none;
  color: #444;
  transition: 0.3s;
}

nav a:hover {
  color: #b08d57;
}

/* HERO */

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;

  min-height: 100vh;
}

.hero-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 80px;
}

.hero-right h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 90px;
  line-height: 0.95;
  margin-bottom: 30px;
}

.hero-right p {
  color: #666;
  line-height: 1.9;
  max-width: 500px;
}

/* BUTTON */

.btn {
  display: inline-block;

  margin-top: 30px;

  padding: 14px 34px;

  border: 1px solid #b08d57;

  border-radius: 40px;

  text-decoration: none;

  color: #222;

  transition: 0.4s;

  width: fit-content;
}

.btn:hover {
  background: #b08d57;
  color: white;
}

/* ABOUT */

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 60px;

  padding: 120px 80px;
}

.about-image img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  border-radius: 20px;
}

.about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 60px;
  margin-bottom: 30px;
}

.about-text p {
  color: #555;
  line-height: 2;
  margin-bottom: 20px;
}

/* GALLERY */

.gallery-section {
  padding: 120px 80px;
}

.gallery-section h2 {
  text-align: center;

  font-family: "Cormorant Garamond", serif;

  font-size: 60px;

  margin-bottom: 60px;
}

.gallery-grid {
  columns: 3 250px;
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 20px;

  transition: 0.5s;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

/* QUOTE */

.quote-section {
  padding: 150px 40px;

  background: #efe4d3;

  text-align: center;
}

.quote-content h2 {
  font-family: "Cormorant Garamond", serif;

  font-size: 70px;

  max-width: 900px;

  margin: auto;

  line-height: 1.2;
}

.quote-content p {
  margin-top: 30px;
  color: #666;
}

/* SOCIALS */

.social-section {
  padding: 120px 40px;

  text-align: center;
}

.social-section h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 55px;
  margin-bottom: 40px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.social-links a {
  text-decoration: none;

  border: 1px solid #b08d57;

  padding: 12px 25px;

  border-radius: 40px;

  color: #222;

  transition: 0.4s;
}

.social-links a:hover {
  background: #b08d57;
  color: white;
}

/* CONTACT */

.contact-section {
  padding: 120px 40px;

  text-align: center;
}

.contact-section h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 60px;
}

.contact-section p {
  margin-top: 20px;
  color: #666;
}

/* FOOTER */

footer {
  text-align: center;

  padding: 30px;

  border-top: 1px solid rgba(0,0,0,0.1);

  color: #777;
}

/* MOBILE */

@media (max-width: 768px) {

  nav {
    flex-direction: column;
    gap: 15px;
  }

  .hero,
  .about-section {
    grid-template-columns: 1fr;
  }

  .hero-right {
    padding: 50px 30px;
  }

  .hero-right h1 {
    font-size: 58px;
  }

  .about-section {
    padding: 80px 30px;
  }

  .gallery-section,
  .quote-section,
  .social-section,
  .contact-section {
    padding: 80px 30px;
  }

  .quote-content h2 {
    font-size: 42px;
  }

  .social-links {
    flex-direction: column;
  }

}