/* =========================================
   THEME: ELECTRIC YOUTH (Gen Z / Hype)
========================================= */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@600;700&family=Outfit:wght@300;500;700;900&display=swap');

:root {
    --bg-body: #f8fafc;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    
    /* Hype Gradients */
    --grad-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --grad-text: linear-gradient(to right, #6366f1, #ec4899);
    
    /* Shadows & Glows */
    --glow-primary: 0 10px 40px -10px rgba(99, 102, 241, 0.4);
    --shadow-card: 0 15px 35px -5px rgba(0, 0, 0, 0.08);
    
    --radius-lg: 24px;
    --radius-pill: 50px;
}

body {
    background-color: var(--bg-body);
    color: var(--text-dark);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Playful Header Font */
.font-playful { font-family: 'Fredoka', sans-serif; letter-spacing: 0.5px; }

a { text-decoration: none; transition: 0.3s ease; }

/* =========================
   ANIMATIONS
========================= */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}
@keyframes pulse-soft {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
@keyframes gradient-move {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Animated Blobs */
.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.6;
    animation: float 8s ease-in-out infinite;
}

/* =========================
   COMPONENTS
========================= */
/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
.nav-link { font-weight: 700; color: var(--text-dark) !important; margin: 0 10px; }
.nav-link:hover, .nav-link.active { color: #6366f1 !important; }
.navbar form[role="search"], .navbar .form-inline, .navbar .search, #navSearch { display:none !important; }

/* Buttons */
.btn-hype {
    background: var(--grad-primary);
    color: white !important;
    border: none; padding: 12px 32px;
    border-radius: var(--radius-pill);
    font-weight: 800;
    box-shadow: var(--glow-primary);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.btn-hype:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -10px rgba(99, 102, 241, 0.6); }

/* Modern Card */
.card-modern {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid white;
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: 0.4s ease;
    height: 100%;
    display: block; color: inherit; position: relative;
}
.card-modern:hover { transform: translateY(-8px); box-shadow: 0 25px 50px -10px rgba(0,0,0,0.1); color: inherit; }

/* Image Helpers */
.card-img-wrap { height: 240px; position: relative; overflow: hidden; }
.img-cover { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.card-modern:hover .img-cover { transform: scale(1.05); }
.date-tag {
    position: absolute; top: 15px; left: 15px;
    background: rgba(255,255,255,0.95);
    padding: 6px 16px; border-radius: 12px;
    font-weight: 800; color: #6366f1;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* =========================
   SECTIONS
========================= */
.section-pad { padding: 100px 0; position: relative; }
.page-header-spacer { padding-top: 140px; padding-bottom: 60px; }

.hero-modern { padding: 160px 0 100px 0; position: relative; overflow: hidden; }

.text-gradient {
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    background-size: 200% auto;
    animation: gradient-move 3s linear infinite;
}

/* Teen Biz specific */
.biz-grid-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.biz-box {
    background: white; border-radius: 24px; padding: 40px 20px;
    text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s ease; border: 1px solid #f1f5f9;
    height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.biz-box:hover { transform: translateY(-5px); border-color: #e0e7ff; }
.biz-col-offset { margin-top: 30px; }
@media (max-width: 768px) { .biz-col-offset { margin-top: 0; } }

/* Gallery Paint Strokes */
.gallery-wrapper { position: relative; z-index: 1; height: 100%; }
.paint-stroke {
    position: absolute; top: -10px; left: -10px;
    width: 100%; height: 100%; border-radius: 30px;
    z-index: -1; transform: rotate(-3deg); transition: 0.4s ease;
}
.gallery-wrapper:hover .paint-stroke { transform: rotate(-6deg) scale(1.05); }
.stroke-pink { background-color: #fce7f3; }
.stroke-blue { background-color: #e0f2fe; }
.stroke-green { background-color: #dcfce7; }
.stroke-yellow { background-color: #fef9c3; }

/* Marquee */
.marquee-wrap {
    background: #0f172a; color: white; padding: 18px 0;
    overflow: hidden; white-space: nowrap;
    transform: rotate(-2deg); width: 105%; margin-left: -2.5%; margin-bottom: 60px;
    border-top: 3px solid #f43f5e; border-bottom: 3px solid #6366f1;
}
.marquee-content {
    display: inline-block; animation: marquee 25s linear infinite;
    font-weight: 900; font-size: 1.25rem; text-transform: uppercase; letter-spacing: 3px;
}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Form Inputs */
.form-floating > .form-control, .form-floating > .form-select {
    border-radius: 12px; border: 2px solid #f1f5f9; background: #fff; box-shadow:none;
}
.form-floating > .form-control:focus { border-color: #6366f1; box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1); }

/* Footer */
.modern-footer { background: white; padding: 80px 0 30px 0; border-top: 1px solid #f1f5f9; }
.social-btn {
    width: 50px; height: 50px; background: #f8fafc; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--text-dark); transition: 0.3s; margin-right: 10px;
}
.social-btn:hover { background: var(--text-dark); color: white; transform: rotate(10deg) scale(1.1); }

/* Lightbox & Grid */
.photo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.photo-item { border-radius: 16px; overflow: hidden; aspect-ratio: 1/1; cursor: pointer; border: 2px solid #fff; transition: transform 0.3s; }
.photo-item:hover { transform: scale(1.05); z-index: 2; box-shadow: 0 10px 25px rgba(0,0,0,0.15); }
.lightbox-modal .modal-content { background: rgba(0,0,0,0.95); border: none; }
.viewer img { max-height: 85vh; max-width: 100%; border-radius: 12px; }
.nav-circle { background: white; border-radius: 50%; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; cursor: pointer; }