* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f7f4ef;
  color: #20201e;
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: auto;
}

/* HEADER */

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(20, 18, 15, 0.9);
  backdrop-filter: blur(16px);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header .container {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 25px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  color: #fff;
  font-size: 14px;
  transition: 0.25s ease;
}

.site-nav a:hover {
  color: #d4a373;
}
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

/* HERO */

.hero-section {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(
      90deg,
      rgba(10, 9, 7, 0.85),
      rgba(10, 9, 7, 0.35)
    ),
    url("https://images.unsplash.com/photo-1517248135467-4c7edcadc4c1?auto=format&fit=crop&w=1800&q=85")
    center / cover;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(10, 9, 7, 0.5),
    transparent 55%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}

.badge {
  display: inline-block;
  color: #d4a373;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
}

.hero h1 {
  max-width: 800px;
  margin: 18px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 7vw, 82px);
  line-height: 1.05;
}

.hero p {
  max-width: 600px;
  margin-bottom: 30px;
  color: #e8e4dd;
  font-size: 18px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 3px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn-primary {
  border: 0;
  background: #d4a373;
  color: #201a14;
}

.btn-primary:hover {
  background: #e1b987;
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #201a14;
}

.hero-bottom {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 25px;
  left: 0;
  display: flex;
  justify-content: space-between;
  color: #ddd;
  font-size: 12px;
}

/* GENERAL SECTIONS */

.about-section,
.featured-section,
.menu-section,
.gallery-section,
.features-section,
.reviews-section,
.reservation-section,
.map-section {
  padding: 100px 0;
}

.about-section {
  background: #f7f4ef;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image img {
  height: 520px;
  border-radius: 3px;
}

.about-text h2,
.featured-section h2,
.menu-section h2,
.gallery-section h2,
.features-section h2,
.reviews-section h2,
.reservation-section h2,
.map-section h2 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.15;
}

.about-text p {
  max-width: 600px;
  color: #666;
}

/* CARDS */

.featured-section {
  background: #201d19;
  color: #fff;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  overflow: hidden;
  background: #2b2722;
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  height: 350px;
  transition: 0.5s ease;
}

.card:hover img {
  transform: scale(1.04);
}

.card h3 {
  margin: 18px 20px 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
}

.card .price {
  display: block;
  margin: 0 20px 20px;
  color: #d4a373;
  font-size: 17px;
  font-weight: 700;
}

/* MENU */

.menu-section {
  background: #f7f4ef;
}

.menu-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 35px 0;
}

.filter-btn {
  border: 1px solid #d6cec1;
  border-radius: 30px;
  padding: 9px 17px;
  background: transparent;
  color: #555;
  cursor: pointer;
  transition: 0.25s ease;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: #201d19;
  background: #201d19;
  color: #fff;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.menu-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 25px rgba(30, 25, 18, 0.06);
}

.menu-item img {
  height: 100%;
  min-height: 150px;
}

.menu-item h3 {
  margin: 18px 20px 7px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
}

.menu-item p {
  margin: 0 20px 5px;
  color: #777;
}

.menu-item .price {
  display: block;
  margin: 0 20px 18px;
  color: #9a7038;
  font-weight: 700;
}

/* GALLERY */

.gallery-section {
  background: #eae4da;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-grid img {
  height: 260px;
  border-radius: 2px;
  transition: 0.35s ease;
}

.gallery-grid img:hover {
  transform: scale(1.02);
}

/* FEATURES */

.features-section {
  background: #f7f4ef;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #d8d0c4;
  border-bottom: 1px solid #d8d0c4;
}

.feature {
  padding: 35px 20px;
  text-align: center;
  border-right: 1px solid #d8d0c4;
}

.feature:last-child {
  border-right: 0;
}

.feature span {
  font-size: 28px;
}

.feature h3 {
  margin: 10px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
}

.feature p {
  margin: 0;
  color: #777;
  font-size: 13px;
}

/* REVIEWS */

.reviews-section {
  background: #201d19;
  color: #fff;
}

.reviews-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review {
  padding: 30px;
  background: #2b2722;
}

.review p {
  min-height: 80px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
}

.author {
  color: #d4a373;
  font-weight: 700;
}

/* RESERVATION */

.reservation-section {
  background: #d4a373;
}

.reservation-section h2 {
  color: #211b15;
}

.reservation-section .container {
  max-width: 850px;
}

#reservation-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 35px;
  background: #f7f4ef;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group:nth-last-child(2),
#reservation-form button {
  grid-column: span 2;
}

.form-group label {
  margin-bottom: 6px;
  font-weight: 700;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid #d5cdc1;
  padding: 12px;
  outline: none;
  background: #fff;
  color: #222;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #b78749;
}

/* MAP */

.map-section {
  background: #eae4da;
}

.map-placeholder {
  padding: 60px 30px;
  text-align: center;
  background: #d8d0c4;
}

.map-placeholder p:first-child {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

/* FOOTER */

.site-footer {
  padding: 45px 0;
  background: #181612;
  color: #aaa;
  text-align: center;
}

.site-footer p {
  margin: 7px 0;
}

/* BACK TO TOP */

.back-to-top {
  position: fixed;
  z-index: 100;
  right: 20px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #d4a373;
  color: #201a14;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

/* ANIMATION */

[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.7s ease;
}

[data-animate].animate {
  opacity: 1;
  transform: translateY(0);
}

/* TABLET */

@media (max-width: 900px) {
  .site-nav ul {
    gap: 13px;
  }

  .site-nav a {
    font-size: 12px;
  }

  .about-container {
    gap: 40px;
  }

  .cards {
    grid-template-columns: 1fr 1fr;
  }

  .cards .card:last-child {
    grid-column: span 2;
    max-width: 50%;
    width: 100%;
    margin: auto;
  }

  .features-list {
    grid-template-columns: 1fr 1fr;
  }

  .feature:nth-child(2) {
    border-right: 0;
  }

  .feature:nth-child(-n + 2) {
    border-bottom: 1px solid #d8d0c4;
  }

  .reviews-list {
    grid-template-columns: 1fr;
  }
}

/* MOBILE */

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .site-header .container {
    min-height: 70px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    display: none;
    padding: 18px;
    background: #181612;
  }

  .site-nav.show {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav a {
    display: block;
    padding: 13px 5px;
    font-size: 14px;
  }
  }

  .hero-section {
    min-height: 680px;
  }

  .hero-content {
    padding-top: 60px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    max-width: 280px;
  }

  .hero-bottom {
    font-size: 10px;
  }

  .about-section,
  .featured-section,
  .menu-section,
  .gallery-section,
  .features-section,
  .reviews-section,
  .reservation-section,
  .map-section {
    padding: 75px 0;
  }

  .about-container {
    grid-template-columns: 1fr;
  }

  .about-image img {
    height: 330px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .cards .card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .menu-items {
    grid-template-columns: 1fr;
  }

  .menu-item {
    grid-template-columns: 110px 1fr;
  }

  .menu-item img {
    min-height: 135px;
  }

  .menu-item h3 {
    margin: 14px 15px 5px;
    font-size: 18px;
  }

  .menu-item p,
  .menu-item .price {
    margin-left: 15px;
    margin-right: 15px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid img {
    height: 180px;
  }

  .features-list {
    grid-template-columns: 1fr;
  }

  .feature {
    border-right: 0;
    border-bottom: 1px solid #d8d0c4;
  }

  .feature:last-child {
    border-bottom: 0;
  }

  #reservation-form {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .form-group:nth-last-child(2),
  #reservation-form button {
    grid-column: auto;
  }
}

/* SMALL MOBILE */

@media (max-width: 430px) {
  .hero h1 {
    font-size: 41px;
  }

  .badge {
    font-size: 9px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img {
    height: 240px;
  }

  .menu-item {
    grid-template-columns: 95px 1fr;
  }

  .menu-item img {
    min-height: 125px;
  }
}
/* WhatsApp test */
.whatsapp-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99999;

  display: flex;
  align-items: center;
  gap: 8px;

  padding: 13px 18px;
  border-radius: 50px;

  background: #25d366;
  color: #fff;
  text-decoration: none;

  font-size: 14px;
  font-weight: 700;

  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-btn::before {
  content: "◉";
  font-size: 18px;
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}