/*
Theme Name: TX Cantina
Theme URI: https://txmexicangrillcantina.com
Author: Antigravity IDE
Description: Un tema moderno, rápido y responsive para TX Mexican Grill Cantina. Rediseño basado en demo.
Version: 2.0.0
Text Domain: tx-cantina
*/

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@300;400;600;700&family=Oswald:wght@400;600&family=Poppins:wght@300;400;600&display=swap');

:root {
  --primary: #C3312B;
  /* Reddish orange from demo */
  --primary-hover: #A0201D;
  --secondary: #111111;
  /* Black */
  --background: #F8F2E8;
  /* Light cream */
  --accent: #4A6741;
  /* Agave green */
  --text: #333333;
  --white: #FFFFFF;

  --font-title: 'Bebas Neue', 'Oswald', sans-serif;
  --font-text: 'Montserrat', 'Poppins', sans-serif;
  --font-script: 'Great Vibes', cursive;
  /* Fallback if we add one */
}

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

body {
  font-family: var(--font-text);
  color: var(--text);
  background-color: var(--background);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-title);
  color: var(--secondary);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: all 0.3s ease;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  font-family: var(--font-title);
  font-size: 1.2rem;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

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

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

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

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

.btn-outline-red {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
  font-size: 1rem;
  padding: 8px 20px;
  border-radius: 20px;
}

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

/* Header */
.site-header {
  background-color: var(--white);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1005;
  height: 100px;
  padding: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: top 0.3s ease;
}

body {
  padding-top: 100px;
}

/* Admin bar offsets for fixed header */
body.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}


/* Torn paper effect */
.site-header::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 20px;
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 20" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M0,0 L1200,0 L1200,10 Q1190,20 1180,10 T1160,10 T1140,10 T1120,10 T1100,10 T1080,10 T1060,10 T1040,10 T1020,10 T1000,10 T980,10 T960,10 T940,10 T920,10 T900,10 T880,10 T860,10 T840,10 T820,10 T800,10 T780,10 T760,10 T740,10 T720,10 T700,10 T680,10 T660,10 T640,10 T620,10 T600,10 T580,10 T560,10 T540,10 T520,10 T500,10 T480,10 T460,10 T440,10 T420,10 T400,10 T380,10 T360,10 T340,10 T320,10 T300,10 T280,10 T260,10 T240,10 T220,10 T200,10 T180,10 T160,10 T140,10 T120,10 T100,10 T80,10 T60,10 T40,10 T20,10 T0,10 Z" fill="%23FFFFFF"/></svg>');
  background-size: 100% 100%;
  z-index: 10;
}

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

.site-branding h1 {
  color: var(--primary);
  font-size: 3rem;
  margin: 0;
  line-height: 1;
}

.site-branding h1 a {
  color: var(--primary);
}

.site-branding p {
  font-size: 0.7rem;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--secondary);
}

.site-logo img,
.custom-logo {
  max-width: 120px;
  width: 120px;
  height: auto;
  display: block;
  transition: all 0.3s ease;
}

.footer-logo .custom-logo {
  max-width: 120px;
  width: 120px;
  margin: 0 auto;
}

.main-navigation ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
}

.main-navigation a {
  color: var(--secondary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

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

.main-navigation .btn-primary {
  color: var(--white);
  padding: 10px 20px;
  font-size: 1rem;
}

/* 1. Hero */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: var(--background);
  background-attachment: fixed;
  background-size: cover;
  background-position: center right;
  min-height: 80vh;
  padding: 80px 0;
  text-align: left;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  height: 600px;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 100 200' xmlns='http://www.w3.org/2000/svg'><path d='M40,200 V50 Q40,30 50,30 Q60,30 60,50 V200 M60,120 Q80,120 80,100 V70 Q80,60 75,60 Q70,60 70,70 V90 Q70,100 60,100 M40,140 Q20,140 20,120 V80 Q20,70 25,70 Q30,70 30,80 V110 Q30,120 40,120' stroke='%234A6741' stroke-width='8' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.1;
  z-index: 1;
}

.hero .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-text {
  flex: 0 0 50%;
  padding-right: 40px;
  position: relative;
  z-index: 2;
  color: var(--secondary);
}

.hero-text h3 {
  font-family: var(--font-text);
  color: #8C7C61;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-weight: 600;
}

.hero-text h1 {
  font-family: var(--font-title);
  font-size: 6.5rem;
  line-height: 0.9;
  margin-bottom: 15px;
  text-shadow: none;
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  width: 70%;
}

.hero-divider hr {
  flex-grow: 1;
  border: none;
  border-top: 1px solid #D4CAB5;
}

.hero-divider i {
  color: #8C7C61;
  font-size: 1.2rem;
}

.hero-text p {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 40px;
  color: var(--secondary);
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: flex-start;
}

.btn-secondary-outline {
  background-color: transparent;
  color: var(--secondary);
  border: 1px solid var(--secondary);
  font-family: var(--font-title);
  font-size: 1.1rem;
  letter-spacing: 1px;
  padding: 12px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

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

/* Hero Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text h3 {
  animation: fadeInUp 0.8s ease-out forwards;
}

.hero-text h1 {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.15s forwards;
}

.hero-text p {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.hero-buttons {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.45s forwards;
}

.hero-image {
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.3s forwards;
}

/* 2. Lo Más Pedido (5 Cols) */
.popular-dishes {
  padding: 80px 0;
  background-color: #FDF9F1;
  text-align: center;
}

.section-subtitle {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.section-title {
  font-size: 3.5rem;
  color: var(--secondary);
  margin-bottom: 50px;
}

.dishes-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.dish-card {
  text-align: center;
  background: transparent;
}

.dish-img {
  width: 100%;
  padding-top: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.dish-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-family: var(--font-title);
}

.dish-card p {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.4;
}

/* 3. Storytelling & Happy Hour (3 Cols) */
.story-happy-section {
  padding: 80px 0;
  background-color: #F4E8D3;
  border-top: 4px solid var(--primary);
  border-bottom: 4px solid var(--primary);
}

.sh-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 30px;
  align-items: center;
}

.story-box {
  padding: 20px;
  position: relative;
}

.story-box h4 {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 400;
  color: var(--accent);
  font-size: 2.5rem;
  margin-bottom: 0px;
}

.story-box h2 {
  font-size: 3.2rem;
  line-height: 1.1;
  margin-bottom: 20px;
}

.story-box p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}

.story-stamp {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px dashed #D4CAB5;
  color: #D4CAB5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 2.5rem;
  opacity: 0.5;
  transform: rotate(-15deg);
}

.story-signature {
  font-family: var(--font-script);
  font-style: normal;
  color: var(--primary);
  font-size: 2.8rem;
  font-weight: 400;
  position: relative;
  z-index: 2;
}

.photo-box {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.happy-hour-box {
  background-color: var(--primary);
  color: var(--white);
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(195, 49, 43, 0.4);
  overflow: hidden;
}

.happy-hour-box h3 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 0px;
  letter-spacing: 2px;
}

.happy-hour-box h2 {
  color: var(--white);
  font-size: 4.5rem;
  line-height: 1;
  margin-bottom: 15px;
  text-shadow: none;
}

.hh-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.hh-divider hr {
  flex-grow: 1;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.hh-divider i {
  color: var(--white);
  font-size: 1.2rem;
}

.happy-hour-box .hh-title {
  font-weight: 400;
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-family: var(--font-title);
  letter-spacing: 1px;
}

.happy-hour-box .hh-subtitle {
  font-size: 0.85rem;
  font-weight: 400;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.happy-hour-box .btn {
  position: relative;
  z-index: 2;
  font-size: 1rem;
  padding: 10px 25px;
}



/* 4. Clientes */
.clients-section {
  padding: 80px 0;
  background-color: #FDF9F1;
}

.clients-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  border-bottom: 1px solid #E5DCC9;
  padding-bottom: 20px;
}

.clients-header h2 {
  margin-bottom: 0;
}

.clients-rating {
  text-align: right;
}

.clients-rating h3 {
  font-size: 2rem;
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.clients-rating h3 span {
  color: #F5C518;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.review-card {
  background: #F4E8D3;
  padding: 30px;
  border-radius: 8px;
}

.stars {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.review-text {
  font-size: 0.95rem;
  margin-bottom: 20px;
  font-style: italic;
  color: #555;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.review-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.review-author span {
  font-weight: 600;
  font-size: 0.9rem;
}

/* 5. Instagram */
.instagram-section {
  padding: 60px 0 0 0;
  text-align: center;
  background-color: var(--white);
}

.instagram-section h2 {
  font-size: 1.5rem;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.instagram-section p {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 30px;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 5px;
}

.insta-grid img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

/* 6. Footer Premium */
.site-footer {
  background-color: #FDF9F1;
  padding: 60px 0 20px;
  position: relative;
  border-top: 5px solid var(--primary);
}

.footer-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid #E5DCC9;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.feature-icon {
  font-size: 2rem;
}

.feature-text h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  font-family: var(--font-text);
  font-weight: 700;
}

.feature-text p {
  font-size: 0.85rem;
  color: #666;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
}

.footer-contact {
  display: flex;
  gap: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #555;
}

.contact-item i {
  font-size: 1.2rem;
  color: var(--primary);
}

.footer-social {
  display: flex;
  gap: 15px;
  align-items: center;
}

.btn-whatsapp {
  background-color: #25D366;
  color: var(--white);
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Sticky Sidebar */
.sticky-sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 999;
}

.sticky-btn {
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  border-radius: 10px 0 0 10px;
  transition: width 0.3s ease;
}

.sticky-btn:hover {
  width: 90px;
  color: var(--white);
}

.sticky-btn.llamar {
  background-color: #D94838;
}

.sticky-btn.llegar {
  background-color: #79766B;
}

.sticky-btn.ordenar {
  background-color: #C3312B;
}

.sticky-btn.whatsapp {
  background-color: #4A6741;
}

.sticky-btn span {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .dishes-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .hero-text {
    flex: 0 0 100%;
    padding-right: 0;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 0;
  }

  .hero-text h1 {
    font-size: 4rem;
  }

  .hero-divider {
    width: 100%;
    margin: 0 auto 20px auto;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-secondary-outline {
    text-align: center;
    justify-content: center;
  }

  .dishes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .footer-contact {
    flex-direction: column;
    gap: 15px;
  }

  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .main-navigation ul {
    display: none;
    /* Mobile menu needed */
  }

  .sticky-sidebar {
    display: none;
  }
}

/* =========================================
   PÁGINA DE MENÚ INTERACTIVO
   ========================================= */

/* Menu Hero */
.menu-hero {
  background-color: var(--secondary);
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
  background-size: cover;
  background-position: center;
  padding: 80px 0 60px 0;
  text-align: center;
  color: var(--white);
  border-bottom: 4px solid var(--primary);
  position: relative;
}

.menu-hero-title {
  color: var(--white);
  font-size: 4rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.menu-hero-subtitle {
  font-size: 1.1rem;
  color: #E5DCC9;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

/* Switcher Bar (COMIDA / BEBIDAS) */
.menu-switcher-bar {
  background-color: var(--white);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 90;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid #E5DCC9;
}

.menu-switcher {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.switcher-btn {
  background-color: #F0EDE6;
  border: 2px solid #E5DCC9;
  color: var(--secondary);
  padding: 10px 30px;
  font-family: var(--font-title);
  font-size: 1.3rem;
  letter-spacing: 1px;
  border-radius: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.switcher-btn i {
  font-size: 1.1rem;
}

.switcher-btn:hover {
  background-color: #E5DCC9;
  transform: translateY(-2px);
}

.switcher-btn.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 6px 15px rgba(195, 49, 43, 0.3);
}

/* Content Container Grid */
.menu-content-container {
  display: flex;
  margin-top: 50px;
  margin-bottom: 80px;
  gap: 40px;
  position: relative;
  align-items: flex-start;
}

/* Sidebar Wrapper & List */
.menu-sidebar-wrapper {
  flex: 0 0 250px;
  position: sticky;
  top: 100px;
  /* Switcher bar is sticky, keep sidebar below it */
  z-index: 85;
}

.menu-sidebar {
  background-color: var(--white);
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #E5DCC9;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.category-list {
  list-style: none;
  display: none;
  flex-direction: column;
  gap: 8px;
}

.category-list.active {
  display: flex;
}

.category-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 15px;
  border-radius: 6px;
  color: var(--text);
  font-family: var(--font-title);
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.category-link i {
  font-size: 1rem;
  width: 20px;
  text-align: center;
  color: var(--primary);
  transition: transform 0.2s ease;
}

.category-link:hover {
  background-color: #F8F2E8;
  color: var(--primary);
  padding-left: 18px;
}

.category-link:hover i {
  transform: scale(1.2);
}

.category-link.active {
  background-color: #F8F2E8;
  color: var(--primary);
  font-weight: bold;
  border-left-color: var(--primary);
  padding-left: 18px;
}

.category-link.active i {
  color: var(--primary);
}

/* Main Sections Area */
.menu-sections {
  flex: 1;
}

.menu-group {
  display: none;
}

.menu-group.active {
  display: block;
}

.menu-section {
  background-color: var(--white);
  border-radius: 8px;
  border: 1px solid #E5DCC9;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease;
}

.menu-section:hover {
  transform: translateY(-2px);
}

.menu-section-header {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.menu-section-header h2 {
  font-size: 2.2rem;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  text-transform: uppercase;
}

.menu-section-header h2 i {
  color: var(--primary);
}

.header-divider {
  width: 60px;
  height: 4px;
  background-color: var(--primary);
  display: block;
  border-radius: 2px;
}

/* Items Grid */
.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Card Styling */
.menu-item-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.3s ease;
  padding: 10px;
  border-radius: 6px;
}

.menu-item-card:hover {
  background-color: #FAF6F0;
}

.menu-item-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  position: relative;
}

.menu-item-name {
  font-family: var(--font-title);
  font-size: 1.4rem;
  color: var(--secondary);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.menu-item-dots {
  flex-grow: 1;
  border-bottom: 2px dotted #D6CBB5;
  height: 1px;
  margin: 0 5px;
}

.menu-item-price {
  font-family: var(--font-title);
  font-size: 1.4rem;
  color: var(--primary);
  font-weight: bold;
  flex-shrink: 0;
}

.menu-item-desc {
  font-size: 0.85rem;
  color: #555555;
  line-height: 1.4;
}

.menu-item-options {
  font-size: 0.8rem;
  color: var(--accent);
  font-style: italic;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.menu-item-options i {
  font-size: 0.75rem;
}

/* Section Footer Notes (Complementos / Salsas) */
.menu-section-note {
  margin-top: 30px;
  background-color: #F8F2E8;
  border-left: 4px solid var(--primary);
  padding: 15px 20px;
  border-radius: 0 6px 6px 0;
}

.menu-section-note p {
  font-size: 0.85rem;
  color: var(--secondary);
  font-weight: 600;
  line-height: 1.5;
}

.menu-section-note p i {
  color: var(--primary);
  margin-right: 5px;
}

/* =========================================
   RESPONSIVE DESIGN (PÁGINA MENÚ)
   ========================================= */

@media (max-width: 1024px) {
  .menu-content-container {
    gap: 20px;
  }

  .menu-sidebar-wrapper {
    flex: 0 0 200px;
  }

  .menu-section {
    padding: 30px;
  }

  .menu-items-grid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .menu-content-container {
    flex-direction: column;
    margin-top: 20px;
  }

  .menu-switcher-bar {
    top: 0;
    padding: 15px 0;
  }

  .switcher-btn {
    padding: 8px 20px;
    font-size: 1.1rem;
  }

  .menu-sidebar-wrapper {
    flex: none;
    width: 100%;
    position: sticky;
    top: 72px;
    /* Switcher bar height approx. 72px */
    margin: 0;
    padding: 0;
    background-color: var(--background);
    z-index: 85;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.02);
  }

  .menu-sidebar {
    padding: 0;
    border: none;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
  }

  .category-list {
    flex-direction: row;
    display: none;
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px 15px;
    gap: 10px;
    -webkit-overflow-scrolling: touch;
  }

  .category-list.active {
    display: flex;
  }

  .category-list::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for clean horizontal list */
  }

  .category-list li {
    display: inline-block;
  }

  .category-link {
    padding: 8px 15px;
    border-left: none;
    border-bottom: 2px solid transparent;
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    font-size: 0.9rem;
  }

  .category-link:hover {
    padding-left: 15px;
  }

  .category-link.active {
    border-left-color: transparent;
    border-bottom-color: var(--primary);
    background-color: var(--primary);
    color: var(--white);
    padding-left: 15px;
  }

  .category-link.active i {
    color: var(--white);
  }

  .menu-sections {
    padding: 0 15px;
  }

  .menu-section {
    padding: 25px 20px;
    margin-bottom: 25px;
  }

  .menu-section-header h2 {
    font-size: 1.8rem;
  }

  .menu-items-grid {
    grid-template-columns: 1fr;
    /* Single column on mobile */
    gap: 15px;
  }

  .menu-item-name,
  .menu-item-price {
    font-size: 1.25rem;
  }
}

/* =========================================
   PÁGINA SOBRE NOSOTROS
   ========================================= */

/* Hero Section */
.about-hero {
  background-color: var(--secondary);
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1565299585323-38d6b0865b47?auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: center;
  padding: 100px 0 80px 0;
  text-align: center;
  color: var(--white);
  border-bottom: 4px solid var(--primary);
}

.about-hero-title {
  color: var(--white);
  font-size: 4rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.about-hero-subtitle {
  font-size: 1.2rem;
  color: #E5DCC9;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 300;
}

/* Common Section Label */
.about-section-label {
  display: inline-block;
  color: var(--primary);
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* History and Cantina section grid */
.about-history-section,
.about-cantina-section {
  padding: 80px 0;
  background-color: var(--background);
}

.about-history-grid,
.cantina-promo-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.cantina-promo-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.about-history-text h2,
.cantina-promo-text h2 {
  font-size: 3.5rem;
  margin-bottom: 25px;
}

.about-history-text p,
.cantina-promo-text p {
  font-size: 1.05rem;
  color: #444444;
  margin-bottom: 20px;
  line-height: 1.7;
}

.image-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  aspect-ratio: 4/3;
}

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

.image-wrapper:hover img {
  transform: scale(1.05);
}

.about-buttons {
  margin-top: 30px;
}

/* Values Section */
.about-values-section {
  padding: 80px 0;
  background-color: #FDF9F1;
  text-align: center;
  border-top: 1px solid #E5DCC9;
  border-bottom: 1px solid #E5DCC9;
}

.values-header {
  margin-bottom: 50px;
}

.values-header h2 {
  font-size: 3.5rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.value-card {
  background-color: var(--white);
  padding: 40px 30px;
  border-radius: 8px;
  border: 1px solid #E5DCC9;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: var(--primary);
}

.value-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
  height: 70px;
  width: 70px;
  background-color: #F8F2E8;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  background-color: var(--primary);
  color: var(--white);
}

.value-card h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.value-card p {
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.5;
}

/* Call to Action Banner */
.about-cta-banner {
  padding: 100px 0;
  background-color: var(--primary);
  color: var(--white);
  text-align: center;
  position: relative;
}

.cta-banner-content h2 {
  color: var(--white);
  font-size: 3.8rem;
  margin-bottom: 15px;
}

.cta-banner-content p {
  font-size: 1.2rem;
  color: #F8F2E8;
  margin-bottom: 40px;
  font-weight: 300;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.cta-buttons .btn-secondary {
  border-color: var(--white);
  color: var(--white);
}

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

.cta-buttons .btn-primary {
  background-color: var(--secondary);
  border-color: var(--secondary);
}

.cta-buttons .btn-primary:hover {
  background-color: #333333;
  border-color: #333333;
}

/* =========================================
   RESPONSIVE DESIGN (SOBRE NOSOTROS)
   ========================================= */

@media (max-width: 1024px) {
  .about-hero-title {
    font-size: 3.5rem;
  }

  .about-history-text h2,
  .cantina-promo-text h2,
  .values-header h2 {
    font-size: 3rem;
  }

  .about-history-grid,
  .cantina-promo-grid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 80px 0 60px;
  }

  .about-hero-title {
    font-size: 2.8rem;
  }

  .about-hero-subtitle {
    font-size: 1rem;
  }

  .about-history-section,
  .about-cantina-section,
  .about-values-section {
    padding: 60px 0;
  }

  .about-history-grid,
  .cantina-promo-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cantina-promo-grid {
    display: flex;
    flex-direction: column-reverse;
  }

  .about-history-text h2,
  .cantina-promo-text h2,
  .values-header h2 {
    font-size: 2.4rem;
    text-align: center;
  }

  .about-history-text p,
  .cantina-promo-text p {
    text-align: center;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .value-card {
    padding: 30px 20px;
  }

  .about-cta-banner {
    padding: 70px 0;
  }

  .cta-banner-content h2 {
    font-size: 2.4rem;
  }

  .cta-banner-content p {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding: 0 20px;
  }

  .cta-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .about-buttons {
    display: flex;
    justify-content: center;
  }
}

/* =========================================
   PÁGINA DE GALERÍA DE FOTOS
   ========================================= */

/* Gallery Hero */
.gallery-hero {
  background-color: var(--secondary);
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('assets/gallery/A002_C006_0618XB_001.webp');
  background-size: cover;
  background-position: center;
  padding: 100px 0 80px 0;
  text-align: center;
  color: var(--white);
  border-bottom: 4px solid var(--primary);
}

.gallery-hero-title {
  color: var(--white);
  font-size: 4rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.gallery-hero-subtitle {
  font-size: 1.2rem;
  color: #E5DCC9;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 300;
}

.gallery-section-label {
  display: inline-block;
  color: var(--primary);
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Slider Section */
.gallery-slider-section {
  padding: 80px 0;
  background-color: var(--background);
  text-align: center;
  border-bottom: 1px solid #E5DCC9;
}

.gallery-slider-section h2 {
  font-size: 3.5rem;
  margin-bottom: 40px;
}

.swiper {
  width: 100%;
  padding-top: 30px;
  padding-bottom: 50px;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
  width: 320px;
  height: 320px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

/* coverflow shadow and styling */
.swiper-slide-shadow-left,
.swiper-slide-shadow-right {
  border-radius: 12px;
}

.slide-image-wrapper {
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.slide-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Custom Swiper Controls */
.swiper-button-next,
.swiper-button-prev {
  color: var(--primary) !important;
  background-color: rgba(255, 255, 255, 0.9);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.5rem !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: var(--primary);
  color: var(--white) !important;
}

.swiper-pagination-bullet-active {
  background: var(--primary) !important;
}

/* Grid Section */
.gallery-grid-section {
  padding: 80px 0;
  background-color: #FDF9F1;
  text-align: center;
}

.gallery-grid-section h2 {
  font-size: 3.5rem;
  margin-bottom: 50px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-grid-item {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.gallery-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-grid-item:hover img {
  transform: scale(1.08);
}

/* Premium Lightbox Overlay */
.custom-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 17, 17, 0.95);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.custom-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content-wrapper {
  max-width: 90%;
  max-height: 85%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-content {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  object-fit: contain;
  animation: zoomLightbox 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes zoomLightbox {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #CCCCCC;
  font-size: 3rem;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s ease;
}

.lightbox-close:hover {
  color: var(--primary);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #CCCCCC;
  font-size: 2.5rem;
  cursor: pointer;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  transition: all 0.2s ease;
  user-select: none;
}

.lightbox-arrow:hover {
  color: var(--white);
  background-color: var(--primary);
}

.lightbox-arrow-left {
  left: 40px;
}

.lightbox-arrow-right {
  right: 40px;
}

/* =========================================
   RESPONSIVE DESIGN (GALERÍA)
   ========================================= */

@media (max-width: 1024px) {
  .gallery-hero-title {
    font-size: 3.5rem;
  }

  .gallery-slider-section h2,
  .gallery-grid-section h2 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .gallery-hero-title {
    font-size: 2.8rem;
  }

  .gallery-hero-subtitle {
    font-size: 1rem;
  }

  .gallery-slider-section,
  .gallery-grid-section {
    padding: 60px 0;
  }

  .gallery-slider-section h2,
  .gallery-grid-section h2 {
    font-size: 2.4rem;
  }

  .swiper-slide {
    width: 280px;
    height: 280px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 0 10px;
  }

  .lightbox-close {
    top: 20px;
    right: 25px;
    font-size: 2.5rem;
  }

  .lightbox-arrow {
    width: 45px;
    height: 45px;
    font-size: 1.8rem;
  }

  .lightbox-arrow-left {
    left: 15px;
  }

  .lightbox-arrow-right {
    right: 15px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   MENU HAMBURGUESA Y PANEL OFFCANVAS
   ========================================= */

/* Header Controls (Mobile CTA & Hamburger) */
.header-controls {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-mobile-cta {
  display: none !important;
  /* hidden on desktop */
}

/* Hamburger Button */
.hamburger-menu-btn {
  display: none;
  /* hidden on desktop */
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1005;
  position: relative;
}

.hamburger-menu-btn:focus {
  outline: none;
}

.hamburger-bar {
  width: 100%;
  height: 2px;
  background-color: var(--secondary);
  border-radius: 0;
  transition: all 0.3s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  transform-origin: center;
}

/* Hamburger Morphing Animation */
.hamburger-menu-btn.active .hamburger-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background-color: var(--primary);
}

.hamburger-menu-btn.active .hamburger-bar:nth-child(2) {
  opacity: 0;
  transform: translateX(-15px);
}

.hamburger-menu-btn.active .hamburger-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background-color: var(--primary);
}

/* Offcanvas Overlay Backdrop */
.offcanvas-backdrop {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100vh - 70px);
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.offcanvas-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* Offcanvas Drawer */
.offcanvas-drawer {
  position: fixed;
  top: 70px;
  right: -320px;
  /* Hidden offscreen */
  width: 300px;
  height: calc(100vh - 70px);
  background-color: var(--primary);
  z-index: 1001;
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  padding: 25px;
}

.offcanvas-drawer.open {
  right: 0;
}

.offcanvas-header {
  display: none !important;
}

.offcanvas-navigation {
  overflow-y: auto;
  flex-grow: 1;
}

.offcanvas-navigation ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.offcanvas-navigation li {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.offcanvas-drawer.open .offcanvas-navigation li {
  opacity: 1;
  transform: translateY(0);
}

.offcanvas-drawer.open .offcanvas-navigation li:nth-child(1) {
  transition-delay: 0.1s;
}

.offcanvas-drawer.open .offcanvas-navigation li:nth-child(2) {
  transition-delay: 0.15s;
}

.offcanvas-drawer.open .offcanvas-navigation li:nth-child(3) {
  transition-delay: 0.2s;
}

.offcanvas-drawer.open .offcanvas-navigation li:nth-child(4) {
  transition-delay: 0.25s;
}

.offcanvas-drawer.open .offcanvas-navigation li:nth-child(5) {
  transition-delay: 0.3s;
}

.offcanvas-drawer.open .offcanvas-navigation li:nth-child(6) {
  transition-delay: 0.35s;
}

.offcanvas-drawer.open .offcanvas-navigation li:nth-child(7) {
  transition-delay: 0.4s;
}

.offcanvas-drawer.open .offcanvas-navigation li:nth-child(8) {
  transition-delay: 0.45s;
}


.offcanvas-navigation a {
  color: var(--white);
  font-family: var(--font-title);
  font-size: 1.65rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  transition: all 0.2s ease;
  border-bottom: 1px solid transparent;
  padding-bottom: 5px;
}

.offcanvas-navigation a:hover {
  color: var(--background);
  padding-left: 8px;
}

.offcanvas-navigation .btn-primary {
  background-color: var(--white);
  color: var(--primary) !important;
  border: 2px solid var(--white);
  font-size: 1.15rem;
  padding: 12px 25px;
  text-align: center;
  border-radius: 4px;
  margin-top: 15px;
  border-bottom: none;
}

.offcanvas-navigation .btn-primary:hover {
  padding-left: 25px;
  background-color: transparent;
  color: var(--white) !important;
  border-color: var(--white);
}

body.offcanvas-open {
  overflow: hidden !important;
}

/* Media Query overrides for mobile navigation */
@media (max-width: 768px) {
  .main-navigation {
    display: none !important;
    /* Hide regular horizontal menu */
  }

  .hamburger-menu-btn {
    display: flex;
    /* Show hamburger button */
  }

  .site-logo img,
  .custom-logo {
    max-height: 45px !important;
    width: auto !important;
  }

  .site-header {
    height: 70px;
    padding: 0;
    z-index: 1005;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }

  body {
    padding-top: 70px !important;
  }

  body.admin-bar {
    padding-top: 116px !important;
    /* 70px header + 46px admin bar */
  }

  /* Mobile admin-bar offsets for offcanvas */
  body.admin-bar .offcanvas-drawer,
  body.admin-bar .offcanvas-backdrop {
    top: 116px !important;
    height: calc(100vh - 116px) !important;
  }

  .header-inner {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .header-mobile-cta {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem !important;
    padding: 6px 12px !important;
    height: auto;
    border-radius: 20px;
    letter-spacing: 0.5px;
    font-weight: bold;
    color: var(--white) !important;
    border: 1px solid var(--primary) !important;
    background-color: var(--primary) !important;
  }

  .header-mobile-cta:hover {
    background-color: var(--primary-hover) !important;
    border-color: var(--primary-hover) !important;
  }
}

/* =========================================
   PÁGINAS DE UBICACIÓN Y CONTACTO
   ========================================= */

/* Heroes */
.location-hero,
.contact-hero {
  background-color: var(--secondary);
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1514933651103-005eec06c04b?auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: center;
  padding: 100px 0 80px 0;
  text-align: center;
  color: var(--white);
  border-bottom: 4px solid var(--primary);
}

.location-hero-title,
.contact-hero-title {
  color: var(--white);
  font-size: 4rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.location-hero-subtitle,
.contact-hero-subtitle {
  font-size: 1.1rem;
  color: #E5DCC9;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

/* Location Grid Layout */
.location-section,
.contact-section {
  padding: 80px 0;
  background-color: var(--background);
}

.location-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: start;
}

/* Info Cards */
.info-card,
.contact-info-card,
.form-card {
  background-color: var(--white);
  padding: 40px;
  border-radius: 8px;
  border: 1px solid #E5DCC9;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
  margin-bottom: 25px;
}

.info-card:last-child {
  margin-bottom: 0;
}

.info-card h3 {
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 15px;
  font-family: var(--font-title);
  letter-spacing: 0.5px;
}

.info-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
}

.info-icon {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.phone-link {
  color: var(--primary);
  font-weight: bold;
}

.phone-link:hover {
  color: var(--primary-hover);
}

.location-buttons {
  margin-top: 30px;
}

/* Map Container */
.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 4px solid var(--white);
  background-color: var(--white);
  line-height: 0;
}

.map-container iframe {
  vertical-align: middle;
}

/* Contact Specifics */
.contact-grid {
  grid-template-columns: 1fr 1.3fr;
}

.contact-card-label {
  display: block;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.contact-info-card h2,
.form-card h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  line-height: 1.1;
  color: var(--secondary);
}

.contact-intro {
  color: #555;
  margin-bottom: 35px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-info-item .item-icon {
  font-size: 1.5rem;
  color: var(--primary);
  width: 40px;
  height: 40px;
  background-color: #F8F2E8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-item .item-text h4 {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--secondary);
  margin-bottom: 5px;
}

.contact-info-item .item-text p,
.contact-info-item .item-text a {
  color: #666;
  font-size: 0.95rem;
}

.contact-info-item .item-text a:hover {
  color: var(--primary);
}

.contact-social h4 {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: var(--secondary);
}

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

.social-icons a {
  width: 40px;
  height: 40px;
  background-color: var(--secondary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

/* Premium Form Styling */
.form-card {
  margin-bottom: 0;
}

.premium-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 25px;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: bold;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.premium-contact-form input[type="text"],
.premium-contact-form input[type="email"],
.premium-contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #E5DCC9;
  background-color: #FAF8F5;
  color: var(--text);
  font-family: var(--font-text);
  font-size: 0.95rem;
  border-radius: 4px;
  outline: none;
  transition: all 0.3s ease;
}

.premium-contact-form input[type="text"]:focus,
.premium-contact-form input[type="email"]:focus,
.premium-contact-form textarea:focus {
  border-color: var(--primary);
  background-color: var(--white);
  box-shadow: 0 0 10px rgba(195, 49, 43, 0.08);
}

.btn-submit {
  align-self: flex-start;
  padding: 14px 30px;
  border: none;
}

/* Responsiveness overrides */
@media (max-width: 1024px) {

  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {

  .location-hero-title,
  .contact-hero-title {
    font-size: 3rem;
  }

  .info-card,
  .contact-info-card,
  .form-card {
    padding: 30px 20px;
  }

  .form-group-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .btn-submit {
    width: 100%;
    text-align: center;
  }
}

/* Gallery Carousel Styles */
.slide-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.slide-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.swiper-slide-active .slide-image-wrapper img {
  transform: scale(1.05);
}

.gallery-grid-item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
}

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

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

/* Marquesina */
.marquee-section {
  background-color: var(--secondary);
  color: var(--accent);
  padding: 15px 0;
  display: flex;
  overflow: hidden;
}

.marquee-inner {
  display: flex;
  white-space: nowrap;
  animation: scroll-marquee 30s linear infinite;
  flex-shrink: 0;
}

.marquee-inner span {
  font-family: var(--font-title);
  font-size: 1.8rem;
  padding: 0 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
}

@keyframes scroll-marquee {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}