/* === RESET & BASE === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --yellow: #F5C518;
  --yellow-dark: #D4A800;
  --black: #1a1a1a;
  --black-light: #2a2a2a;
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #cccccc;
  --gray-400: #999;
  --gray-600: #666;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Montserrat', 'Inter', sans-serif;
  --max-width: 1100px;
  --nav-height: 70px;
}
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }
body { font-family: var(--font-sans); color: var(--black); background: var(--white); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

/* === NAVIGATION === */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-height); z-index: 1000;
  background: rgba(26,26,26,0.95); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(245,197,24,0.15);
}
.nav-container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; height: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-img { height: 40px; width: auto; }
.nav-logo-text { font-family: var(--font-display); font-weight: 800; color: var(--yellow); font-size: 1.2rem; letter-spacing: 1px; }
.nav-links { display: flex; gap: 5px; }
.nav-links a { padding: 8px 16px; border-radius: 6px; color: var(--gray-200); font-size: 0.9rem; font-weight: 500; transition: all 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--yellow); background: rgba(245,197,24,0.1); }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 5px; }
.burger span { width: 25px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }

/* === HERO === */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 50%, #0d0d0d 100%); }
.hero::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at 50% 50%, rgba(245,197,24,0.08) 0%, transparent 50%); animation: heroGlow 8s ease-in-out infinite alternate; }
@keyframes heroGlow { 0% { transform: translate(0, 0); } 100% { transform: translate(5%, 5%); } }
.hero-overlay { position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.hero-content { position: relative; z-index: 1; text-align: center; padding: 20px; }
.hero-logo { width: 160px; margin: 0 auto 30px; filter: drop-shadow(0 4px 20px rgba(245,197,24,0.3)); }
.hero h1 { font-family: var(--font-display); font-weight: 900; font-size: 3.5rem; color: var(--white); margin-bottom: 15px; letter-spacing: -1px; }
.hero-tagline { font-size: 1.2rem; color: var(--gray-400); margin-bottom: 40px; }
.hero-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.btn { padding: 14px 32px; border-radius: 8px; font-weight: 600; font-size: 0.95rem; transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px; }
.btn-primary { background: var(--yellow); color: var(--black); }
.btn-primary:hover { background: var(--yellow-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(245,197,24,0.3); }
.btn-secondary { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.2); }
.btn-secondary:hover { border-color: var(--yellow); color: var(--yellow); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--black); border: 2px solid var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); }
.hero-scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 1; text-align: center; }
.hero-scroll span { display: block; color: var(--gray-600); font-size: 0.8rem; margin-bottom: 8px; letter-spacing: 2px; text-transform: uppercase; }
.scroll-arrow { width: 20px; height: 20px; border-right: 2px solid var(--gray-400); border-bottom: 2px solid var(--gray-400); transform: rotate(45deg); margin: 0 auto; animation: scrollBounce 2s infinite; }
@keyframes scrollBounce { 0%, 100% { transform: rotate(45deg) translate(0,0); opacity: 0.5; } 50% { transform: rotate(45deg) translate(5px,5px); opacity: 1; } }

/* === FLASH INFO === */
.flash-info { padding: 80px 0; background: var(--yellow); }
.flash-card { text-align: center; }
.flash-icon { font-size: 2.5rem; margin-bottom: 10px; }
.flash-card h2 { font-family: var(--font-display); font-size: 1.8rem; color: var(--black); margin-bottom: 30px; font-weight: 800; }
.flash-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.flash-item { background: rgba(0,0,0,0.08); padding: 25px; border-radius: 12px; text-align: left; }
.flash-label { display: inline-block; background: var(--black); color: var(--yellow); padding: 4px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
.flash-item p { color: var(--black); font-size: 0.95rem; line-height: 1.5; }

/* === SECTIONS === */
.section { padding: 100px 0; }
.section-dark { background: var(--black); }
.section-title { font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; text-align: center; margin-bottom: 10px; color: var(--black); }
.section-title.light { color: var(--white); }
.section-subtitle { text-align: center; color: var(--gray-600); font-size: 1.1rem; margin-bottom: 50px; }
.section-subtitle.light { color: var(--gray-400); }
.content-card { max-width: 800px; margin: 0 auto; }
.content-card p { font-size: 1.05rem; line-height: 1.8; color: var(--gray-600); margin-bottom: 20px; }
.content-card.light-card p { color: var(--gray-300); }
.activities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; margin: 30px 0; }
.activity-item { background: var(--gray-100); border-radius: 10px; padding: 20px; text-align: center; font-weight: 600; font-size: 1.05rem; }
.adultes-list { margin: 25px 0; }
.adultes-list li { padding: 12px 0; border-bottom: 1px solid var(--gray-200); font-size: 1rem; color: var(--gray-600); }
.adultes-list li:last-child { border-bottom: none; }
.info-box { background: rgba(245,197,24,0.1); border: 1px solid rgba(245,197,24,0.3); border-radius: 12px; padding: 25px; margin: 30px 0; }
.info-box h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--black); }
.info-box p { font-size: 0.95rem; margin-bottom: 15px; }

/* === CONTACT === */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; max-width: 900px; margin: 0 auto 50px; }
.contact-card { background: var(--black-light); border-radius: 12px; padding: 30px; text-align: center; border: 1px solid rgba(255,255,255,0.06); }
.contact-icon { font-size: 2rem; margin-bottom: 12px; }
.contact-card h3 { color: var(--white); font-size: 1rem; margin-bottom: 12px; font-weight: 600; }
.contact-card a { display: block; color: var(--yellow); font-size: 0.9rem; transition: color 0.2s; }
.contact-card a:hover { color: var(--yellow-dark); }
.contact-card p { color: var(--gray-400); font-size: 0.9rem; }
.contact-card .small { font-size: 0.8rem; color: var(--gray-600); margin-top: 5px; }
.social-links { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.social-link { background: var(--yellow); color: var(--black) !important; padding: 6px 16px; border-radius: 20px; font-weight: 600; font-size: 0.85rem; }
.social-link:hover { background: var(--yellow-dark); }
.comite-section { text-align: center; color: var(--gray-400); margin-top: 40px; }
.comite-section h3 { color: var(--yellow); font-size: 1.1rem; margin-bottom: 10px; }
.comite-section a { color: var(--yellow); }

/* === FOOTER === */
.footer { background: #111; padding: 50px 0 30px; border-top: 1px solid rgba(245,197,24,0.1); }
.footer-content { text-align: center; }
.footer-brand { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 20px; }
.footer-logo { height: 35px; }
.footer-brand h3 { font-family: var(--font-display); color: var(--yellow); font-size: 1.1rem; }
.footer-links { display: flex; gap: 20px; justify-content: center; margin-bottom: 20px; }
.footer-links a { color: var(--gray-400); font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--yellow); }
.footer-copy { color: var(--gray-600); font-size: 0.8rem; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: var(--nav-height); left: 0; right: 0; background: rgba(26,26,26,0.98); flex-direction: column; padding: 20px; border-bottom: 1px solid rgba(245,197,24,0.15); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; font-size: 1rem; }
  .burger { display: flex; }
  .hero h1 { font-size: 2.2rem; }
  .hero-logo { width: 120px; }
  .hero-tagline { font-size: 1rem; }
  .section { padding: 60px 0; }
  .section-title { font-size: 1.8rem; }
  .flash-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .btn { width: 100%; justify-content: center; }
  .hero-buttons { flex-direction: column; }
  .contact-grid { grid-template-columns: 1fr; }
}