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

:root {
  --primary: #d2691e;
  --secondary: #8b4513;
  --accent: #ff6347;
  --text: #333333;
  --bg-light: #fff8dc;
  --white: #ffffff;
}

body {
  font-family: "Lato", sans-serif;
  font-size: 16px; /* Base font size cos some older browsers use a different default */
  line-height: 1.6;
  color: var(--text);
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

h1 {
  font-size: 48px;
}
h2 {
  font-size: 36px;
  margin-bottom: 20px;
}
h3 {
  font-size: 24px;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(139, 69, 19, 0.95);
  padding: 15px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

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

.nav-links li a:hover {
  color: var(--accent);
}

.nav-links-main {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 700;
}

.nav-cta:hover {
  background: var(--primary);
  color: var(--white) !important;
}

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

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    /* Gradient background as overlay to dim background image */
      url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1600")
      center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
  padding: 0 5%;
}

.hero h1 {
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: fadeInDown 1s ease;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
  max-width: 700px;
  animation: fadeInUp 1s ease 0.3s both;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 1s ease 0.6s both;
}

.btn-primary,
.btn-secondary,
.btn-whatsapp {
  padding: 15px 40px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
  max-width: 350px;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

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

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary);
}

.hero-info {
  margin-top: 40px;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 1s ease 0.9s both;
}

.hero-info span {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Section Styling */
section {
  padding: 80px 5%;
}

.section-light {
  background: var(--white);
}

.section-dark {
  background: var(--bg-light);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title p {
  color: #666;
  font-size: 18px;
  margin-top: 10px;
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.8;
}

.features {
  margin-top: 30px;
}

.features div {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 18px;
}

.features i {
  color: var(--accent);
  font-size: 20px;
}

.about-image {
  width: 100%;
  height: 400px;
  background: url("https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=800")
    center/cover no-repeat;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Menu Section */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.menu-item {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.menu-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.menu-item-content {
  padding: 20px;
}

.menu-item h3 {
  margin-bottom: 10px;
  color: var(--secondary);
}

.menu-item p {
  color: #666;
  margin-bottom: 15px;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
}

.menu-cta {
  text-align: center;
  margin-top: 40px;
}
.menu-cta .btn-primary {
  width: auto;
}

/* Gallery Section */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* Location Section */
.location-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.map iframe {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  border: none;
}

.location-info h3 {
  margin-bottom: 15px;
  color: var(--secondary);
}

.location-info p {
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 1.8;
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.stars {
  font-size: 24px;
  margin-bottom: 15px;
  color: #ffd700;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.6;
}

.testimonial strong {
  color: var(--secondary);
}

/* Contact Section */
.contact-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto 50px;
}

.contact-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-card h3 {
  margin-bottom: 15px;
  font-size: 28px;
}

.contact-card p {
  margin-bottom: 20px;
  color: #666;
}

.contact-card .btn-primary,
.contact-card .btn-whatsapp {
  margin-top: auto;
  align-self: center;
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #128c7e;
}

/* Contact Form */
form {
  max-width: 600px;
  margin: 50px auto 0;
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

form input,
form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  font-family: "Lato", sans-serif;
  transition: border-color 0.3s ease;
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: var(--primary);
}

form button {
  width: 100%;
  padding: 15px;
  font-size: 18px;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 35px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
}

/* Footer */
footer {
  background: var(--secondary);
  color: var(--white);
  padding: 40px 5%;
  text-align: center;
}

footer p {
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.social-links a {
  color: var(--white);
  font-size: 24px;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--accent);
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 20px;
  }

  .nav-links-main {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--secondary);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 50px 30px;
    transition: right 0.3s ease;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .nav-links-main.active {
    right: 0;
  }

  .nav-cta {
    margin-top: auto;
    margin-bottom: 40px;
    width: 100%;
    text-align: center;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero {
    height: auto;
    min-height: 100vh;
    padding: 100px 5% 50px;
  }

  .hero p {
    font-size: 18px;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

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

  .about-content,
  .location-container {
    grid-template-columns: 1fr;
  }

  .about-image {
    height: 300px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .location-info .btn-primary {
    max-width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }

  section {
    padding: 50px 5%;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 28px;
  }
}

/* Success Message */
.success-message {
  display: none;
  background: #4caf50;
  color: white;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
  margin: 20px auto;
  max-width: 600px;
}
