/* ============================================
   CREEPY PEEP CREATIONS - STYLE SYSTEM
   Aesthetic: Spooky Kawaii / Romantic Gothic
   Colors: Deep Purple + Slime Green + Black
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    /* Primary Colors */
    --black: #0a0a0a;
    --deep-black: #050505;
    --purple-dark: #1a0a1f;
    --purple-mid: #2d1b36;
    --purple-light: #4a2c5a;
    --purple-accent: #6b3d7a;
    --purple-glow: #9b59b6;
    
    /* Signature Slime Green */
    --slime-green: #26ae38;
    --slime-glow: #32d945;
    --slime-dark: #1e8a2d;
    --slime-light: #7fff7f;
    
    /* Neutrals */
    --white: #faf8fc;
    --cream: #f5f0f7;
    --gray-light: #c9c0d1;
    --gray-mid: #8a7a96;
    
    /* Accent Colors */
    --blood-red: #8b0000;
    --dusty-rose: #c9a0b5;
    
    /* Typography */
    --font-display: 'Creepster', cursive;
    --font-heading: 'Crimson Text', serif;
    --font-body: 'Quicksand', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-med: 0.4s ease;
    --transition-slow: 0.6s ease;
    
    /* Shadows */
    --shadow-glow: 0 0 20px rgba(38, 174, 56, 0.3);
    --shadow-purple: 0 0 30px rgba(107, 61, 122, 0.4);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    overflow-y: scroll;
}

body {
    font-family: var(--font-body);
    background: var(--deep-black);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    overflow-y: auto;
}

/* Side Ooze Effects - drips oozing down from edges, below navbar */
.side-ooze {
    position: fixed;
    top: 70px;
    bottom: 0;
    width: 60px;
    pointer-events: none;
    z-index: 100;
    opacity: 0.3;
}

/* Bottom Ooze - creeping up from the bottom */
.bottom-ooze {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    pointer-events: none;
    z-index: 100;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 50' preserveAspectRatio='none'%3E%3Cpath d='M0,50 L0,30 Q50,15 100,30 Q150,45 200,28 Q250,8 300,30 L300,50 Z M300,50 L300,28 Q350,42 400,30 Q450,12 500,30 Q550,46 600,28 L600,50 Z M600,50 L600,30 Q650,38 700,28 Q750,14 800,30 Q850,44 900,28 L900,50 Z M900,50 L900,28 Q950,18 1000,30 Q1050,40 1100,28 Q1150,16 1200,30 L1200,50 Z' fill='%2326ae38'/%3E%3C/svg%3E") repeat-x bottom;
    background-size: 1200px 50px;
    opacity: 0.2;
}

.side-ooze-left {
    left: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 900' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L0,100 Q18,130 15,180 Q25,220 12,270 Q20,300 8,340 L0,360 L0,480 Q22,520 18,580 Q28,640 15,700 Q22,750 10,800 L0,820 L0,900' fill='%2326ae38'/%3E%3Cpath d='M10,150 Q25,200 20,260 Q32,320 22,380 Q30,420 18,470 Q28,500 20,540' fill='%2326ae38' fill-opacity='0.6'/%3E%3Cpath d='M15,580 Q28,640 22,700 Q35,760 25,820 Q30,860 22,900' fill='%2326ae38' fill-opacity='0.5'/%3E%3Cellipse cx='25' cy='280' rx='12' ry='18' fill='%2326ae38' fill-opacity='0.4'/%3E%3Cellipse cx='30' cy='650' rx='14' ry='20' fill='%2326ae38' fill-opacity='0.4'/%3E%3Cellipse cx='18' cy='450' rx='10' ry='14' fill='%2326ae38' fill-opacity='0.35'/%3E%3C/svg%3E") repeat-y;
    background-size: 60px 900px;
}

.side-ooze-right {
    right: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 900' preserveAspectRatio='none'%3E%3Cpath d='M60,0 L60,80 Q42,120 45,170 Q35,220 48,270 Q40,310 52,350 L60,370 L60,500 Q38,550 42,610 Q32,670 45,730 Q38,780 50,830 L60,850 L60,900' fill='%2326ae38'/%3E%3Cpath d='M50,130 Q35,190 40,250 Q28,310 38,370 Q30,420 42,470 Q32,510 40,560' fill='%2326ae38' fill-opacity='0.6'/%3E%3Cpath d='M45,600 Q32,660 38,720 Q25,780 35,840 Q30,870 38,900' fill='%2326ae38' fill-opacity='0.5'/%3E%3Cellipse cx='35' cy='260' rx='13' ry='19' fill='%2326ae38' fill-opacity='0.4'/%3E%3Cellipse cx='30' cy='680' rx='15' ry='22' fill='%2326ae38' fill-opacity='0.4'/%3E%3Cellipse cx='42' cy='480' rx='11' ry='15' fill='%2326ae38' fill-opacity='0.35'/%3E%3C/svg%3E") repeat-y;
    background-size: 60px 900px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

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

/* ---------- Floating Decorations ---------- */
.floating-decor {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.bat, .ghost, .spider {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.12;
    animation: float 8s ease-in-out infinite;
}

.bat-1 { top: 15%; left: 5%; animation-delay: 0s; }
.bat-2 { top: 45%; right: 6%; animation-delay: 2s; font-size: 1.8rem; }
.bat-3 { top: 75%; left: 4%; animation-delay: 4s; }
.ghost-1 { top: 30%; right: 4%; animation-delay: 1s; font-size: 1.8rem; }
.spider-1 { top: 60%; right: 5%; animation-delay: 3.5s; font-size: 1.4rem; }
.spider-2 { top: 85%; right: 8%; animation-delay: 5s; font-size: 1.6rem; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(5deg); }
    50% { transform: translateY(-5px) rotate(-3deg); }
    75% { transform: translateY(-20px) rotate(3deg); }
}

/* ---------- Navigation ---------- */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-sm) var(--space-md);
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.95), transparent);
    transition: var(--transition-med);
}

.main-nav.scrolled {
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

/* Ooze drip inside navbar - stacked layered effect, above background but below links */
.main-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L0,35 Q50,50 100,35 Q150,20 200,38 Q250,60 300,35 L300,0 Z M300,0 L300,38 Q350,22 400,35 Q450,55 500,35 Q550,18 600,38 L600,0 Z M600,0 L600,35 Q650,28 700,38 Q750,52 800,35 Q850,20 900,38 L900,0 Z M900,0 L900,38 Q950,48 1000,35 Q1050,25 1100,38 Q1150,50 1200,35 L1200,0 Z' fill='%2326ae38' fill-opacity='0.2'/%3E%3C/svg%3E") repeat-x bottom,
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 45' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L0,22 Q40,38 80,22 Q120,8 160,25 Q200,45 240,22 L240,0 Z M240,0 L240,25 Q280,10 320,22 Q360,40 400,22 Q440,8 480,25 L480,0 Z M480,0 L480,22 Q520,15 560,25 Q600,38 640,22 Q680,8 720,25 L720,0 Z M720,0 L720,25 Q760,35 800,22 Q840,12 880,25 Q920,38 960,22 Q980,12 1000,22 L1000,0 Z' fill='%2326ae38' fill-opacity='0.14'/%3E%3C/svg%3E") repeat-x bottom 15px left;
    background-size: 1200px 60px, 1000px 45px;
    pointer-events: none;
    z-index: 1;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--slime-green);
    text-shadow: 0 0 10px rgba(38, 174, 56, 0.5);
    letter-spacing: 1px;
}

.nav-logo:hover {
    color: var(--slime-glow);
    text-shadow: 0 0 25px rgba(50, 217, 69, 1), 0 0 40px rgba(38, 174, 56, 0.6);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--space-md);
}

.nav-links a {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-light);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--slime-green), var(--purple-glow));
    transition: var(--transition-fast);
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--slime-green);
    transition: var(--transition-fast);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(10px);
    padding: var(--space-md);
    z-index: 999;
    transform: translateY(-100%);
    opacity: 0;
    transition: var(--transition-med);
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
}

.mobile-nav-links li {
    margin: var(--space-sm) 0;
}

.mobile-nav-links a {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-light);
}

.mobile-nav-links a:hover {
    color: var(--slime-green);
}

/* ---------- Hero Section ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background: 
        radial-gradient(ellipse at center, var(--purple-mid) 0%, var(--purple-dark) 30%, transparent 70%),
        radial-gradient(ellipse at bottom right, rgba(38, 174, 56, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at bottom left, rgba(38, 174, 56, 0.05) 0%, transparent 30%),
        linear-gradient(180deg, var(--deep-black) 0%, var(--purple-dark) 100%);
    padding: var(--space-xl) var(--space-md);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(38, 174, 56, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 80% 20%, rgba(107, 61, 122, 0.08) 0%, transparent 30%);
    pointer-events: none;
}

.hero-drip {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 100' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L0,60 Q50,80 100,60 Q150,40 200,60 Q250,100 300,60 L300,0 Z M300,0 L300,60 Q350,40 400,60 Q450,90 500,60 Q550,30 600,60 L600,0 Z M600,0 L600,60 Q650,50 700,60 Q750,85 800,60 Q850,35 900,60 L900,0 Z M900,0 L900,60 Q950,75 1000,60 Q1050,45 1100,60 Q1150,80 1200,60 L1200,0 Z' fill='%2326ae38' fill-opacity='0.1'/%3E%3C/svg%3E") repeat-x;
    background-size: 1200px 100px;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--purple-glow);
    margin-bottom: var(--space-md);
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.hero-title {
    margin-bottom: var(--space-md);
}

.title-main {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 6rem);
    color: var(--slime-green);
    text-shadow: 
        0 0 10px rgba(38, 174, 56, 0.5),
        0 0 30px rgba(38, 174, 56, 0.3),
        0 0 50px rgba(38, 174, 56, 0.2);
    letter-spacing: 4px;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.title-sub {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 7vw, 4rem);
    color: var(--slime-green);
    text-shadow: 
        0 0 10px rgba(38, 174, 56, 0.5),
        0 0 30px rgba(38, 174, 56, 0.3);
    letter-spacing: 6px;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--gray-light);
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.hero-cta {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-med);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--slime-green), var(--slime-dark));
    color: var(--deep-black);
    border: none;
    box-shadow: 0 4px 20px rgba(38, 174, 56, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(38, 174, 56, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--purple-glow);
    border: 2px solid var(--purple-glow);
}

.btn-secondary:hover {
    background: var(--purple-glow);
    color: var(--deep-black);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(155, 89, 182, 0.4);
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: fadeIn 1s ease 1.2s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.hero-scroll span {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-mid);
    margin-bottom: var(--space-xs);
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid var(--gray-mid);
    border-radius: 12px;
    margin: 0 auto;
    position: relative;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--slime-green);
    border-radius: 2px;
    animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(12px); opacity: 0.3; }
}

/* ---------- Gothic Dividers ---------- */
.gothic-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md) 0;
    background: transparent;
    position: relative;
}

.gothic-divider::before,
.gothic-divider::after {
    content: '';
    flex: 1;
    max-width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--slime-green), transparent);
}

.divider-ornament {
    font-size: 1.8rem;
    color: var(--slime-green);
    padding: 0 var(--space-md);
    text-shadow: 0 0 10px rgba(38, 174, 56, 0.5);
}

.section-top-divider {
    background: transparent;
    padding: var(--space-sm) 0;
    margin-bottom: var(--space-md);
}

/* ---------- Section Styles ---------- */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-xl) var(--space-md);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.section-icon {
    display: block;
    font-size: 2rem;
    margin-bottom: var(--space-sm);
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--purple-glow);
    text-shadow: 0 0 20px rgba(155, 89, 182, 0.3);
    letter-spacing: 3px;
    margin-bottom: var(--space-sm);
}

.section-header.light h2 {
    color: var(--slime-green);
    text-shadow: 0 0 20px rgba(38, 174, 56, 0.3);
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.divider-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--purple-accent), transparent);
}

.divider-icon {
    color: var(--slime-green);
    font-size: 1.2rem;
}

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gray-light);
}

/* ---------- About Section ---------- */
.about-section {
    background: 
        linear-gradient(180deg, 
            var(--deep-black) 0%, 
            var(--purple-dark) 20%, 
            var(--purple-mid) 50%, 
            var(--purple-dark) 80%, 
            var(--deep-black) 100%);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 80px;
    background: linear-gradient(90deg, var(--deep-black) 0%, transparent 100%);
    pointer-events: none;
    z-index: 2;
}

.about-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 80px;
    background: linear-gradient(270deg, var(--deep-black) 0%, transparent 100%);
    pointer-events: none;
    z-index: 2;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-lg);
    align-items: start;
}

.about-image {
    position: sticky;
    top: 100px;
}

.image-frame {
    position: relative;
    padding: var(--space-md);
    background: linear-gradient(135deg, var(--purple-mid), var(--purple-dark));
    border-radius: 12px;
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: contain;
    background: var(--deep-black);
}

.frame-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid var(--slime-green);
    z-index: 2;
}

.frame-tl { top: -5px; left: -5px; border-right: none; border-bottom: none; }
.frame-tr { top: -5px; right: -5px; border-left: none; border-bottom: none; }
.frame-bl { bottom: -5px; left: -5px; border-right: none; border-top: none; }
.frame-br { bottom: -5px; right: -5px; border-left: none; border-top: none; }

.placeholder-image {
    aspect-ratio: 1;
    background: 
        repeating-linear-gradient(
            45deg,
            var(--purple-mid),
            var(--purple-mid) 10px,
            var(--purple-dark) 10px,
            var(--purple-dark) 20px
        );
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-mid);
    font-style: italic;
}

.about-text {
    font-size: 1.05rem;
}

.about-text p {
    margin-bottom: var(--space-sm);
    color: var(--cream);
}

.about-intro {
    font-size: 1.2rem;
    color: var(--white) !important;
}

.about-intro strong {
    color: var(--slime-green);
}

.highlight {
    color: var(--slime-green);
    font-weight: 600;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
    margin: var(--space-md) 0;
    padding: var(--space-md);
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 1px solid var(--purple-mid);
}

.feature {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-weight: 500;
}

.feature-icon {
    font-size: 1.5rem;
}

.about-closing {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--gray-light) !important;
}

/* Centered About Layout (for home page) */
.about-centered {
    grid-template-columns: 1fr;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.about-centered .about-image {
    position: static;
    max-width: 240px;
    margin: 0 auto var(--space-lg);
}

.about-centered .image-frame {
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.about-centered .frame-corner {
    display: none;
}

.about-centered .image-frame img {
    background: transparent;
    border-radius: 0;
}

.about-text-centered {
    text-align: center;
}

.about-text-centered .btn {
    margin-top: var(--space-md);
}

/* ---------- Gallery Section ---------- */
.gallery-section {
    background: 
        linear-gradient(180deg, 
            var(--purple-dark) 0%, 
            var(--deep-black) 30%, 
            var(--deep-black) 70%, 
            var(--purple-dark) 100%);
    position: relative;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 80px;
    background: linear-gradient(90deg, var(--deep-black) 0%, transparent 100%);
    pointer-events: none;
    z-index: 2;
}

.gallery-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 80px;
    background: linear-gradient(270deg, var(--deep-black) 0%, transparent 100%);
    pointer-events: none;
    z-index: 2;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--deep-black);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

/* Spiderweb corner frames */
.gallery-item::before,
.gallery-item::after,
.gallery-image::before,
.gallery-image::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    pointer-events: none;
    z-index: 2;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

/* Top-left corner */
.gallery-item::before {
    top: 0;
    left: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M0,0 Q50,10 100,0 M0,0 Q10,50 0,100 M0,0 Q30,30 60,60 M0,0 L100,100' stroke='%2322aa22' stroke-width='2' fill='none' opacity='0.9'/%3E%3Cpath d='M0,20 Q30,25 50,20 M20,0 Q25,30 20,50 M0,40 Q20,35 35,35 M40,0 Q35,20 35,35' stroke='%2322aa22' stroke-width='1.5' fill='none' opacity='0.7'/%3E%3Ccircle cx='0' cy='0' r='4' fill='%2322aa22' opacity='0.9'/%3E%3Ccircle cx='35' cy='35' r='3' fill='%2322aa22' opacity='0.7'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Bottom-right corner */
.gallery-item::after {
    bottom: 0;
    right: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M100,100 Q50,90 0,100 M100,100 Q90,50 100,0 M100,100 Q70,70 40,40 M100,100 L0,0' stroke='%2322aa22' stroke-width='2' fill='none' opacity='0.9'/%3E%3Cpath d='M100,80 Q70,75 50,80 M80,100 Q75,70 80,50 M100,60 Q80,65 65,65 M60,100 Q65,80 65,65' stroke='%2322aa22' stroke-width='1.5' fill='none' opacity='0.7'/%3E%3Ccircle cx='100' cy='100' r='4' fill='%2322aa22' opacity='0.9'/%3E%3Ccircle cx='65' cy='65' r='3' fill='%2322aa22' opacity='0.7'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Top-right corner */
.gallery-image::before {
    top: 0;
    right: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M100,0 Q50,10 0,0 M100,0 Q90,50 100,100 M100,0 Q70,30 40,60 M100,0 L0,100' stroke='%2322aa22' stroke-width='2' fill='none' opacity='0.9'/%3E%3Cpath d='M100,20 Q70,25 50,20 M80,0 Q75,30 80,50 M100,40 Q80,35 65,35 M60,0 Q65,20 65,35' stroke='%2322aa22' stroke-width='1.5' fill='none' opacity='0.7'/%3E%3Ccircle cx='100' cy='0' r='4' fill='%2322aa22' opacity='0.9'/%3E%3Ccircle cx='65' cy='35' r='3' fill='%2322aa22' opacity='0.7'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Bottom-left corner */
.gallery-image::after {
    bottom: 0;
    left: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M0,100 Q50,90 100,100 M0,100 Q10,50 0,0 M0,100 Q30,70 60,40 M0,100 L100,0' stroke='%2322aa22' stroke-width='2' fill='none' opacity='0.9'/%3E%3Cpath d='M0,80 Q30,75 50,80 M20,100 Q25,70 20,50 M0,60 Q20,65 35,65 M40,100 Q35,80 35,65' stroke='%2322aa22' stroke-width='1.5' fill='none' opacity='0.7'/%3E%3Ccircle cx='0' cy='100' r='4' fill='%2322aa22' opacity='0.9'/%3E%3Ccircle cx='35' cy='65' r='3' fill='%2322aa22' opacity='0.7'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.gallery-item:hover::before,
.gallery-item:hover::after,
.gallery-item:hover .gallery-image::before,
.gallery-item:hover .gallery-image::after {
    opacity: 1;
}

.gallery-item.featured {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gallery-image.bg-black {
    background-color: var(--deep-black);
}

.placeholder-gallery {
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, var(--purple-mid), var(--purple-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-mid);
    font-style: italic;
    font-size: 0.9rem;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-sm);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    transform: translateY(100%);
    transition: var(--transition-med);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-title {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--slime-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.gallery-note {
    text-align: center;
    color: var(--gray-light);
    font-size: 0.95rem;
}

.gallery-note a {
    color: var(--slime-green);
    text-decoration: underline;
}

.gallery-note a:hover {
    color: var(--slime-glow);
}

/* ---------- Page Header (for subpages) ---------- */
.page-header {
    min-height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(180deg, var(--deep-black) 0%, var(--purple-dark) 100%);
    padding: var(--space-lg) var(--space-md);
    padding-top: 120px;
    position: relative;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    color: var(--slime-green);
    text-shadow: 
        0 0 10px rgba(38, 174, 56, 0.5),
        0 0 30px rgba(38, 174, 56, 0.3);
    letter-spacing: 3px;
    margin-bottom: var(--space-sm);
}

.page-header-content p {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--gray-light);
}

/* Gallery Page Specific */
.gallery-page {
    padding-top: var(--space-lg);
}

.gallery-page::before {
    display: none;
}

.gallery-full {
    grid-template-columns: repeat(3, 1fr);
}

.gallery-full .gallery-item {
    aspect-ratio: 1;
}

/* Gallery Filter */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.2rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: transparent;
    color: var(--gray-light);
    border: 1px solid var(--purple-mid);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover {
    border-color: var(--purple-glow);
    color: var(--white);
}

.filter-btn.active {
    background: var(--slime-green);
    border-color: var(--slime-green);
    color: var(--deep-black);
}

/* ---------- Contact Section ---------- */
.contact-section {
    background: 
        linear-gradient(180deg, var(--deep-black) 0%, var(--purple-dark) 100%);
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--purple-mid);
    border-radius: 16px;
    padding: var(--space-md);
    text-align: center;
    transition: var(--transition-med);
}

.contact-card:hover {
    border-color: var(--slime-green);
    box-shadow: var(--shadow-glow);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--slime-green);
    margin-bottom: var(--space-xs);
}

.contact-card p {
    color: var(--gray-light);
    margin-bottom: var(--space-sm);
}

.contact-link {
    display: inline-block;
    color: var(--white);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--purple-mid), var(--purple-dark));
    border-radius: 50px;
    transition: var(--transition-fast);
}

.contact-link:hover {
    background: linear-gradient(135deg, var(--slime-green), var(--slime-dark));
    color: var(--deep-black);
}

/* Social Links */
.social-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.social-links h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--purple-glow);
    text-align: center;
    margin-bottom: var(--space-md);
}

.social-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.social-btn {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--purple-mid);
    border-radius: 12px;
    transition: var(--transition-med);
}

.social-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.social-btn span {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.social-btn:hover {
    transform: translateX(8px);
    border-color: var(--slime-green);
}

.social-btn.instagram:hover {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    border-color: transparent;
}

.social-btn.tiktok:hover {
    background: linear-gradient(135deg, #00f2ea, #ff0050);
    border-color: transparent;
}

.social-btn.facebook:hover {
    background: #1877f2;
    border-color: transparent;
}

/* ---------- Schedule Page ---------- */
.schedule-section {
    background: 
        linear-gradient(180deg, 
            var(--purple-dark) 0%, 
            var(--deep-black) 40%, 
            var(--deep-black) 60%, 
            var(--purple-dark) 100%);
    min-height: 40vh;
    position: relative;
}

.schedule-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 80px;
    background: linear-gradient(90deg, var(--deep-black) 0%, transparent 100%);
    pointer-events: none;
    z-index: 2;
}

.schedule-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 80px;
    background: linear-gradient(270deg, var(--deep-black) 0%, transparent 100%);
    pointer-events: none;
    z-index: 2;
}

.no-shows-message {
    text-align: center;
    padding: var(--space-lg);
    max-width: 600px;
    margin: 0 auto;
}

.no-shows-icon {
    font-size: 4rem;
    margin-bottom: var(--space-md);
    animation: float 4s ease-in-out infinite;
}

.no-shows-message h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--purple-glow);
    margin-bottom: var(--space-sm);
}

.no-shows-message p {
    color: var(--gray-light);
    margin-bottom: var(--space-sm);
}

.no-shows-cta {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    margin-top: var(--space-md);
    flex-wrap: wrap;
}

/* Schedule List */
.schedule-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    max-width: 700px;
    margin: 0 auto;
    padding: var(--space-md);
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: linear-gradient(135deg, var(--purple-mid), var(--purple-dark));
    border-radius: 12px;
    padding: var(--space-md);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.schedule-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.schedule-item:hover .schedule-details h3 {
    color: var(--slime-green);
}

.schedule-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--slime-green);
}

.schedule-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    padding: var(--space-sm);
    background: var(--deep-black);
    border-radius: 8px;
    text-align: center;
}

.schedule-date .month {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--slime-green);
}

.schedule-date .day {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--white);
    line-height: 1;
}

.schedule-date .year {
    font-size: 0.8rem;
    color: var(--gray-mid);
}

.schedule-details {
    flex: 1;
}

.schedule-details h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.schedule-details p {
    font-size: 0.95rem;
    color: var(--gray-light);
    margin-bottom: 0.3rem;
}

.schedule-time {
    color: var(--slime-green) !important;
}

.schedule-badge {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    background: var(--slime-green);
    color: var(--deep-black);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
}

.schedule-item.past {
    opacity: 0.6;
}

.schedule-item.past::before {
    background: var(--gray-mid);
}

.schedule-item.past .schedule-badge {
    background: var(--gray-mid);
}

@media (max-width: 600px) {
    .schedule-item {
        flex-direction: column;
        text-align: center;
    }
    
    .schedule-date {
        width: 100%;
        flex-direction: row;
        gap: var(--space-sm);
    }
    
    .schedule-date .day {
        font-size: 1.8rem;
    }
    
    .schedule-badge {
        position: static;
        margin-top: var(--space-sm);
    }
}

/* ---------- Footer ---------- */
.main-footer {
    background: linear-gradient(180deg, var(--purple-dark) 0%, var(--deep-black) 30%);
    position: relative;
    padding-top: var(--space-xl);
    border-top: none;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--slime-green), transparent);
    box-shadow: 0 0 15px rgba(38, 174, 56, 0.4);
}

.footer-drip {
    display: none;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-md);
    text-align: center;
}

.footer-logo {
    margin-bottom: var(--space-md);
}

.footer-title {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--slime-green);
    text-shadow: 0 0 10px rgba(38, 174, 56, 0.3);
    letter-spacing: 2px;
}

.footer-tagline {
    display: block;
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--gray-light);
    margin-top: var(--space-xs);
}

.footer-info {
    margin-bottom: var(--space-md);
}

.footer-info p {
    color: var(--gray-mid);
    font-size: 0.9rem;
    margin: var(--space-xs) 0;
}

.footer-bottom {
    padding-top: var(--space-md);
    border-top: 1px solid var(--purple-mid);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--gray-mid);
    margin: var(--space-xs) 0;
}

.made-with {
    color: var(--purple-accent) !important;
}

/* ---------- Responsive Design ---------- */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        position: static;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item.featured {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 2/1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery-item.featured {
        grid-column: span 2;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .section-container {
        padding: var(--space-lg) var(--space-sm);
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.featured {
        grid-column: span 1;
        aspect-ratio: 1;
    }
    
    .floating-decor {
        display: none;
    }
}

/* ---------- Animations on Scroll (prep for JS) ---------- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Custom Scrollbar - Hidden ---------- */
::-webkit-scrollbar {
    width: 0px;
    display: none;
}

/* Firefox scrollbar - hidden */
* {
    scrollbar-width: none;
}

/* ---------- Spider Scroll Progress ---------- */
.spider-scroll {
    position: fixed;
    right: 2px;
    top: 0;
    height: 100vh;
    width: 50px;
    z-index: 9999;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .spider-scroll {
        display: none;
    }
}

.spider-web-strand {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 0%;
    background: linear-gradient(
        180deg,
        rgba(155, 123, 184, 1) 0%,
        rgba(155, 123, 184, 0.8) 50%,
        rgba(155, 123, 184, 0.5) 100%
    );
    border-radius: 3px;
    box-shadow: 0 0 12px rgba(155, 123, 184, 0.7);
}

.spider-web-strand::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Cpath d='M20,0 L20,40 M0,20 L40,20 M5,5 L35,35 M35,5 L5,35' stroke='%239b7bb8' stroke-width='1' opacity='0.6'/%3E%3Ccircle cx='20' cy='20' r='5' stroke='%239b7bb8' stroke-width='1' fill='none' opacity='0.4'/%3E%3Ccircle cx='20' cy='20' r='10' stroke='%239b7bb8' stroke-width='1' fill='none' opacity='0.3'/%3E%3Ccircle cx='20' cy='20' r='15' stroke='%239b7bb8' stroke-width='1' fill='none' opacity='0.2'/%3E%3C/svg%3E");
    background-size: contain;
}

.scroll-spider {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
    font-size: 2.6rem;
    top: 0%;
    filter: drop-shadow(0 0 8px rgba(155, 123, 184, 0.8)) drop-shadow(0 15px 1px rgba(75, 40, 100, 0.9));
    pointer-events: auto;
    cursor: grab;
    animation: spiderPulse 2s ease-in-out infinite;
}

.scroll-spider.bouncing {
    animation: spiderPulse 2s ease-in-out infinite, spiderBounce 0.6s ease-out 3;
}

.scroll-spider:hover {
    animation: spiderWiggle 0.3s ease-in-out infinite;
    filter: drop-shadow(0 0 12px rgba(155, 123, 184, 1)) drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.scroll-spider:active {
    cursor: grabbing;
}

@keyframes spiderWiggle {
    0%, 100% { transform: translateX(-50%) rotate(180deg) scale(1.1); }
    25% { transform: translateX(-50%) rotate(172deg) scale(1.1); }
    75% { transform: translateX(-50%) rotate(188deg) scale(1.1); }
}

@keyframes spiderPulse {
    0%, 100% { filter: drop-shadow(0 0 8px rgba(155, 123, 184, 0.6)) drop-shadow(0 2px 4px rgba(0,0,0,0.5)); }
    50% { filter: drop-shadow(0 0 15px rgba(155, 123, 184, 1)) drop-shadow(0 2px 4px rgba(0,0,0,0.5)); }
}

@keyframes spiderBounce {
    0%, 100% { transform: translateX(-50%) rotate(180deg) translateY(0); }
    50% { transform: translateX(-50%) rotate(180deg) translateY(10px); }
}

/* ---------- Selection Color ---------- */
::selection {
    background: var(--slime-green);
    color: var(--deep-black);
}
