/* ══════════════════════════════════════════════
   NAWARA BAKERY – styles.css
   Design: Vinotinto + Golden Yellow + Cobalt Blue
   Vibe: Youthful, energetic, Venezuelan pride
══════════════════════════════════════════════ */

/* ──── CSS CUSTOM PROPERTIES ──── */
:root {
  /* ── Logo-extracted palette ── */
  --logo-yellow:  #F5D020;
  --logo-red:     #D91B2A;
  --logo-blue:    #1A1F8B;

  /* Primary brand colors */
  --vinotinto:    #C41425;   /* Rich red from logo outline */
  --vinotinto-dk: #8B0D1A;   /* Deeper red for dark surfaces */
  --vinotinto-lt: #E02035;   /* Lighter vivid red */
  --yellow:       #F5D020;   /* Logo's golden yellow */
  --yellow-lt:    #FFE55A;   /* Lighter yellow glow */
  --yellow-dk:    #C9A800;   /* Darker amber */
  --blue:         #1A1F8B;   /* Logo's navy cobalt blue */
  --blue-lt:      #2D35CC;   /* Lighter cobalt */
  --white:        #FFFFFF;
  --off-white:    #FEF9F0;   /* Warm white with bread tone */
  --cream:        #FAF0D7;
  --gray-lt:      #F5F5F0;
  --gray:         #888;
  --dark:         #120505;   /* Deep red-black */
  --bread-gold:   #C8860A;
  --bread-warm:   #E09B2A;

  --font-display: 'Playfair Display', serif;
  --font-body:    'Montserrat', sans-serif;
  --font-script:  'Dancing Script', cursive;

  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    40px;
  --radius-full:  999px;

  --shadow-glow:  0 0 40px rgba(245, 208, 32, 0.35);
  --shadow-card:  0 20px 60px rgba(196, 20, 37, 0.15);
  --shadow-deep:  0 30px 80px rgba(0, 0, 0, 0.4);

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ──── RESET & BASE ──── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

img { max-width: 100%; display: block; }

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

/* ──── SCROLLBAR ──── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--vinotinto-dk); }
::-webkit-scrollbar-thumb {
  background: var(--yellow);
  border-radius: var(--radius-full);
}

/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.9rem 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(139, 13, 26, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
  padding: 0.5rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
}

/* Real logo image in navbar */
.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
  /* Logo has white bg — invert not needed; add drop-shadow for visibility */
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
  transition: transform var(--bounce), filter var(--transition);
}

.navbar.scrolled .nav-logo-img {
  height: 44px;
}

.nav-logo-img:hover {
  transform: scale(1.06);
  filter: drop-shadow(0 4px 16px rgba(245,208,32,0.5));
}

/* Remove old CSS text logo classes (kept for safety, set to hidden) */
.logo-n, .logo-text, .logo-bakery { display: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-link:hover { color: var(--yellow); }
.nav-link:hover::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 3px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ══════════════════════════════
   HERO SECTION
══════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(217,27,42,0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(245,208,32,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 50%, rgba(26,31,139,0.15) 0%, transparent 65%),
    linear-gradient(160deg, #1C0108 0%, #500010 30%, #8B0D1A 60%, #2A000A 100%);
}

/* Animated bread-wave texture */
.hero-texture {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(217,27,42,0.1) 0%, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(245,208,32,0.08) 0%, transparent 45%),
    radial-gradient(circle at 70% 30%, rgba(26,31,139,0.08) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(139,13,26,0.3) 0%, transparent 70%);
  animation: texturePulse 8s ease-in-out infinite;
}

@keyframes texturePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Floating ingredients */
.floaters {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.floater {
  position: absolute;
  font-size: 2rem;
  opacity: 0.18;
  animation: floatUp 12s ease-in-out infinite;
  filter: blur(0.5px);
  user-select: none;
}

.f1 { left: 5%;  top: 70%; animation-delay: 0s;    animation-duration: 14s; font-size: 1.5rem; }
.f2 { left: 12%; top: 40%; animation-delay: 2s;    animation-duration: 11s; font-size: 2.5rem; }
.f3 { left: 23%; top: 80%; animation-delay: 4s;    animation-duration: 13s; font-size: 1.2rem; opacity: 0.3; }
.f4 { left: 75%; top: 65%; animation-delay: 1s;    animation-duration: 10s; font-size: 2rem; }
.f5 { left: 85%; top: 20%; animation-delay: 3s;    animation-duration: 12s; font-size: 1.8rem; }
.f6 { left: 60%; top: 85%; animation-delay: 5s;    animation-duration: 9s;  font-size: 2.2rem; }
.f7 { left: 45%; top: 15%; animation-delay: 1.5s;  animation-duration: 11s; font-size: 1rem; opacity: 0.5; }
.f8 { left: 93%; top: 50%; animation-delay: 3.5s;  animation-duration: 15s; font-size: 1.6rem; }

@keyframes floatUp {
  0%   { transform: translateY(30px) rotate(-10deg) scale(0.9); opacity: 0; }
  20%  { opacity: 0.18; }
  80%  { opacity: 0.18; }
  100% { transform: translateY(-100px) rotate(10deg) scale(1.1); opacity: 0; }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 8rem 2rem 9rem;
  max-width: 900px;
  margin: 0 auto;
}

/* ─────────────────────────────────────────
   HERO LOGO – Real image with entrance anim
───────────────────────────────────────── */
.hero-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

/* Animation wrapper */
.hero-logo-anim {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  /* Entrance animation on load */
  animation: logoDropIn 1.1s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes logoDropIn {
  0%   { opacity: 0; transform: scale(0.3) translateY(-60px) rotate(-15deg); filter: blur(10px); }
  60%  { opacity: 1; filter: blur(0); }
  80%  { transform: scale(1.08) translateY(4px) rotate(2deg); }
  100% { opacity: 1; transform: scale(1) translateY(0) rotate(0deg); filter: blur(0); }
}

/* The actual logo image */
.hero-logo-img {
  position: relative;
  z-index: 3;
  width: clamp(260px, 38vw, 420px);
  height: auto;
  display: block;
  object-fit: contain;
  /* Drop-shadow to make it pop on dark backgrounds */
  filter:
    drop-shadow(0 4px 24px rgba(217, 27, 42, 0.5))
    drop-shadow(0 0 60px rgba(245, 208, 32, 0.25));
  transition: transform var(--bounce), filter var(--transition);
  animation: logoPop 4s ease-in-out 1.2s infinite;
}

/* Subtle hover bob & glow */
.hero-logo-anim:hover .hero-logo-img {
  transform: scale(1.05) translateY(-6px);
  filter:
    drop-shadow(0 8px 32px rgba(217, 27, 42, 0.7))
    drop-shadow(0 0 80px rgba(245, 208, 32, 0.4));
}

/* Floating breath animation (after entrance) */
@keyframes logoPop {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-8px) scale(1.015); }
}

/* ── Glow ring behind the logo ── */
.hero-logo-glow-ring {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  z-index: 1;
  background: radial-gradient(
    ellipse at center,
    rgba(245, 208, 32, 0.18) 0%,
    rgba(217, 27, 42, 0.12) 40%,
    transparent 70%
  );
  animation: glowRingPulse 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glowRingPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.12); }
}

/* ── Sparkle burst particles ── */
.hero-logo-sparkles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.sp {
  position: absolute;
  border-radius: 50%;
  animation: sparkleOrbit 3s ease-in-out infinite;
  transform-origin: 50% 50%;
}

/* Particles: mix of yellow, red, and blue */
.sp1 { width: 8px;  height: 8px;  background: var(--logo-yellow); top: 5%;  left: 48%; animation-delay: 0s;    animation-duration: 2.8s; }
.sp2 { width: 6px;  height: 6px;  background: var(--logo-red);    top: 50%; right: 2%; animation-delay: 0.4s;  animation-duration: 3.2s; }
.sp3 { width: 10px; height: 10px; background: var(--logo-yellow); bottom: 5%; left: 45%; animation-delay: 0.8s; animation-duration: 2.5s; }
.sp4 { width: 5px;  height: 5px;  background: var(--logo-blue);   top: 45%; left: 2%;  animation-delay: 1.2s;  animation-duration: 3s;   }
.sp5 { width: 7px;  height: 7px;  background: var(--logo-red);    top: 20%; right: 8%; animation-delay: 0.6s;  animation-duration: 2.7s; }
.sp6 { width: 6px;  height: 6px;  background: var(--logo-yellow); bottom: 20%; left: 8%; animation-delay: 1s;  animation-duration: 3.4s; }

@keyframes sparkleOrbit {
  0%   { transform: translate(0, 0) scale(0); opacity: 0; }
  20%  { opacity: 1; transform: translate(0, 0) scale(1); }
  80%  { opacity: 0.7; }
  100% { transform: translate(var(--tx, 20px), var(--ty, -20px)) scale(0); opacity: 0; }
}

/* Give each sparkle a unique travel direction */
.sp1 { --tx: 0px;   --ty: -30px; }
.sp2 { --tx: 25px;  --ty: 0px; }
.sp3 { --tx: 0px;   --ty: 30px; }
.sp4 { --tx: -25px; --ty: 0px; }
.sp5 { --tx: 18px;  --ty: -18px; }
.sp6 { --tx: -18px; --ty: 18px; }

/* Hero headlines */
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.2rem;
  animation: fadeSlideUp 0.9s 0.3s both;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.hero-headline em {
  font-style: italic;
  color: var(--yellow);
  display: block;
  text-shadow: 0 0 30px rgba(245,197,24,0.5);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  animation: fadeSlideUp 0.9s 0.5s both;
}

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

/* CTA buttons */
.hero-ctas {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.9s 0.7s both;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: transform var(--bounce), box-shadow var(--transition), background var(--transition);
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity var(--transition);
}
.cta-btn:hover::before { opacity: 1; }
.cta-btn:hover { transform: translateY(-4px) scale(1.03); }
.cta-btn:active { transform: translateY(0) scale(0.98); }

.cta-primary {
  background: linear-gradient(135deg, var(--yellow-dk) 0%, var(--yellow) 50%, var(--yellow-lt) 100%);
  color: var(--vinotinto-dk);
  box-shadow: 0 8px 30px rgba(245,197,24,0.4), 0 0 0 0 rgba(245,197,24,0.8);
  animation: pulseYellow 2.5s ease-in-out infinite;
}

@keyframes pulseYellow {
  0%, 100% { box-shadow: 0 8px 30px rgba(245,197,24,0.4), 0 0 0 0 rgba(245,197,24,0.5); }
  50%       { box-shadow: 0 8px 30px rgba(245,197,24,0.6), 0 0 0 10px rgba(245,197,24,0); }
}

.cta-secondary {
  background: transparent;
  color: var(--white);
  border: 2.5px solid rgba(255,255,255,0.6);
}

.cta-secondary:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  box-shadow: 0 8px 30px rgba(245,197,24,0.2);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeSlideUp 1s 1.2s both;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--yellow);
  border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  70%       { transform: translateY(12px); opacity: 0.3; }
}

/* ══════════════════════════════
   SECTION SHARED STYLES
══════════════════════════════ */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--yellow-dk), var(--yellow));
  color: var(--vinotinto-dk);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.badge-light {
  background: rgba(255,255,255,0.15);
  color: var(--yellow);
  border: 1px solid rgba(245,197,24,0.4);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  font-weight: 500;
  margin-bottom: 3rem;
}

/* Intersection Observer reveal */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════
   MENU SECTION
══════════════════════════════ */
.menu-section {
  padding: 6rem 0;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.menu-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(107,15,26,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.menu-section .section-container {
  text-align: center;
}

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

/* Menu Cards */
.menu-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 6px 30px rgba(107,15,26,0.08);
  transition: transform var(--bounce), box-shadow var(--transition);
  cursor: default;
  text-align: left;
}

.menu-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-card);
}

.menu-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--vinotinto), var(--yellow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.menu-card:hover::before { transform: scaleX(1); }

.card-icon-wrap {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.salados-bg {
  background: linear-gradient(135deg, #2E1A0E 0%, #6B3A1A 50%, #C8860A 100%);
}
.panaderia-bg {
  background: linear-gradient(135deg, #3D1A00 0%, #8B4500 50%, #D4700A 100%);
}
.dulces-bg {
  background: linear-gradient(135deg, #1A0A1A 0%, #6B0F1A 50%, #A01A3A 100%);
}
.especial-bg {
  background: linear-gradient(135deg, #0A1A3A 0%, #1A3A8F 50%, #2B55C9 100%);
}

.card-icon {
  font-size: 5rem;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.4));
  animation: iconBounce 3s ease-in-out infinite;
  transition: transform var(--bounce);
}

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

@keyframes iconBounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-8px) rotate(3deg); }
}

/* Stagger icon animations */
.menu-card:nth-child(1) .card-icon { animation-delay: 0s; }
.menu-card:nth-child(2) .card-icon { animation-delay: 0.5s; }
.menu-card:nth-child(3) .card-icon { animation-delay: 1s; }
.menu-card:nth-child(4) .card-icon { animation-delay: 1.5s; }

.card-body {
  padding: 1.6rem;
  position: relative;
  z-index: 2;
}

.card-category {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--vinotinto);
  margin-bottom: 0.4rem;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.card-items {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.card-items li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #444;
  font-weight: 500;
  transition: color var(--transition), transform var(--transition);
}

.card-items li:hover {
  color: var(--vinotinto);
  transform: translateX(4px);
}

.card-items li i {
  color: var(--yellow-dk);
  font-size: 0.6rem;
  flex-shrink: 0;
}

.card-badge {
  display: inline-block;
  margin-top: 1.2rem;
  background: linear-gradient(135deg, var(--vinotinto), var(--vinotinto-lt));
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
}

/* Glow effects */
.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 180px;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.menu-card:hover .card-glow { opacity: 1; }
.salados-glow  { background: radial-gradient(ellipse at center top, rgba(200,134,10,0.15) 0%, transparent 70%); }
.panaderia-glow { background: radial-gradient(ellipse at center top, rgba(212,112,10,0.15) 0%, transparent 70%); }
.dulces-glow   { background: radial-gradient(ellipse at center top, rgba(160,26,58,0.15) 0%, transparent 70%); }
.especial-glow { background: radial-gradient(ellipse at center top, rgba(43,85,201,0.15) 0%, transparent 70%); }

/* ══════════════════════════════
   TRADICIÓN SECTION
══════════════════════════════ */
.tradicion-section {
  position: relative;
  overflow: hidden;
  padding: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(245,197,24,0.08) 0%, transparent 55%),
    linear-gradient(160deg, var(--vinotinto-dk) 0%, var(--vinotinto) 45%, #8B1A28 100%);
  color: var(--white);
}

/* Background decorative circles */
.trad-deco { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.trad-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(245,197,24,0.15);
  animation: rotateSlow 20s linear infinite;
}

.tc1 { width: 500px; height: 500px; top: -150px; right: -150px; }
.tc2 { width: 300px; height: 300px; bottom: 50px; left: -80px; animation-duration: 15s; animation-direction: reverse; }
.tc3 { width: 700px; height: 700px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation-duration: 30s; border-color: rgba(255,255,255,0.04); }

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Marquee */
.marquee-wrap {
  overflow: hidden;
  background: rgba(245,197,24,0.12);
  border-top: 1px solid rgba(245,197,24,0.2);
  border-bottom: 1px solid rgba(245,197,24,0.2);
  padding: 0.8rem 0;
}

.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: marqueeScroll 25s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--yellow);
  padding-right: 60px;
  letter-spacing: 1px;
  font-style: italic;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-reverse .marquee-track {
  animation-direction: reverse;
  animation-duration: 20s;
}

.marquee-reverse .marquee-track span {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 2px;
}

.trad-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.trad-left .section-title {
  color: var(--white);
  margin-bottom: 1.2rem;
}

.trad-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.5rem;
}

.trad-text strong { color: var(--yellow); }

/* Stats */
.trad-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.trad-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

/* City Illustration */
.trad-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.city-illustration {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 250px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1.5rem;
}

/* Obelisco (Barquisimeto landmark) */
.obelisco {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
  animation: buildUp 1s ease-out both;
}

.obelisco-base {
  width: 50px;
  height: 16px;
  background: linear-gradient(135deg, var(--yellow-dk), var(--yellow));
  border-radius: 4px 4px 0 0;
}
.obelisco-body {
  width: 24px;
  height: 120px;
  background: linear-gradient(180deg, var(--yellow-lt) 0%, var(--yellow-dk) 100%);
  clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
}
.obelisco-top {
  width: 14px;
  height: 30px;
  background: linear-gradient(180deg, var(--white) 0%, var(--yellow) 100%);
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  margin-top: -2px;
}
.obelisco-star {
  position: absolute;
  top: -22px;
  font-size: 1rem;
  animation: starTwinkle 2s ease-in-out infinite;
}

@keyframes starTwinkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

/* Cathedral */
.cathedral {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  animation: buildUp 1s 0.3s ease-out both;
}

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

.cath-dome {
  width: 70px;
  height: 40px;
  background: linear-gradient(160deg, #fff 0%, rgba(255,255,255,0.6) 100%);
  border-radius: 50% 50% 0 0;
  opacity: 0.85;
}
.cath-body {
  width: 100px;
  height: 80px;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(245,197,24,0.4);
  border-bottom: none;
}
.cath-door {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 28px;
  background: rgba(245,197,24,0.5);
  border-radius: 50% 50% 0 0;
}
.cath-window {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 32px;
  border: 2px solid rgba(245,197,24,0.6);
  border-radius: 50% 50% 0 0;
}

.city-ground {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20px;
  background: linear-gradient(90deg, rgba(245,197,24,0.1), rgba(245,197,24,0.3), rgba(245,197,24,0.1));
  border-top: 2px solid rgba(245,197,24,0.3);
}

.city-palms {
  position: absolute;
  bottom: 12px;
  left: 20px;
  font-size: 1.4rem;
  letter-spacing: -5px;
  opacity: 0.7;
  animation: palmSway 3s ease-in-out infinite;
}

.city-sun {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 2rem;
  animation: sunRotate 8s linear infinite;
}

@keyframes palmSway {
  0%, 100% { transform: rotate(-3deg); }
  50%       { transform: rotate(3deg); }
}

@keyframes sunRotate {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}

/* Quote */
.trad-quote {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(245,197,24,0.3);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.8rem;
  max-width: 380px;
  position: relative;
}

.trad-quote::before {
  content: '"';
  position: absolute;
  top: -14px;
  left: 20px;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--yellow);
  line-height: 1;
  opacity: 0.6;
}

.trad-quote blockquote {
  font-family: var(--font-script);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
}

/* ══════════════════════════════
   UBICACIÓN SECTION
══════════════════════════════ */
.ubicacion-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--off-white) 0%, var(--cream) 100%);
}

.map-overlay-bg {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 49px, rgba(107,15,26,0.04) 50px),
    repeating-linear-gradient(90deg, transparent, transparent 49px, rgba(107,15,26,0.04) 50px);
  pointer-events: none;
}

.ubicacion-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.ubicacion-info .section-title { margin-bottom: 0.5rem; }

.ubicacion-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--vinotinto);
  margin-bottom: 2rem;
}

.address-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.4rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--vinotinto);
  box-shadow: 0 4px 20px rgba(107,15,26,0.1);
  margin-bottom: 1rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.address-card:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 30px rgba(107,15,26,0.15);
}

.address-icon {
  font-size: 1.5rem;
  color: var(--vinotinto);
  margin-top: 2px;
  flex-shrink: 0;
}

.address-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #333;
}

.hours-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.2rem 1.4rem;
  background: var(--vinotinto);
  border-radius: var(--radius-md);
  margin-bottom: 1.8rem;
}

.hours-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
}

.hours-row i { color: var(--yellow); font-size: 0.9rem; }

/* Review button */
.review-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
  padding: 1.1rem 1.6rem;
  background: linear-gradient(135deg, var(--yellow-dk) 0%, var(--yellow) 60%, var(--yellow-lt) 100%);
  color: var(--vinotinto-dk);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  transition: transform var(--bounce), box-shadow var(--transition);
  cursor: pointer;
  animation: reviewPulse 3s ease-in-out infinite;
  box-shadow: 0 8px 30px rgba(245,197,24,0.35);
}

.review-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(245,197,24,0.5);
}

.review-star {
  font-size: 1.2rem;
  animation: starSpin 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes starSpin {
  0%, 80%, 100% { transform: rotate(0deg) scale(1); }
  40%            { transform: rotate(360deg) scale(1.3); }
}

@keyframes reviewPulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(245,197,24,0.35), 0 0 0 0 rgba(245,197,24,0.4); }
  50%       { box-shadow: 0 8px 30px rgba(245,197,24,0.5), 0 0 0 12px rgba(245,197,24,0); }
}

.review-btn i:last-child {
  margin-left: auto;
  font-size: 0.85rem;
}

.maps-cta {
  width: 100%;
  justify-content: center;
  margin-top: 0;
}

/* Map frame */
.map-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 3px solid rgba(107,15,26,0.15);
}

.map-pin-overlay {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  pointer-events: none;
}

.map-marker-circle {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--vinotinto), var(--vinotinto-lt));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(107,15,26,0.4);
  animation: markerBounce 2s ease-in-out infinite;
}

@keyframes markerBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.site-footer {
  position: relative;
  background:
    linear-gradient(160deg, #1A0408 0%, var(--vinotinto-dk) 50%, #0D0205 100%);
  color: var(--white);
  overflow: hidden;
  padding-top: 4rem;
}

.footer-bg-deco {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse at 50% 0%, rgba(245,197,24,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.footer-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.footer-logo-wrap {
  text-align: center;
}

.footer-logo-emblem {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
}

/* Real logo image in footer */
.footer-logo-img {
  height: 120px;
  width: auto;
  max-width: 340px;
  object-fit: contain;
  display: block;
  /* On dark bg, add drop-shadow for visibility */
  filter: drop-shadow(0 2px 12px rgba(217,27,42,0.4)) drop-shadow(0 0 30px rgba(245,208,32,0.15));
  transition: transform var(--bounce), filter var(--transition);
  animation: logoPop 5s ease-in-out 0.5s infinite;
}

.footer-logo-img:hover {
  transform: scale(1.08) translateY(-3px);
  filter: drop-shadow(0 4px 20px rgba(217,27,42,0.6)) drop-shadow(0 0 40px rgba(245,208,32,0.3));
}

.footer-tagline {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  text-align: center;
}

/* Social buttons */
.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform var(--bounce), box-shadow var(--transition), filter var(--transition);
  cursor: pointer;
}

.social-btn i { font-size: 1.2rem; }

.social-btn:hover {
  transform: translateY(-6px) scale(1.08);
  filter: brightness(1.15);
}

.instagram {
  background: linear-gradient(135deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(193,53,132,0.4);
}

.tiktok {
  background: linear-gradient(135deg, #010101, #161823);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.tiktok i { color: #69C9D0; text-shadow: 2px 0 0 #EE1D52; }

.facebook {
  background: linear-gradient(135deg, #1877F2, #0D6EFD);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(24,119,242,0.4);
}

.whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}

/* Footer links */
.footer-links {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--yellow);
  transition: width var(--transition);
}

.footer-links a:hover { color: var(--yellow); }
.footer-links a:hover::after { width: 100%; }

/* Footer bottom */
.footer-bottom {
  width: 100%;
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.3px;
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 900px) {
  .trad-container,
  .ubicacion-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .trad-right {
    order: -1;
  }

  .city-illustration { max-width: 300px; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: rgba(139,13,26,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    transition: right var(--transition);
    z-index: 999;
    padding: 2rem;
  }

  .nav-links.open { right: 0; }
  .nav-link { font-size: 1.1rem; }
  .hamburger { display: flex; z-index: 1001; }

  .hero-content { padding: 7rem 1.5rem 4rem; }

  /* Scale down logo on mobile */
  .hero-logo-img { width: clamp(200px, 65vw, 320px); }

  .hero-ctas { flex-direction: column; align-items: center; }
  .cta-btn { width: 260px; justify-content: center; }

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

  .trad-stats { gap: 1.2rem; }
  .stat-number { font-size: 2rem; }

  .social-links { gap: 0.8rem; }
  .social-btn { padding: 0.7rem 1.2rem; font-size: 0.85rem; }
  .social-btn span { display: none; }
  .social-btn { padding: 1rem; }
  .social-btn i { font-size: 1.4rem; }

  .footer-links { gap: 1.5rem; }

  .br-desktop { display: none; }
}

@media (max-width: 480px) {
  .section-title { font-size: 1.8rem; }
  .hero-headline { font-size: 2.2rem; }
  .cta-btn { width: 90vw; }
  .trad-stats { flex-direction: column; gap: 1rem; }
}
