/* ============================================================
   ELITE EVENT RENTALS & INFLATABLES — SHARED STYLESHEET
   ============================================================ */

:root {
  --purple: #7C3AED;
  --purple-dark: #5B21B6;
  --purple-light: #EDE9FE;
  --pink: #EC4899;
  --pink-light: #FCE7F3;
  --yellow: #F59E0B;
  --yellow-light: #FEF9C3;
  --blue: #0EA5E9;
  --blue-light: #E0F2FE;
  --green: #10B981;
  --orange: #F97316;
  --red: #EF4444;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-900: #111827;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 15px rgba(0,0,0,0.10);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.14);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.18);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font-heading: 'Fredoka One', cursive;
  --font-body: 'Nunito', sans-serif;
}

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label { display: inline-block; background: var(--purple-light); color: var(--purple); font-size: 0.76rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; padding: 6px 18px; border-radius: 50px; margin-bottom: 14px; }
.section-title { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); text-align: center; margin-bottom: 12px; line-height: 1.15; }
.section-subtitle { font-size: 1.02rem; text-align: center; color: var(--gray-600); margin-bottom: 48px; max-width: 580px; margin-left: auto; margin-right: auto; line-height: 1.65; }
.text-center { text-align: center; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 30px; border-radius: 50px; font-family: var(--font-body); font-weight: 800; font-size: 1rem; cursor: pointer; border: none; transition: all 0.3s ease; text-decoration: none; }
.btn-primary { background: linear-gradient(135deg, var(--purple), var(--pink)); color: white; box-shadow: 0 4px 20px rgba(124,58,237,0.4); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(124,58,237,0.5); }
.btn-white { background: white; color: var(--purple); font-weight: 900; }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }
.btn-outline-white { background: transparent; color: white; border: 2.5px solid rgba(255,255,255,0.7); font-weight: 800; }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: white; transform: translateY(-3px); }
.btn-yellow { background: linear-gradient(135deg, var(--yellow), var(--orange)); color: white; box-shadow: 0 4px 20px rgba(245,158,11,0.4); }
.btn-yellow:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 8px 30px rgba(245,158,11,0.5); }

/* NAVBAR */
#navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 16px 0; transition: all 0.35s ease; }
#navbar.scrolled { background: white; box-shadow: var(--shadow-md); padding: 10px 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: var(--font-heading); font-size: 1.5rem; color: white; line-height: 1.15; transition: color 0.3s; }
.nav-logo span { color: var(--yellow); }
.nav-logo small { display: block; font-family: var(--font-body); font-size: 0.58rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; opacity: 0.85; }
#navbar.scrolled .nav-logo { color: var(--purple); }
#navbar.scrolled .nav-logo span { color: var(--pink); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { padding: 8px 14px; border-radius: 50px; font-weight: 700; font-size: 0.88rem; color: rgba(255,255,255,0.92); transition: all 0.3s; }
#navbar.scrolled .nav-links a { color: var(--gray-700); }
.nav-links a:hover { background: rgba(255,255,255,0.18); }
#navbar.scrolled .nav-links a:hover { background: var(--purple-light); color: var(--purple); }
.nav-links a.active-page { background: rgba(255,255,255,0.18); }
#navbar.scrolled .nav-links a.active-page { background: var(--purple-light); color: var(--purple); }
.nav-cta { background: var(--yellow) !important; color: var(--gray-900) !important; font-weight: 900 !important; padding: 10px 20px !important; }
.nav-cta:hover { background: var(--orange) !important; color: white !important; transform: scale(1.05); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; z-index: 1001; }
.nav-toggle span { display: block; width: 24px; height: 3px; background: white; border-radius: 3px; transition: all 0.3s; }
#navbar.scrolled .nav-toggle span { background: var(--purple); }
.nav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 997; display: none; }
.nav-overlay.active { display: block; }

/* PAGE HEADER (for inner pages) */
.page-header { padding: 120px 0 60px; background: linear-gradient(140deg, #4C1D95 0%, #7C3AED 35%, #C026D3 70%, #F97316 100%); text-align: center; color: white; position: relative; overflow: hidden; }
.page-header::after { content: ''; 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='%23ffffff' fill-opacity='0.04'%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/svg%3E"); pointer-events: none; }
.page-header h1 { font-family: var(--font-heading); font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: 14px; text-shadow: 0 2px 20px rgba(0,0,0,0.2); position: relative; z-index: 1; }
.page-header p { font-size: 1.1rem; opacity: 0.9; max-width: 520px; margin: 0 auto; line-height: 1.65; position: relative; z-index: 1; }
.page-header .breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 16px; font-size: 0.82rem; opacity: 0.75; position: relative; z-index: 1; }
.page-header .breadcrumb a { color: rgba(255,255,255,0.8); }
.page-header .breadcrumb a:hover { color: var(--yellow); }

/* MARQUEE */
.marquee-strip { background: linear-gradient(135deg, var(--yellow), var(--orange)); padding: 13px 0; overflow: hidden; }
.marquee-track { display: flex; width: max-content; animation: marqueeScroll 25s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-item { display: inline-flex; align-items: center; gap: 10px; padding: 0 28px; font-family: var(--font-heading); font-size: 1rem; color: white; white-space: nowrap; }
.marquee-item::after { content: '✦'; color: rgba(255,255,255,0.5); }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* STATS */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-card { background: white; border-radius: var(--radius-lg); padding: 28px 18px; text-align: center; box-shadow: var(--shadow-md); transition: transform 0.3s; position: relative; overflow: hidden; }
.stat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; }
.stat-card:nth-child(1)::before { background: linear-gradient(90deg, var(--purple), var(--pink)); }
.stat-card:nth-child(2)::before { background: linear-gradient(90deg, var(--blue), var(--green)); }
.stat-card:nth-child(3)::before { background: linear-gradient(90deg, var(--yellow), var(--orange)); }
.stat-card:nth-child(4)::before { background: linear-gradient(90deg, var(--pink), var(--red)); }
.stat-card:hover { transform: translateY(-6px); }
.stat-icon { font-size: 2.2rem; margin-bottom: 10px; }
.stat-number { font-family: var(--font-heading); font-size: 2.4rem; color: var(--purple); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 0.8rem; font-weight: 700; color: var(--gray-600); text-transform: uppercase; letter-spacing: 0.5px; }

/* PRODUCT CARDS */
.product-card { background: white; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); transition: all 0.35s ease; }
.product-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); }
.product-image { height: 220px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-image img { transform: scale(1.08); }
.product-img-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; position: relative; }
.product-img-placeholder .photo-icon { font-size: 3rem; filter: drop-shadow(0 3px 6px rgba(0,0,0,0.15)); }
.product-img-placeholder .photo-label { font-family: var(--font-heading); font-size: 0.8rem; color: rgba(255,255,255,0.85); background: rgba(0,0,0,0.2); padding: 4px 14px; border-radius: 50px; }
.product-badge { position: absolute; top: 12px; left: 12px; font-size: 0.7rem; font-weight: 900; padding: 4px 11px; border-radius: 50px; text-transform: uppercase; z-index: 1; }
.badge-sale { background: var(--red); color: white; }
.badge-popular { background: var(--yellow); color: #92400E; }
.badge-new { background: var(--green); color: white; }
.product-body { padding: 20px; }
.product-name { font-family: var(--font-heading); font-size: 1.15rem; margin-bottom: 8px; color: var(--gray-900); line-height: 1.25; }
.product-desc { font-size: 0.85rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 16px; }
.product-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.product-price { font-family: var(--font-heading); font-size: 1.3rem; color: var(--purple); }
.product-price .was-price { font-family: var(--font-body); font-size: 0.78rem; color: var(--gray-600); font-weight: 600; text-decoration: line-through; margin-left: 4px; }
.btn-book { background: linear-gradient(135deg, var(--purple), var(--pink)); color: white; padding: 10px 20px; border-radius: 50px; font-weight: 800; font-size: 0.85rem; border: none; cursor: pointer; transition: all 0.3s; text-decoration: none; display: inline-block; }
.btn-book:hover { transform: scale(1.06); box-shadow: 0 4px 15px rgba(124,58,237,0.4); }

/* REVIEW CARDS */
.review-card { background: var(--gray-50); border-radius: var(--radius-lg); padding: 28px; transition: all 0.3s; }
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); background: white; }
.review-stars { color: var(--yellow); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 14px; }
.review-text { font-size: 0.92rem; color: var(--gray-700); line-height: 1.72; margin-bottom: 20px; font-style: italic; position: relative; }
.review-text::before { content: '\201C'; font-size: 4rem; color: var(--purple-light); line-height: 0; vertical-align: -1rem; margin-right: 2px; font-family: Georgia, serif; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 900; color: white; flex-shrink: 0; }
.review-name { font-weight: 800; font-size: 0.9rem; color: var(--gray-900); }
.review-event { font-size: 0.76rem; color: var(--gray-600); }

/* CTA BANNER */
.cta-banner { padding: 80px 0; text-align: center; position: relative; overflow: hidden; background: linear-gradient(-45deg, #F97316, #EC4899, #7C3AED, #0EA5E9); background-size: 300% 300%; animation: gradBG 8s ease infinite; }
@keyframes gradBG { 0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%} }
.cta-floater { position: absolute; font-size: 3rem; opacity: 0.1; animation: ctaFloat ease-in-out infinite; }
@keyframes ctaFloat { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-22px) rotate(12deg)} }
.cta-banner h2 { font-family: var(--font-heading); font-size: clamp(2rem, 4.5vw, 3.2rem); color: white; margin-bottom: 14px; position: relative; z-index: 1; }
.cta-banner p { color: rgba(255,255,255,0.9); font-size: 1.05rem; margin-bottom: 30px; position: relative; z-index: 1; }
.cta-banner .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* FOOTER */
footer { background: #0F0F1A; color: rgba(255,255,255,0.75); padding: 56px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
.footer-brand .logo-text { font-family: var(--font-heading); font-size: 1.7rem; color: white; margin-bottom: 12px; }
.footer-brand .logo-text span { color: var(--yellow); }
.footer-brand p { font-size: 0.86rem; line-height: 1.72; margin-bottom: 20px; color: rgba(255,255,255,0.65); }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 1.05rem; transition: all 0.3s; cursor: pointer; border: 1px solid rgba(255,255,255,0.1); text-decoration: none; }
.social-btn:hover { background: var(--purple); transform: translateY(-3px); border-color: transparent; }
.footer-col h4 { font-family: var(--font-heading); font-size: 1.05rem; color: white; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 0.86rem; color: rgba(255,255,255,0.6); transition: color 0.3s; }
.footer-links a:hover { color: var(--yellow); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: rgba(255,255,255,0.4); flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: var(--purple-light); }

/* SCROLL ANIMATIONS */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* SCROLL TO TOP */
#scroll-top { position: fixed; bottom: 28px; right: 28px; width: 50px; height: 50px; background: linear-gradient(135deg, var(--purple), var(--pink)); color: white; border: none; border-radius: 50%; font-size: 1.2rem; cursor: pointer; box-shadow: var(--shadow-lg); transition: all 0.3s; opacity: 0; pointer-events: none; z-index: 900; display: flex; align-items: center; justify-content: center; }
#scroll-top.visible { opacity: 1; pointer-events: all; }
#scroll-top:hover { transform: translateY(-4px) scale(1.1); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links { position: fixed; top: 0; right: -100%; bottom: 0; width: 280px; background: white; flex-direction: column; justify-content: center; align-items: flex-start; padding: 40px; box-shadow: var(--shadow-xl); transition: right 0.3s ease; z-index: 999; }
  .nav-links.open { right: 0; }
  .nav-links a { color: var(--gray-700) !important; font-size: 1rem !important; width: 100%; padding: 12px 16px !important; }
  .nav-toggle { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
