/* ===== MUNDO JUEGOS AR – MAIN STYLESHEET ===== */
/* Color Palette: Deep Red / Burgundy / Gold / Cream */

:root {
  --primary: #b71c1c;
  --primary-dark: #7f0000;
  --primary-light: #ffcdd2;
  --secondary: #f9a825;
  --secondary-dark: #c17900;
  --accent: #d32f2f;
  --white: #ffffff;
  --cream: #fdfaf5;
  --light-bg: #fdf5e4;
  --light-bg2: #fff3e0;
  --text-dark: #1c0a0a;
  --text-mid: #4e2020;
  --text-light: #9e7272;
  --border: #f0ddd0;
  --shadow: rgba(183, 28, 28, 0.18);
  --gold: #f9a825;
  --gold-light: #fff9c4;
  --radius: 12px;
  --radius-sm: 6px;
  --radius-xl: 28px;
  --transition: all 0.3s ease;
  --font-main: 'Raleway', sans-serif;
  --font-head: 'Playfair Display', serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 88px 0; }
.centered { text-align: center; }
.centered-btn { display: flex; justify-content: center; margin-top: 48px; }

/* ===== TYPOGRAPHY ===== */
.section-label {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--secondary);
  background: var(--light-bg2);
  padding: 6px 18px;
  border-radius: 4px;
  margin-bottom: 16px;
  border-left: 3px solid var(--secondary);
}
.section-label.light { color: var(--gold); background: rgba(255,255,255,0.12); border-left-color: var(--gold); }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.section-title.light { color: var(--white); }
.section-desc { font-size: 16px; color: var(--text-mid); max-width: 600px; line-height: 1.75; }
.section-desc.light { color: rgba(255,255,255,0.82); }
.section-header.centered .section-desc { margin: 0 auto; }
.highlight { color: var(--primary); }
.highlight-gold { color: var(--secondary); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 4px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: none; cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px var(--shadow);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 28px var(--shadow); }
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--secondary);
  color: var(--text-dark);
  padding: 14px 36px;
  border-radius: 4px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: none; cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(249,168,37,0.3);
}
.btn-gold:hover { background: var(--secondary-dark); transform: translateY(-2px); }
.btn-outline {
  display: inline-flex; align-items: center;
  background: transparent;
  color: var(--primary);
  padding: 13px 34px;
  border-radius: 4px;
  border: 2px solid var(--primary);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover { background: var(--primary); color: white; }
.btn-outline-light {
  display: inline-flex; align-items: center;
  background: transparent;
  color: rgba(255,255,255,0.85);
  padding: 13px 32px;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.4);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline-light:hover { border-color: white; color: white; }
.btn-white-solid {
  display: inline-flex; align-items: center;
  background: white;
  color: var(--primary);
  padding: 14px 36px;
  border-radius: 4px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.btn-white-solid:hover { transform: translateY(-2px); }

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}
.header-top-bar {
  background: var(--primary-dark);
  padding: 8px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}
.header-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.header-top-inner a { color: rgba(255,255,255,0.7); transition: var(--transition); }
.header-top-inner a:hover { color: var(--gold); }
.header-main {
  background: rgba(28,10,10,0.0);
  padding: 16px 0;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255,255,255,0);
}
.site-header.scrolled .header-main {
  background: rgba(28,10,10,0.97);
  padding: 12px 0;
  border-bottom-color: rgba(249,168,37,0.2);
}
.site-header.scrolled .header-top-bar { display: none; }
.header-inner {
  display: flex; align-items: center; gap: 28px;
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-emblem {
  width: 44px; height: 44px;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.logo-emblem svg { width: 32px; height: 32px; }
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: white; }
.logo-tagline { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.main-nav { display: flex; align-items: center; gap: 0; margin-left: auto; }
.nav-link {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 10px 16px;
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 6px; left: 16px; right: 16px;
  height: 2px; background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-cta {
  background: var(--secondary);
  color: var(--text-dark);
  padding: 10px 22px;
  border: none;
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--secondary-dark); color: white; }
.burger-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto; }
.burger-btn span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: var(--transition); }

/* ===== HERO ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  background: var(--text-dark);
}
.hero-left {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px 0;
  padding-left: calc((100vw - 1200px) / 2 + 24px);
  padding-right: 60px;
}
.hero-right {
  position: relative;
  height: 100%;
  min-height: 100vh;
}
.hero-right-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}
.hero-right::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--text-dark) 0%, transparent 40%);
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
}
.hero-eyebrow-line { width: 40px; height: 2px; background: var(--gold); }
.hero-eyebrow span { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700;
  color: white;
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-title em { color: var(--gold); font-style: normal; }
.hero-subtitle { font-size: 16px; color: rgba(255,255,255,0.75); max-width: 480px; margin-bottom: 40px; line-height: 1.8; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-metrics { display: flex; gap: 40px; }
.metric-item { }
.metric-item strong { display: block; font-family: var(--font-head); font-size: 36px; font-weight: 700; color: var(--gold); line-height: 1; }
.metric-item span { font-size: 12px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; display: block; }
.metric-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.15); align-self: center; }

/* ===== MARQUEE STRIP ===== */
.marquee-strip {
  background: var(--secondary);
  padding: 14px 0;
  overflow: hidden;
}
.marquee-inner {
  display: flex;
  gap: 0;
  white-space: nowrap;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0 32px;
  border-right: 2px solid rgba(0,0,0,0.15);
}
.marquee-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); }

/* ===== FEATURES ===== */
.features-section { background: var(--cream); padding: 88px 0; }
.features-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 64px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-box {
  background: white;
  border-radius: var(--radius);
  padding: 32px 24px;
  border-top: 4px solid var(--primary);
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  transition: var(--transition);
}
.feature-box:hover { transform: translateY(-6px); box-shadow: 0 12px 40px var(--shadow); }
.feature-box-icon { font-size: 36px; margin-bottom: 16px; }
.feature-box h3 { font-family: var(--font-head); font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--text-dark); }
.feature-box p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* ===== ACTIVITIES ===== */
.activities-section { background: var(--text-dark); padding: 88px 0; }
.activities-intro { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; gap: 40px; }
.activities-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.activity-panel {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.activity-panel img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.6);
}
.activity-panel:hover img { transform: scale(1.07); filter: brightness(0.8); }
.activity-panel-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(28,10,10,0.9) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.panel-number {
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 700;
  color: rgba(249,168,37,0.2);
  line-height: 1;
  margin-bottom: 4px;
}
.panel-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}
.panel-desc { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.5; }
.panel-tag {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: var(--text-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.activity-panel.wide { grid-column: span 2; }
.activity-panel.wide img { height: 400px; }

/* ===== EVENTS/BIRTHDAY ===== */
.events-section { background: var(--cream); padding: 88px 0; }
.events-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: center; }
.events-image-collage { position: relative; }
.events-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  width: 100%;
}
.events-img-main img { width: 100%; height: 460px; object-fit: cover; }
.events-img-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--primary);
  color: white;
  padding: 28px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 32px var(--shadow);
}
.events-img-badge strong { display: block; font-family: var(--font-head); font-size: 40px; font-weight: 700; line-height: 1; }
.events-img-badge span { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; opacity: 0.85; }
.events-list { margin: 24px 0 32px; display: flex; flex-direction: column; gap: 14px; }
.event-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px;
  background: white;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.event-icon { font-size: 24px; flex-shrink: 0; }
.event-text strong { display: block; font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
.event-text p { font-size: 13px; color: var(--text-light); }

/* ===== GALLERY ===== */
.gallery-section { background: var(--text-dark); padding: 88px 0; }
.gallery-strip {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  grid-template-rows: 240px 240px;
  gap: 8px;
  margin-top: 48px;
}
.gstrip-item {
  position: relative; overflow: hidden;
}
.gstrip-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gstrip-item:hover img { transform: scale(1.06); }
.gstrip-item.tall { grid-row: span 2; }
.gstrip-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(183,28,28,0.8) 0%, transparent 70%);
  padding: 20px 16px 14px;
  color: white;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gstrip-item:hover .gstrip-caption { opacity: 1; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--cream); padding: 88px 0; }
.testimonials-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
  margin-top: 48px;
}
.testimonials-list { display: flex; flex-direction: column; gap: 24px; }
.tcard {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  border-top: 3px solid var(--primary);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: var(--transition);
}
.tcard:hover { transform: translateY(-4px); box-shadow: 0 10px 32px var(--shadow); }
.tcard-stars { color: var(--gold); font-size: 18px; margin-bottom: 12px; letter-spacing: 2px; }
.tcard p { font-size: 14px; color: var(--text-mid); line-height: 1.7; font-style: italic; margin-bottom: 16px; }
.tcard-author { display: flex; align-items: center; gap: 10px; }
.tcard-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white; font-weight: 700; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tcard-author strong { display: block; font-size: 14px; font-weight: 700; }
.tcard-author span { font-size: 12px; color: var(--text-light); }
.promo-card {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent) 100%);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  color: white;
  position: relative;
  overflow: hidden;
}
.promo-card::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.promo-card h3 { font-family: var(--font-head); font-size: 32px; font-weight: 700; margin-bottom: 16px; line-height: 1.2; }
.promo-card p { font-size: 15px; color: rgba(255,255,255,0.8); margin-bottom: 32px; line-height: 1.7; }
.promo-price-tag { font-family: var(--font-head); font-size: 56px; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.promo-price-label { font-size: 13px; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 28px; }

/* ===== PRICING ===== */
.pricing-section { background: var(--light-bg); padding: 88px 0; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.pcard {
  background: white;
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
}
.pcard:hover { border-color: var(--primary-light); transform: translateY(-6px); }
.pcard.featured {
  background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 100%);
  border-color: transparent;
  transform: scale(1.04);
}
.pcard.featured:hover { transform: scale(1.04) translateY(-6px); }
.pcard-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--secondary);
  color: var(--text-dark);
  font-size: 11px; font-weight: 800;
  padding: 5px 18px; border-radius: 3px;
  text-transform: uppercase; letter-spacing: 1px;
  white-space: nowrap;
}
.pcard-icon { font-size: 42px; margin-bottom: 14px; }
.pcard h3 { font-family: var(--font-head); font-size: 21px; font-weight: 700; margin-bottom: 4px; color: var(--text-dark); }
.pcard.featured h3 { color: white; }
.pcard-sub { font-size: 13px; color: var(--text-light); margin-bottom: 18px; }
.pcard.featured .pcard-sub { color: rgba(255,255,255,0.6); }
.pcard-price { font-family: var(--font-head); font-size: 50px; font-weight: 700; color: var(--primary); margin-bottom: 4px; line-height: 1; }
.pcard.featured .pcard-price { color: var(--gold); }
.pcard-period { font-size: 13px; color: var(--text-light); margin-bottom: 24px; }
.pcard.featured .pcard-period { color: rgba(255,255,255,0.6); }
.pcard-features { text-align: left; margin-bottom: 28px; }
.pcard-features li { font-size: 13px; color: var(--text-mid); padding: 8px 0; border-bottom: 1px solid var(--border); font-weight: 600; }
.pcard-features li::before { content: '★ '; color: var(--secondary); }
.pcard.featured .pcard-features li { border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.8); }

/* ===== CONTACT / INFO ===== */
.info-section { background: var(--text-dark); padding: 88px 0; }
.info-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.info-details { color: rgba(255,255,255,0.75); }
.info-row {
  display: flex; gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.info-row:last-child { border-bottom: none; }
.info-row-icon {
  width: 44px; height: 44px;
  background: rgba(249,168,37,0.15);
  border: 1px solid rgba(249,168,37,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.info-row-text strong { display: block; color: var(--gold); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.info-row-text span { font-size: 15px; line-height: 1.6; }
.contact-form-dark { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 40px; }
.contact-form-dark h3 { font-family: var(--font-head); font-size: 26px; color: white; margin-bottom: 8px; }
.contact-form-dark p { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 14px;
  color: white;
  outline: none;
  transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); background: rgba(255,255,255,0.1); }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group select option { background: var(--text-dark); color: white; }
.form-group textarea { height: 120px; resize: vertical; }
.form-success { display: none; text-align: center; padding: 24px; }
.form-success .success-icon { font-size: 48px; margin-bottom: 12px; }
.form-success h3 { font-family: var(--font-head); font-size: 22px; color: white; margin-bottom: 8px; }
.form-success p { font-size: 14px; color: rgba(255,255,255,0.65); }

/* ===== CTA BANNER ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 60%, #37001b 100%);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(249,168,37,0.02) 40px, rgba(249,168,37,0.02) 80px);
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 { font-family: var(--font-head); font-size: clamp(28px, 4vw, 48px); font-weight: 700; color: white; margin-bottom: 16px; }
.cta-content p { font-size: 17px; color: rgba(255,255,255,0.8); margin-bottom: 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.site-footer { background: #0d0303; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo-name { color: white; }
.footer-brand .logo-tagline { color: var(--gold); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; margin: 16px 0 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: white; }
.footer-nav h4 { font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-nav ul li { margin-bottom: 10px; }
.footer-nav ul li a { font-size: 14px; color: rgba(255,255,255,0.45); transition: var(--transition); }
.footer-nav ul li a:hover { color: var(--gold); }
.footer-contact h4 { font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-contact p { font-size: 14px; color: rgba(255,255,255,0.45); margin-bottom: 10px; line-height: 1.6; }
.footer-contact a { color: var(--primary-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.25);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed; bottom: 24px; left: 24px; right: 24px;
  max-width: 700px;
  background: var(--text-dark);
  border-radius: var(--radius);
  box-shadow: 0 8px 48px rgba(0,0,0,0.4);
  padding: 20px 24px;
  z-index: 9999;
  display: flex; align-items: center; gap: 20px;
  border-left: 4px solid var(--secondary);
  transform: translateY(200px); opacity: 0;
  transition: all 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); opacity: 1; }
.cookie-banner.hidden { display: none; }
.cookie-content { flex: 1; }
.cookie-content p { font-size: 13px; color: rgba(255,255,255,0.7); }
.cookie-content a { color: var(--gold); font-weight: 600; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-accept { background: var(--secondary); color: var(--text-dark); border: none; padding: 9px 20px; font-weight: 700; font-size: 13px; cursor: pointer; transition: var(--transition); }
.btn-cookie-accept:hover { background: var(--secondary-dark); color: white; }
.btn-cookie-decline { background: transparent; color: rgba(255,255,255,0.4); border: 1px solid rgba(255,255,255,0.15); padding: 9px 20px; font-size: 13px; cursor: pointer; transition: var(--transition); }
.btn-cookie-decline:hover { border-color: rgba(255,255,255,0.4); color: rgba(255,255,255,0.7); }

/* ===== INNER PAGES ===== */
.page-hero { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); padding: 150px 0 60px; text-align: center; color: white; }
.page-hero h1 { font-family: var(--font-head); font-size: clamp(32px, 5vw, 58px); font-weight: 700; margin-bottom: 12px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.8); max-width: 540px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; gap: 8px; justify-content: center; margin-bottom: 20px; font-size: 13px; color: rgba(255,255,255,0.6); }
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ===== LEGAL ===== */
.legal-content { max-width: 800px; margin: 0 auto; padding: 64px 24px; }
.legal-content h2 { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--primary); margin: 36px 0 12px; }
.legal-content p, .legal-content li { font-size: 15px; color: var(--text-mid); line-height: 1.8; margin-bottom: 12px; }
.legal-content ul { padding-left: 20px; list-style: disc; }
.legal-content strong { color: var(--text-dark); }

/* ===== GALLERY PAGE ===== */
.gallery-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }
.gallery-full-item { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; aspect-ratio: 4/3; }
.gallery-full-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-full-item:hover img { transform: scale(1.06); }
.gallery-full-item .gallery-caption { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(127,0,0,0.7) 0%, transparent 50%); display: flex; align-items: flex-end; padding: 18px; opacity: 0; transition: opacity 0.3s; }
.gallery-full-item:hover .gallery-caption { opacity: 1; }
.gallery-caption span { color: white; font-weight: 700; font-size: 15px; letter-spacing: 0.5px; text-transform: uppercase; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-section { grid-template-columns: 1fr; }
  .hero-left { padding: 130px 24px 60px; }
  .hero-right { position: absolute; inset: 0; z-index: 0; min-height: unset; }
  .hero-left { position: relative; z-index: 1; background: linear-gradient(90deg, rgba(28,10,10,0.9) 0%, rgba(28,10,10,0.5) 100%); }
  .features-intro { grid-template-columns: 1fr; gap: 40px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .activities-list { grid-template-columns: 1fr; }
  .activity-panel.wide { grid-column: span 1; }
  .events-grid { grid-template-columns: 1fr; }
  .events-img-badge { bottom: 12px; right: 12px; }
  .testimonials-layout { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .pcard.featured { transform: none; }
  .info-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .section-padding { padding: 56px 0; }
  .header-top-bar { display: none; }
  .main-nav, .nav-cta { display: none; }
  .burger-btn { display: flex; }
  .main-nav.open {
    display: flex; flex-direction: column;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--text-dark); padding: 80px 28px 28px; z-index: 999; gap: 0;
  }
  .main-nav.open .nav-link { color: rgba(255,255,255,0.8); font-size: 18px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .main-nav.open .nav-link::after { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .activities-list { grid-template-columns: 1fr; }
  .activity-panel.wide { grid-column: span 1; }
  .gallery-strip { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gstrip-item.tall { grid-row: span 1; }
  .gallery-strip .gstrip-item img, .gallery-strip .gstrip-item.tall img { height: 200px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-metrics { gap: 24px; flex-wrap: wrap; }
  .metric-divider { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .gallery-full-grid { grid-template-columns: repeat(2, 1fr); }
  .marquee-item { padding: 0 16px; font-size: 11px; }
}

@media (max-width: 480px) {
  .gallery-strip { grid-template-columns: 1fr; }
  .gallery-full-grid { grid-template-columns: 1fr; }
  .cookie-banner { flex-direction: column; left: 12px; right: 12px; bottom: 12px; }
  .cookie-actions { width: 100%; }
  .cookie-actions button { flex: 1; }
  .hero-actions { flex-direction: column; }
  .container { padding: 0 16px; }
}
