@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Text&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --cream: #fff8ef;
  --beige: #eadfce;
  --brown: #4b2414;
  --dark-brown: #2b130a;
  --caramel: #c97945;
  --soft-caramel: #d9905c;
  --green: #4f6f52;
  --white: #ffffff;
  --text-dark: #3a1f14;
  --text-light: #fff8ef;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Urbanist", Arial, sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
}

/* NAVBAR */

.navbar {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;

  background-color: transparent;
  padding: 22px 0;
  transition: 0.3s ease;
}

.navbar.scrolled {
  background-color: var(--cream);
  padding: 14px 0;
  box-shadow: 0 4px 20px rgba(75, 36, 20, 0.15);
}

.nav-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;

  text-decoration: none;
  color: var(--cream);
  font-size: 24px;
  font-weight: bold;
  transition: 0.3s ease;
}

.logo i {
  color: var(--soft-caramel);
}

.navbar.scrolled .logo {
  color: var(--brown);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 35px;
  z-index: 1001;
}

.nav-links a {
  text-decoration: none;
  color: var(--cream);
  font-weight: 500;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: var(--soft-caramel);
}

.navbar.scrolled .nav-links a {
  color: var(--brown);
}

.navbar.scrolled .nav-links a:hover {
  color: var(--caramel);
}

.order-btn {
  text-decoration: none;
  color: var(--white);
  background-color: var(--dark-brown);
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s ease;
}

.order-btn:hover {
  background-color: var(--soft-caramel);
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(201, 121, 69, 0.5);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 32px;
  cursor: pointer;
}

.navbar.scrolled .menu-toggle {
  color: var(--brown);
}

/* HERO */

.hero {
  height: 100vh;
  min-height: 650px;
  max-height: 850px;

  background-image:
    linear-gradient(rgba(43, 19, 10, 0.35), rgba(43, 19, 10, 0.68)),
    url("image/foto 1.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  padding: 120px 20px 60px;
}

.hero-content {
  max-width: 900px;
}

.hero-small-title {
  color: var(--soft-caramel);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-family: "DM Serif Text", serif;
  font-size: 70px;
  line-height: 1.1;
  color: var(--white);
  font-weight: 400;
  margin: 0 0 25px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.55);
}

.hero-content h1 span {
  color: var(--soft-caramel);
  font-style: italic;
}

.hero-text {
  color: var(--cream);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.5);
}

/* HERO BUTTONS */

.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;

  margin-top: 45px;
}

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s ease;
}

.primary-btn {
  color: var(--cream);
  background-color: var(--caramel);
  box-shadow: 0 8px 20px rgba(201, 121, 69, 0.35);
}

.primary-btn:hover {
  background-color: var(--soft-caramel);
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(201, 121, 69, 0.5);
}

.secondary-btn {
  color: var(--cream);
  border: 1px solid var(--cream);
  background-color: transparent;
}

.secondary-btn:hover {
  background-color: var(--cream);
  color: var(--brown);
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(255, 248, 239, 0.25);
}

/* MENU SECTION */

.menu-section {
  padding: 90px 20px;
  background-color: var(--cream);
  text-align: center;
}

.section-header {
  max-width: 700px;
  margin: 0 auto;
}

.section-small-title {
  color: var(--caramel);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 3px;
  margin: 0 0 12px;
}

.section-header h2 {
  position: relative;
  display: inline-block;

  font-family: "Playfair Display", serif;
  font-size: 50px;
  font-weight: 400;
  color: var(--brown);

  margin: 0 0 30px;
}

.section-header h2::after {
  content: "";
  width: 70px;
  height: 2px;
  background-color: var(--caramel);
  border-radius: 10px;

  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
}

.section-text {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-dark);
  margin-top: 20px;
}

.menu-container {
  width: 90%;
  max-width: 1200px;
  margin: 60px auto 0;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.menu-card {
  background-color: #fffaf3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(75, 36, 20, 0.12);
  transition: 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 35px rgba(75, 36, 20, 0.18);
}

.menu-image {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.menu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.4s ease;
}

.menu-card:hover .menu-image img {
  transform: scale(1.08);
}

.menu-badge {
  position: absolute;
  top: 16px;
  left: 16px;

  background-color: var(--soft-caramel);
  color: white;
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 14px;
}

.menu-card-content {
  padding: 24px;
  text-align: left;
}

.menu-card-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.menu-card-title h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: var(--brown);
}

.menu-card-title span {
  color: var(--caramel);
  font-weight: bold;
  font-size: 17px;
}

.menu-card-content p {
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 0;
}

.full-menu {
  display: none;
  width: 90%;
  max-width: 1200px;
  margin: 70px auto 0;
}

.full-menu.show {
  display: block;
}

.full-menu h3 {
  font-family: "Playfair Display", serif;
  font-size: 38px;
  font-weight: 400;
  color: var(--brown);
  text-align: center;
  margin-bottom: 40px;
}

.full-menu-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.menu-button-wrapper {
  margin-top: 50px;
  text-align: center;
}

.full-menu-btn {
  border: none;
  cursor: pointer;

  background-color: var(--brown);
  color: var(--white);

  padding: 15px 34px;
  border-radius: 35px;

  font-family: "Urbanist", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;

  box-shadow: 0 8px 20px rgba(75, 36, 20, 0.18);
  transition: 0.3s ease;
}

.full-menu-btn:hover {
  background-color: var(--caramel);
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(201, 121, 69, 0.4);
}

.about-section {
  padding: 100px 20px;
  background-color: var(--beige);
}

.about-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-content {
  text-align: left;
}

.about-content h2 {
  position: relative;

  font-family: "Playfair Display", serif;
  font-size: 56px;
  font-weight: 400;
  color: var(--brown);

  margin: 0 0 40px;
}

.about-content h2::after {
  content: "";
  width: 70px;
  height: 2px;
  background-color: var(--caramel);

  position: absolute;
  left: 0;
  bottom: -16px;
}

.about-content p {
  font-size: 18px;
  line-height: 1.7;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: visible;
  box-shadow: 0 16px 35px rgba(75, 36, 20, 0.18);
}

.about-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  transition: 0.4s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

.experience-badge {
  position: absolute;
  left: -35px;
  bottom: -30px;

  background-color: var(--dark-brown);
  color: var(--cream);

  width: 135px;
  height: 105px;
  border-radius: 18px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  box-shadow: 0 12px 28px rgba(43, 19, 10, 0.3);
}

.experience-badge strong {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  line-height: 1;
}

.experience-badge span {
  font-size: 14px;
  margin-top: 6px;
}
.about-features {
  margin-top: 35px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.about-feature-card {
  background-color: var(--cream);
  padding: 24px 20px;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(75, 36, 20, 0.1);
}

.about-feature-card i {
  color: var(--caramel);
  font-size: 24px;
  margin-bottom: 14px;
}

.about-feature-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: var(--brown);
  margin: 0 0 10px;
}

.about-feature-card p {
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
  color: var(--text-dark);
}

/* MOMENTS SECTION */

.moments-section {
  padding: 100px 20px;
  background-color: var(--cream);
}

.moments-grid {
  width: 90%;
  max-width: 1200px;
  margin: 60px auto 0;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 22px;
}

.moment-photo {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(75, 36, 20, 0.14);
}

.moment-large {
  grid-row: span 2;
}

.moment-wide {
  grid-column: span 3;
}

.moment-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.4s ease;
}

.moment-photo:hover img {
  transform: scale(1.08);
}

/* TESTIMONIALS SECTION */

.testimonials-section {
  padding: 100px 20px;
  background-color: var(--beige);
}

.testimonials-container {
  width: 90%;
  max-width: 1200px;
  margin: 60px auto 0;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background-color: var(--cream);
  padding: 35px 30px;
  border-radius: 22px;
  box-shadow: 0 10px 25px rgba(75, 36, 20, 0.12);
  transition: 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 35px rgba(75, 36, 20, 0.18);
}

.stars {
  display: flex;
  gap: 6px;
  color: var(--caramel);
  margin-bottom: 22px;
}

.testimonial-card p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 30px;
}

.guest-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.guest-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;

  background-color: var(--brown);
  color: var(--cream);

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: bold;
  font-size: 20px;
}

.guest-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 21px;
  color: var(--brown);
  margin: 0 0 4px;
}

.guest-info span {
  color: var(--caramel);
  font-size: 14px;
  font-weight: 600;
}

/* VISIT SECTION */

.visit-section {
  padding: 100px 20px;
  background-color: var(--cream);
}

.visit-container {
  width: 90%;
  max-width: 1200px;
  margin: 60px auto 0;

  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: stretch;
}

.visit-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.visit-card {
  background-color: var(--beige);
  padding: 26px;
  border-radius: 20px;

  display: flex;
  gap: 18px;
  align-items: flex-start;

  box-shadow: 0 8px 22px rgba(75, 36, 20, 0.1);
}

.visit-card i {
  color: var(--caramel);
  font-size: 26px;
  margin-top: 4px;
}

.visit-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  color: var(--brown);
  margin: 0 0 8px;
}

.visit-card p {
  color: var(--text-dark);
  line-height: 1.6;
  margin: 0 0 5px;
}

.visit-btn {
  display: inline-block;
  width: fit-content;

  text-decoration: none;
  background-color: var(--brown);
  color: var(--cream);

  padding: 15px 34px;
  border-radius: 35px;

  font-weight: bold;
  transition: 0.3s ease;
  box-shadow: 0 8px 20px rgba(75, 36, 20, 0.18);
}

.visit-btn:hover {
  background-color: var(--caramel);
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(201, 121, 69, 0.4);
}

.visit-map {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(75, 36, 20, 0.18);
  min-height: 450px;
}

.visit-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* FOOTER */

.footer {
  background-color: var(--dark-brown);
  color: var(--cream);
  padding: 70px 20px 25px;
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;

  color: var(--cream);
  text-decoration: none;
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 18px;
}

.footer-logo i {
  color: var(--soft-caramel);
}

.footer-brand p {
  line-height: 1.7;
  color: var(--beige);
  margin-bottom: 22px;
}

.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--cream);
  background-color: rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-socials a:hover {
  background-color: var(--caramel);
  transform: translateY(-4px);
}

.footer h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: var(--cream);
  margin: 0 0 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-links a {
  color: var(--beige);
  text-decoration: none;
  margin-bottom: 12px;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: var(--soft-caramel);
  padding-left: 5px;
}

.footer-hours p,
.footer-contact p {
  color: var(--beige);
  line-height: 1.6;
  margin: 0 0 12px;
}

.footer-contact i {
  color: var(--soft-caramel);
  margin-right: 8px;
}

.footer-bottom {
  width: 90%;
  max-width: 1200px;
  margin: 45px auto 0;
  padding-top: 22px;

  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: var(--beige);
  font-size: 14px;
}
/* MOBILE */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  section {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* NAVBAR */

  .nav-container {
    width: 92%;
  }

  .logo {
    font-size: 21px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;

    width: 100%;
    background-color: var(--cream);

    flex-direction: column;
    align-items: center;
    gap: 20px;

    padding: 25px 0;
    display: none;
    z-index: 1001;

    box-shadow: 0 12px 25px rgba(75, 36, 20, 0.15);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    color: var(--brown);
  }

  .order-btn {
    display: none;
  }

  /* HERO */

  .hero {
    min-height: 720px;
    padding: 130px 18px 70px;
  }

  .hero-content h1 {
    font-size: 44px;
    line-height: 1.15;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .btn {
    width: 100%;
    max-width: 260px;
    text-align: center;
  }

  /* SECTION TITLES */

  .section-header h2 {
    font-size: 38px;
  }

  .section-text {
    font-size: 16px;
  }

  /* MENU */

  .menu-container,
  .full-menu-container {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .menu-image {
    height: 220px;
  }

  .menu-card-title {
    align-items: flex-start;
    gap: 12px;
  }

  /* ABOUT */

  .about-container {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content h2 {
    font-size: 42px;
  }

  .about-content p {
    font-size: 16px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .about-image img {
    height: 360px;
  }

  .experience-badge {
    left: 18px;
    bottom: 18px;
    width: 120px;
    height: 90px;
  }

  .experience-badge strong {
    font-size: 28px;
  }

  /* MOMENTS */

  .moments-grid {
    width: 100%;
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .moment-large {
    grid-row: span 1;
  }

  .moment-wide {
    grid-column: span 1;
  }

  /* TESTIMONIALS */

  .testimonials-container {
    width: 100%;
    grid-template-columns: 1fr;
  }

  /* VISIT */

  .visit-container {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .visit-map {
    min-height: 350px;
  }

  .visit-map iframe {
    height: 350px;
  }

  .visit-card {
    flex-direction: column;
  }

  /* FOOTER */

  .footer-container {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer {
    text-align: left;
  }

  .footer-socials {
    justify-content: flex-start;
  }

  .footer-bottom {
    width: 100%;
  }
}
