/* Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --primary-color: #F2B705;
  --secondary-color: #4A6C2F;
  --accent-color: #1A7B8F;
  --background-color: #FFF8E1;
  --text-color: #000;
  --light-text: #FFFFFF;
  --dark-text: #000;
  --border-color: #E0E0E0;
  --overlay-color: rgba(0, 0, 0, 0.5);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background: radial-gradient(circle, transparent, #eddca4);
  overflow-x: hidden;
	letter-spacing:-0.5px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Cinzel", serif;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.2;
}

button {
  font-family: "Cinzel", serif;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-color);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section {
  padding: 100px 0;
}

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

.section-title {
  position: relative;
  display: inline-block;
  color: var(--dark-text);
  margin-bottom: 20px;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 60%;
  max-width: 300px;
}

.divider-line {
  flex-grow: 1;
  height: 1px;
  background-color: var(--primary-color);
}

.divider-icon {
  padding: 0 15px;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.bg-light {
  background-color: #f9f9f9;
}

.text-center {
  text-align: center;
}

/* Buttons */
.btn, .main-nav ul li:last-child a {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  font-family: "Montserrat", serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary, .main-nav ul li:last-child a {
  background-color: var(--primary-color);
  color: var(--dark-text);
}

.btn-primary:hover, .main-nav ul li:last-child a:hover {
  background-color: var(--secondary-color);
  color: var(--light-text);
}

.main-nav ul li:last-child a:hover:after {
  display: none;
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--light-text);
}

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

.btn-book {
  background-color: var(--primary-color) !important;
  color: var(--dark-text) !important;
  padding: 10px 20px !important;
  border-radius: 30px !important;
  border: 0 !important;
}

.btn-book:hover {
  background-color: var(--secondary-color) !important;
  color: var(--light-text) !important;
}
.btn-book:hover:after {
  display: none;
}

/* Header */
#header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgb(243 241 237);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo img {
  height: 120px;
  transition: var(--transition);
  top: 0;
  background-color: #fff;
}

.logo a {
  display: block;
  line-height: 0;
}

.main-nav {
  padding-left: 80px;
}

.main-nav ul {
  display: flex;
  align-items: center;
}

.main-nav li {
  margin: 0 15px;
}

.main-nav li:last-child {
  margin-right: 0;
}

.main-nav a {
  color: var(--text-color);
  font-weight: 500;
  padding: 5px 0;
  position: relative;
  display: block;
}

.main-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.header-right {
  display: flex;
  align-items: center;
}

.language-selector {
  margin-right: 20px;
}

.language-selector select {
  padding: 5px 10px;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  background-color: transparent;
  font-family: "Cormorant Garamond", serif;
  cursor: pointer;
}

.social-links {
  flex-wrap: nowrap;
  display: flex;
}

.social-links a {
  margin-left: 15px;
  color: var(--text-color);
  font-size: 1.2rem;
}

.social-links a {
  background-color: #f2b705;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

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

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 2px;
  background-color: var(--text-color);
  margin: 3px 0;
  transition: var(--transition);
}

.text-right {
  text-align: right;
  margin-bottom: 15px;
}

#flags {
  width: 100% !important;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

div#google_language_translator {
  display: none !important;
}

.d-flex {
  display: flex;
  align-items: center;
}

/* Hero Banner */
#hero-banner {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.hero-slider {
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.slide-content {
  position: relative;
  z-index: 2;
  color: var(--light-text);
  max-width: 800px;
  padding: 0 15px;
}

.slide-content h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.video-slide video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.slider-controls {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.prev-slide,
.next-slide {
  background: rgba(255, 255, 255, 0.3);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.prev-slide:hover,
.next-slide:hover {
  background: rgba(255, 255, 255, 0.5);
}

.slider-dots {
  display: flex;
  margin: 0 20px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  margin: 0 5px;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--primary-color);
}

.slide-bg {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
}

/* About Section */
.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text {
  flex: 1;
}

.about-text h3 {
  color: var(--secondary-color);
  margin-bottom: 20px;
}

/* Featured Menu */
.menu-categories {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.menu-category {
  padding: 10px 20px;
  margin: 0 10px 10px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  font-family: "Montserrat", serif;
  font-weight: 500;
}

.menu-category:hover,
.menu-category.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.menu-category-items {
  display: none;
}

.menu-category-items.active {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.menu-item-inner {
  width: 25%;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  margin-bottom: 30px;
}

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

.menu-item-image {
  height: 200px;
  overflow: hidden;
}

.menu-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: var(--transition);
}

.menu-item:hover .menu-item-image img {
  transform: scale(1.1);
}

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

.menu-item-info h4 {
  margin-bottom: 10px;
  color: var(--dark-text);
  font-size:18px;
}

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

.price {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.btn-recipe {
  display: inline-block;
  margin-left: 15px;
  color: var(--accent-color);
  font-size: 0.9rem;
  text-decoration: underline;
}

/* Services */
.services-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.service-card {
  width: 30%;
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary-color);
  color: var(--dark-text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
}

.service-card h3 {
  margin-bottom: 15px;
  color: var(--dark-text);
}

.btn-service {
  display: inline-block;
  margin-top: 15px;
  color: var(--accent-color);
  font-weight: 500;
}

.btn-service:hover {
  color: var(--primary-color);
}

/* Ambiance Gallery */
.gallery-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 250px;
  cursor: pointer;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
  height: 520px;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: var(--transition);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.1);
}

.gallery-info {
  text-align: center;
  color: white;
  padding: 20px;
}

.gallery-info h4 {
  margin-bottom: 5px;
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  z-index: 2;
  transition: var(--transition);
}

.gallery-item:hover .video-play-button {
  background-color: var(--primary-color);
}

/* Location & Hours */
.location-container {
  display: flex;
  gap: 50px;
}

.map-container {
  flex: 1;
}

.google-map {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
}

.hours-container {
  flex: 1;
}

.hours-list {
  margin-bottom: 30px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border-color);
}

.day {
  font-weight: 600;
}

.address h4 {
  margin-bottom: 10px;
  color: var(--secondary-color);
}

/* Footer */
#footer {
  background-color: #222;
  color: white;
  padding: 70px 0 20px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
}

.footer-logo {
  flex: 1;
  min-width: 200px;
}

.footer-logo img {
  max-width: 150px;
}

.footer-nav,
.footer-contact,
.footer-social {
  flex: 1;
  min-width: 200px;
}

.footer-nav h4,
.footer-contact h4,
.footer-social h4 {
  color: var(--primary-color);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-nav h4::after,
.footer-contact h4::after,
.footer-social h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-nav ul li {
  margin-bottom: 10px;
}

.footer-nav ul li a {
  color: #ccc;
}

.footer-nav ul li a:hover {
  color: var(--primary-color);
}

.footer-contact p {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.footer-contact p i {
  margin-right: 10px;
  color: var(--primary-color);
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--primary-color);
  color: var(--dark-text);
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  background-color: #25D366;
  color: white;
  padding: 10px 15px;
  border-radius: 30px;
  font-weight: 500;
}

.whatsapp-btn i {
  margin-right: 8px;
  font-size: 1.2rem;
}

.whatsapp-btn:hover {
  background-color: #128C7E;
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Back to Top Button */
#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--dark-text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

#back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

#back-to-top:hover {
  background-color: var(--secondary-color);
  color: white;
}

/* Animation Classes */
.animate-fade {
  opacity: 0;
  animation: fade-in 1s forwards;
}

.animate-fade-delay {
  opacity: 0;
  animation: fade-in 1s forwards 0.3s;
}

.animate-fade-delay-2 {
  opacity: 0;
  animation: fade-in 1s forwards 0.6s;
}

.reveal-left,
.reveal-right,
.reveal-up {
  opacity: 0;
  transition: all 1s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0) !important;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0) !important;
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0) !important;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Responsive Styles */
@media (max-width: 1024px) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.2rem;
  }
  .about-content {
    flex-direction: column;
  }
  .about-image,
  .about-text {
    width: 100%;
  }
  .menu-item-inner {
    width: 100%;
  }
  .service-card {
    width: 45%;
  }
  .location-container {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  .header-inner {
    padding: 10px 0;
  }
  .logo img {
    height: 50px;
  }
  .main-nav {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: white;
    transition: var(--transition);
    z-index: 999;
  }
  .main-nav.active {
    left: 0;
  }
  .main-nav ul {
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
  }
  .main-nav li {
    margin: 15px 0;
  }
  .mobile-menu-toggle {
    display: flex;
    margin-left: 20px;
  }
  .language-selector {
    margin-right: 10px;
  }
  .social-links {
    display: none;
  }
  .service-card {
    width: 100%;
  }
  .gallery-container {
    grid-template-columns: 1fr;
  }
  .gallery-item.large {
    grid-column: auto;
    grid-row: auto;
    height: 250px;
  }
  .footer-top {
    flex-direction: column;
  }
  .slide-content h1 {
    font-size: 2rem;
  }
  .slide-content p {
    font-size: 1rem;
  }
  .header-right {
    justify-content: flex-end;
  }
}
.page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/placeholder.svg?height=400&width=1200");
  background-size: cover;
  background-position: center;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.menu-categories-nav {
  padding: 0.5rem 0;
  background: #f8f9fa;
  position: sticky;
  top: 130px;
  z-index: 100;
}

.category-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.category-btn {
  background: white;
  border: 2px solid #ddd;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  font-family: "Cinzel", serif;
}

.category-btn:hover,
.category-btn.active {
  background: #d4af37;
  color: white;
  border-color: #d4af37;
}

.menu-section {
  padding: 3rem 0;
}

.menu-category-section {
  margin-bottom: 4rem;
}

.category-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #333;
  position: relative;
}

.category-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #d4af37;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

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

.item-image {
  height: 200px;
  overflow: hidden;
}

.item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}

.menu-item:hover .item-image img {
  transform: scale(1.1);
}

.item-details {
  padding: 1.5rem;
}

.item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.item-header h3 {
  font-size: 1.3rem;
  color: #333;
  margin: 0;
}

.price {
  font-size: 1.2rem;
  font-weight: 600;
  color: #d4af37;
}

.item-description {
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.item-actions {
  display: flex;
  gap: 0.5rem;
}

.recipe-btn,
.order-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.recipe-btn {
  background: #f8f9fa;
  color: #666;
  border: 1px solid #ddd;
}

.recipe-btn:hover {
  background: #e9ecef;
  color: #333;
}

.order-btn {
  background: #d4af37;
  color: white;
  flex: 1;
}

.order-btn:hover {
  background: #b8941f;
  transform: translateY(-1px);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  overflow-y: auto;
}

.modal-content {
  background-color: white;
  margin: 2% auto;
  padding: 0;
  border-radius: 15px;
  width: 90%;
  max-width: 800px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.close {
  position: absolute;
  right: 20px;
  top: 20px;
  color: white;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 10001;
  background: rgba(0, 0, 0, 0.5);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close:hover {
  background: rgba(0, 0, 0, 0.7);
}

.recipe-header {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.recipe-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.recipe-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 2rem;
}

.recipe-info h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.recipe-meta {
  display: flex;
  gap: 2rem;
}

.recipe-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.recipe-body {
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.ingredients-section h3,
.instructions-section h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.ingredients-list,
.instructions-list {
  padding-left: 1.5rem;
}

.ingredients-list li,
.instructions-list li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .menu-items {
    grid-template-columns: 1fr;
  }
  .category-buttons {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 1rem;
  }
  .category-btn {
    white-space: nowrap;
  }
  .recipe-body {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .page-header h1 {
    font-size: 2.5rem;
  }
}
.aboutPage {
  text-align: center;
}

/* Contact Main Section */
.contact-main {
  padding: 6rem 0;
  background: var(--gray-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Contact Information */
.contact-info {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  height: -moz-fit-content;
  height: fit-content;
}

.info-header {
  margin-bottom: 3rem;
}

.info-header h2 {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.info-header p {
  color: var(--text-light);
  font-size: 1.1rem;
}

.info-cards {
  margin-bottom: 3rem;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--gray-light);
  border-radius: 15px;
  margin-bottom: 1.5rem;
  transition: var(--transition);
  border: 2px solid transparent;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--primary-color);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.info-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
}

.card-content {
  width: 100%;
}

.card-content h3 {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.card-content p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.info-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.info-link:hover {
  color: var(--primary-dark);
  transform: translateX(5px);
}

.info-link.whatsapp {
  color: #25d366;
}

.info-link.whatsapp:hover {
  color: #128c7e;
}

/* Opening Hours */
.opening-hours {
  margin-bottom: 3rem;
}

.opening-hours h3 {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.hours-grid {
  background: var(--gray-light);
  border-radius: 15px;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.hours-item:last-child {
  border-bottom: none;
}

.day {
  font-weight: 600;
  color: var(--text-dark);
}

.time {
  color: var(--primary-color);
  font-weight: 500;
}

/* Social Section */
.social-section h3 {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.social-links-contact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--gray-light);
  border-radius: 10px;
  text-decoration: none;
  color: var(--text-dark);
  transition: var(--transition);
  border: 2px solid transparent;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.social-link.facebook:hover {
  border-color: #1877f2;
  color: #1877f2;
}

.social-link.instagram:hover {
  border-color: #e4405f;
  color: #e4405f;
}

.social-link.twitter:hover {
  border-color: #1da1f2;
  color: #1da1f2;
}

.social-link.youtube:hover {
  border-color: #ff0000;
  color: #ff0000;
}

.social-link i {
  font-size: 1.5rem;
}

/* Contact Form Section */
.contact-form-section {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.form-header {
  margin-bottom: 3rem;
}

.form-header h2 {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.form-header p {
  color: var(--text-light);
  font-size: 1.1rem;
}

/* Enhanced Form Styles */
.contact-form {
  position: relative;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.form-group {
  position: relative;
  margin-bottom: 2rem;
  line-height: 0;
}

.form-group p {
  margin: 0;
  padding: 0;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1.2rem 0 0.8rem 0;
  border: none;
  border-bottom: 2px solid #000;
  background: transparent;
  font-size: 1rem;
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--primary-color);
}

.form-group label {
  color: var(--text-light);
  font-size: 1rem;
  transition: var(--transition);
  pointer-events: none;
  transform-origin: left;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group select:focus + label,
.form-group select:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
  transform: translateY(-1.5rem) scale(0.8);
  color: var(--primary-color);
}

.wpcf7-not-valid-tip {
  line-height: normal;
  font-size: 14px;
}

.form-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.form-group input:focus ~ .form-line,
.form-group select:focus ~ .form-line,
.form-group textarea:focus ~ .form-line {
  width: 100%;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.checkbox-group input[type=checkbox] {
  display: none;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
  color: var(--text-light);
  line-height: 1.6;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--gray-medium);
  border-radius: 4px;
  position: relative;
  transition: var(--transition);
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-custom::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 6px;
  width: 6px;
  height: 10px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: var(--transition);
}

.checkbox-group input[type=checkbox]:checked + .checkbox-label .checkbox-custom {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.checkbox-group input[type=checkbox]:checked + .checkbox-label .checkbox-custom::after {
  opacity: 1;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  padding: 1.2rem 2rem;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.submit-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
}

.btn-loading {
  display: none;
}

.submit-btn.loading .btn-text,
.submit-btn.loading .btn-icon {
  display: none;
}

.submit-btn.loading .btn-loading {
  display: block;
}

/* Map Section */
.map-section {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.map-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  position: relative;
}

.map-placeholder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.map-marker {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.7);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
  }
}
.map-overlay {
  position: absolute;
  top: 2rem;
  left: 2rem;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  max-width: 400px;
  z-index: 99;
}

.map-info h3 {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.map-info p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.map-actions {
  display: flex;
  gap: 1rem;
}

.map-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.2rem;
  background: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}

.map-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
  padding: 8rem 0;
  background: var(--white);
}

.faq-section .section-header {
  margin-bottom: 4rem;
}

.faq-section .section-header h2 {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.faq-section .section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1.5rem;
}

.faq-item {
  background: var(--gray-light);
  border-radius: 15px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background: rgba(212, 175, 55, 0.1);
}

.faq-question h3 {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  color: var(--text-dark);
  margin: 0;
}

.faq-question i {
  color: var(--primary-color);
  transition: var(--transition);
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: var(--primary-color);
  color: var(--white);
  text-align: center;
}

.cta-content h2 {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

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

.btn-whatsapp:hover {
  background: #128c7e;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .page-hero {
    height: 50vh;
  }
  .contact-main {
    padding: 4rem 0;
  }
  .contact-info,
  .contact-form-section {
    padding: 0;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .social-links {
    grid-template-columns: 1fr;
  }
  .map-overlay {
    position: relative;
    top: auto;
    left: auto;
    margin: 2rem;
    max-width: none;
  }
  .map-actions {
    flex-direction: column;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .btn {
    width: 100%;
    max-width: 300px;
  }
}
@media (max-width: 480px) {
  .info-card {
    flex-direction: column;
    text-align: center;
  }
  .card-icon {
    align-self: center;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .faq-item {
    margin-bottom: 1rem;
  }
  .contact-main {
    padding: 3rem 0;
  }
  .info-header h2,
  .form-header h2 {
    font-size: 2rem;
  }
  .cta-content h2 {
    font-size: 2rem;
  }
}
.service-icon img {
    max-width: 50px;
}
/*# sourceMappingURL=style.css.map */