/* =========================================
   RESURRECTED KICKS - Graffiti & Heavenly Theme
   Teen Christian Shoe Cleaning Business
   ========================================= */

/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Permanent+Marker&family=Inter:wght@400;500;600;700;800&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
    /* Colors - Dark Theme Default */
    --color-bg: #0a0a0a;
    --color-bg-alt: #111111;
    --color-surface: #1a1a1a;
    --color-surface-hover: #222222;

    --color-text: #ffffff;
    --color-text-muted: #a0a0a0;
    --color-text-subtle: #666666;

    /* Accent Colors */
    --color-purple: #bf00ff;
    --color-purple-dark: #9900cc;
    --color-green: #00ff41;
    --color-green-dark: #00cc34;
    --color-blue: #291bf2;
    --color-blue-light: #5b4ff5;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-purple) 0%, var(--color-blue) 100%);
    --gradient-accent: linear-gradient(135deg, var(--color-green) 0%, var(--color-purple) 100%);

    /* Fonts */
    --font-display: 'Bebas Neue', sans-serif;
    --font-graffiti: 'Permanent Marker', cursive;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.5);
    --shadow-glow-purple: 0 0 40px rgba(191, 0, 255, 0.3);
    --shadow-glow-green: 0 0 40px rgba(0, 255, 65, 0.3);
}

/* ===== LIGHT THEME ===== */
[data-theme="light"] {
    --color-bg: #f5f5f0;
    --color-bg-alt: #ffffff;
    --color-surface: #ffffff;
    --color-surface-hover: #f0f0e8;

    --color-text: #1a1a1a;
    --color-text-muted: #555555;
    --color-text-subtle: #888888;

    --color-gold: #8B6914;
    --color-gold-light: #B8860B;
    --color-gold-dark: #5C4000;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.2);
}

/* ===== BASE STYLES ===== */
body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.1;
}

/* ===== SUBTLE NOISE TEXTURE ===== */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ===== PARALLAX BACKGROUND ===== */
.parallax-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.parallax-layer {
    position: absolute;
    inset: 0;
}

.parallax-layer-1 {
    background:
        radial-gradient(ellipse 600px 400px at 10% 20%, rgba(191, 0, 255, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 400px 600px at 95% 80%, rgba(191, 0, 255, 0.06) 0%, transparent 70%);
}

.parallax-layer-2 {
    background:
        radial-gradient(ellipse 500px 350px at 85% 15%, rgba(0, 255, 65, 0.07) 0%, transparent 70%),
        radial-gradient(ellipse 350px 500px at 5% 70%, rgba(0, 255, 65, 0.05) 0%, transparent 70%);
}

.parallax-layer-3 {
    background:
        radial-gradient(ellipse 450px 450px at 50% 50%, rgba(41, 27, 242, 0.05) 0%, transparent 70%),
        radial-gradient(ellipse 300px 400px at 70% 90%, rgba(41, 27, 242, 0.04) 0%, transparent 70%);
}

.graffiti-elements {
    position: absolute;
    inset: 0;
}

.graffiti-drip {
    position: absolute;
    opacity: 0.15;
}

.graffiti-drip-1 {
    top: 5%;
    left: 8%;
    width: 20px;
    height: 120px;
    color: var(--color-purple);
}

.graffiti-drip-2 {
    top: 15%;
    right: 12%;
    width: 16px;
    height: 90px;
    color: var(--color-green);
}

.graffiti-splash {
    position: absolute;
    opacity: 0.08;
}

.graffiti-splash-1 {
    top: 40%;
    left: 3%;
    width: 80px;
    height: 80px;
    color: var(--color-blue-light);
}

.graffiti-tag {
    position: absolute;
    opacity: 0.1;
}

.graffiti-tag-1 {
    bottom: 30%;
    right: 5%;
    width: 80px;
    height: 50px;
    color: var(--color-purple);
}

.graffiti-star {
    position: absolute;
    top: 60%;
    left: 15%;
    width: 40px;
    height: 40px;
    color: var(--color-green);
    opacity: 0.08;
}

.graffiti-text {
    position: absolute;
    font-family: var(--font-graffiti);
    opacity: 0.15;
    pointer-events: none;
    user-select: none;
}

.graffiti-text-1 {
    top: 25%;
    right: 8%;
    font-size: 5rem;
    color: var(--color-purple);
    transform: rotate(-12deg);
}

.graffiti-text-2 {
    bottom: 20%;
    left: 10%;
    font-size: 4rem;
    color: var(--color-green);
}

.graffiti-x {
    position: absolute;
    top: 75%;
    right: 20%;
    font-size: 3rem;
    color: var(--color-blue-light);
    opacity: 0.06;
    font-weight: bold;
}

/* ===== THEME TOGGLE ===== */
.theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: var(--color-surface);
    border: 2px solid var(--color-purple);
    border-radius: var(--radius-xl);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    background: var(--color-purple);
    color: white;
    transform: scale(1.05);
    box-shadow: var(--shadow-glow-purple);
}

/* ===== LAYOUT ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

section {
    padding: var(--spacing-xl) 0;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: var(--spacing-xl) var(--spacing-md);
    background:
        radial-gradient(circle at 20% 30%, rgba(191, 0, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 65, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(41, 27, 242, 0.1) 0%, transparent 50%),
        var(--color-bg);
    overflow: hidden;
}

/* Scattered BLESSED text - dark mode only */
.blessed-scatter {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.blessed-text {
    position: absolute;
    font-family: var(--font-graffiti);
    color: rgba(255, 255, 255, 0.08);
    font-size: 4rem;
    letter-spacing: 0.3em;
    user-select: none;
    white-space: nowrap;
}

.blessed-1 {
    top: 10%;
    left: 5%;
    transform: rotate(-15deg);
    font-size: 3rem;
}

.blessed-2 {
    top: 25%;
    right: 8%;
    transform: rotate(12deg);
    font-size: 3.5rem;
    color: rgba(191, 0, 255, 0.06);
}

.blessed-3 {
    bottom: 30%;
    left: 15%;
    transform: rotate(-8deg);
    font-size: 2.5rem;
    color: rgba(0, 255, 65, 0.05);
}

.blessed-4 {
    bottom: 15%;
    right: 12%;
    transform: rotate(18deg);
    font-size: 3rem;
}

.blessed-5 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-5deg);
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.04);
}

.hero-accent {
    position: absolute;
    bottom: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: var(--gradient-primary);
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
}

.hero-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--color-surface);
    border: 2px solid var(--color-green);
    border-radius: var(--radius-xl);
    color: var(--color-green);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-md);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.hero-headline {
    font-size: clamp(3rem, 8vw, 5.5rem);
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
}

.hero-headline .highlight {
    font-family: var(--font-graffiti);
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    transform: rotate(-2deg);
    margin-top: -0.5rem;
}

.hero-subtext {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    color: var(--color-text-muted);
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    line-height: 1.8;
}

.hero-subtext .brand-highlight {
    color: var(--color-green);
    font-weight: 700;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background: var(--gradient-primary);
    color: white;
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-lg), var(--shadow-glow-purple);
}

.btn-primary.btn-large {
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.4rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--color-text);
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    border: 2px solid var(--color-text-subtle);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    border-color: var(--color-green);
    color: var(--color-green);
    transform: translateY(-4px);
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    color: var(--color-purple);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-sm);
}

.section-title {
    font-size: clamp(2rem, 6vw, 4rem);
    color: var(--color-text);
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
}

.section-subtitle {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* ===== MENU SECTION ===== */
.menu-section {
    background: var(--color-bg-alt);
    position: relative;
}

.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-purple), var(--color-green), transparent);
}

/* ===== PRICING CARDS ===== */
.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.price-card {
    flex: 0 1 300px;
    position: relative;
    background: var(--color-surface);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    text-align: center;
    transition: all 0.15s ease;
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 2px;
    background: var(--gradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.price-card:hover::before {
    opacity: 1;
}

.price-card.featured {
    border-color: var(--color-purple);
    transform: scale(1.02);
}

.price-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
}

.card-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    padding: 0.4rem 1rem;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.card-emoji {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.card-shoe-type {
    font-family: var(--font-graffiti);
    font-size: 1.4rem;
    color: var(--color-text);
    margin-bottom: var(--spacing-xs);
}

.card-price {
    font-family: var(--font-display);
    font-size: 3rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-xs);
}

.card-vibe {
    color: var(--color-text-subtle);
    font-size: 0.9rem;
}

/* ===== PRICING NOTE ===== */
.pricing-note {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-green);
}

.pricing-note p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

.pricing-note strong {
    color: var(--color-text);
}

/* ===== WHY SECTION ===== */
.why-section {
    background: var(--color-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.feature-card {
    background: var(--color-surface);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid var(--color-surface);
    transition: all 0.15s ease;
}

.feature-card:hover {
    border-color: var(--color-purple);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: var(--color-bg-alt);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-green), var(--color-purple), transparent);
}

.contact-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form {
    background: var(--color-surface);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    border: 1px solid rgba(191, 0, 255, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.form-label {
    font-weight: 600;
    color: var(--color-text);
    font-size: 0.95rem;
}

.form-input,
.form-textarea {
    background: var(--color-bg);
    border: 2px solid var(--color-surface-hover);
    border-radius: var(--radius-md);
    padding: 1rem;
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-purple);
    box-shadow: 0 0 0 3px rgba(191, 0, 255, 0.2);
}

.form-textarea {
    min-height: 140px;
    resize: vertical;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--color-text-subtle);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--color-bg);
    padding: var(--spacing-lg) 0;
    text-align: center;
    border-top: 1px solid var(--color-surface);
}

.footer-brand {
    font-family: var(--font-graffiti);
    font-size: 2rem;
    color: var(--color-text);
    margin-bottom: var(--spacing-xs);
}

.footer-text {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: var(--spacing-sm);
}

.footer-text a {
    color: var(--color-green);
    font-weight: 600;
    text-decoration: none;
}

.footer-text a:hover {
    text-decoration: underline;
}

.footer-copy {
    color: var(--color-text-subtle);
    font-size: 0.85rem;
}

/* ===== HEAVENLY CLOUDS (Light Mode) ===== */
.heavenly-clouds {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    overflow: hidden;
}

[data-theme="light"] .heavenly-clouds {
    display: block;
}

.cloud {
    position: absolute;
    pointer-events: none;
}

.cloud-puff {
    position: absolute;
    background: radial-gradient(ellipse at 30% 30%,
            #FFFFFF 0%,
            #FFFFFF 60%,
            rgba(255, 255, 255, 0.95) 80%,
            rgba(255, 255, 255, 0.8) 100%);
    border-radius: 50%;
    box-shadow:
        0 0 20px rgba(255, 215, 0, 0.4),
        0 0 40px rgba(255, 200, 100, 0.3),
        0 0 60px rgba(255, 180, 50, 0.2),
        inset 0 -5px 20px rgba(255, 245, 220, 0.5);
    will-change: transform;
    animation: cloudGlow 4s ease-in-out infinite alternate;
}

@keyframes cloudGlow {
    0% {
        box-shadow:
            0 0 20px rgba(255, 215, 0, 0.3),
            0 0 40px rgba(255, 200, 100, 0.2),
            0 0 60px rgba(255, 180, 50, 0.15),
            inset 0 -5px 20px rgba(255, 245, 220, 0.5);
    }

    100% {
        box-shadow:
            0 0 30px rgba(255, 215, 0, 0.5),
            0 0 50px rgba(255, 200, 100, 0.4),
            0 0 70px rgba(255, 180, 50, 0.25),
            inset 0 -5px 20px rgba(255, 245, 220, 0.5);
    }
}

/* Cloud positions */
.cloud-1 {
    top: 5%;
    left: 5%;
}

.cloud-1 .cloud-puff:nth-child(1) {
    width: 140px;
    height: 90px;
    top: 25px;
    left: 0;
}

.cloud-1 .cloud-puff:nth-child(2) {
    width: 180px;
    height: 120px;
    top: 0;
    left: 70px;
}

.cloud-1 .cloud-puff:nth-child(3) {
    width: 120px;
    height: 80px;
    top: 35px;
    left: 170px;
}

.cloud-2 {
    top: 8%;
    right: 10%;
}

.cloud-2 .cloud-puff:nth-child(1) {
    width: 110px;
    height: 72px;
    top: 18px;
    left: 0;
}

.cloud-2 .cloud-puff:nth-child(2) {
    width: 145px;
    height: 95px;
    top: 0;
    left: 55px;
}

.cloud-2 .cloud-puff:nth-child(3) {
    width: 100px;
    height: 65px;
    top: 25px;
    left: 135px;
}

.cloud-3 {
    top: 15%;
    left: 35%;
}

.cloud-3 .cloud-puff:nth-child(1) {
    width: 90px;
    height: 58px;
    top: 15px;
    left: 0;
}

.cloud-3 .cloud-puff:nth-child(2) {
    width: 120px;
    height: 78px;
    top: 0;
    left: 45px;
}

.cloud-3 .cloud-puff:nth-child(3) {
    width: 80px;
    height: 52px;
    top: 20px;
    left: 110px;
}

.cloud-4 {
    top: 25%;
    right: 25%;
}

.cloud-4 .cloud-puff:nth-child(1) {
    width: 70px;
    height: 45px;
    top: 12px;
    left: 0;
}

.cloud-4 .cloud-puff:nth-child(2) {
    width: 95px;
    height: 62px;
    top: 0;
    left: 35px;
}

.cloud-4 .cloud-puff:nth-child(3) {
    width: 65px;
    height: 42px;
    top: 16px;
    left: 88px;
}

.cloud-5 {
    top: 35%;
    left: 15%;
}

.cloud-5 .cloud-puff:nth-child(1) {
    width: 85px;
    height: 55px;
    top: 14px;
    left: 0;
}

.cloud-5 .cloud-puff:nth-child(2) {
    width: 110px;
    height: 72px;
    top: 0;
    left: 42px;
}

.cloud-5 .cloud-puff:nth-child(3) {
    width: 75px;
    height: 48px;
    top: 18px;
    left: 102px;
}

.cloud-6 {
    top: 45%;
    right: 8%;
}

.cloud-6 .cloud-puff:nth-child(1) {
    width: 100px;
    height: 65px;
    top: 16px;
    left: 0;
}

.cloud-6 .cloud-puff:nth-child(2) {
    width: 130px;
    height: 85px;
    top: 0;
    left: 50px;
}

.cloud-6 .cloud-puff:nth-child(3) {
    width: 90px;
    height: 58px;
    top: 22px;
    left: 122px;
}

.cloud-7 {
    top: 55%;
    left: 50%;
}

.cloud-7 .cloud-puff:nth-child(1) {
    width: 65px;
    height: 42px;
    top: 10px;
    left: 0;
}

.cloud-7 .cloud-puff:nth-child(2) {
    width: 85px;
    height: 55px;
    top: 0;
    left: 32px;
}

.cloud-7 .cloud-puff:nth-child(3) {
    width: 55px;
    height: 36px;
    top: 14px;
    left: 78px;
}

.cloud-8 {
    top: 65%;
    left: 20%;
}

.cloud-8 .cloud-puff:nth-child(1) {
    width: 72px;
    height: 47px;
    top: 12px;
    left: 0;
}

.cloud-8 .cloud-puff:nth-child(2) {
    width: 95px;
    height: 62px;
    top: 0;
    left: 36px;
}

.cloud-8 .cloud-puff:nth-child(3) {
    width: 60px;
    height: 39px;
    top: 15px;
    left: 88px;
}

/* ============================================
   LIGHT THEME OVERRIDES - HEAVENLY GATES
   ============================================ */

/* Sky background - pure white */
[data-theme="light"] body {
    background: #FFFFFF;
}

/* Divine glow removed - was causing visible gradient strip */

/* Hero section */
[data-theme="light"] .hero {
    background: transparent;
    position: relative;
    z-index: 10;
}

/* Hide dark mode BLESSED text in light mode */
[data-theme="light"] .blessed-scatter {
    display: none;
}

[data-theme="light"] .hero-accent {
    background: radial-gradient(circle,
            rgba(255, 215, 0, 0.4) 0%,
            rgba(255, 200, 50, 0.2) 40%,
            transparent 70%);
    opacity: 0.8;
    filter: blur(60px);
}

/* Golden elements */
[data-theme="light"] .hero-tag {
    background: linear-gradient(135deg, #FFFAF0 0%, #FFF8DC 100%);
    border: 2px solid #B8860B;
    color: #5C4000;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.2);
}

[data-theme="light"] .section-tag {
    background: linear-gradient(135deg, #FFFAF0 0%, #FFF8DC 100%);
    border: 2px solid #B8860B;
    color: #5C4000;
}

[data-theme="light"] .hero-headline .highlight {
    background: linear-gradient(90deg,
            #5C4000 0%,
            #B8860B 25%,
            #FFD700 50%,
            #B8860B 75%,
            #5C4000 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 3s ease-in-out infinite;
    filter: drop-shadow(0 3px 6px rgba(92, 64, 0, 0.5));
}

@keyframes goldShimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

[data-theme="light"] .hero-subtext .brand-highlight {
    color: #5C4000;
}

/* Buttons */
[data-theme="light"] .btn-primary {
    background: linear-gradient(135deg, #B8860B 0%, #DAA520 50%, #B8860B 100%);
    color: #FFFAF0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border: 2px solid #B8860B;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

[data-theme="light"] .btn-primary:hover {
    box-shadow: 0 6px 25px rgba(184, 134, 11, 0.5);
}

[data-theme="light"] .btn-secondary {
    border: 2px solid #B8860B;
    color: #5C4000;
}

[data-theme="light"] .btn-secondary:hover {
    background: rgba(184, 134, 11, 0.1);
    border-color: #5C4000;
}

/* Cards - cloud-like styling */
[data-theme="light"] .price-card {
    background: #FFFFFF;
    border: none;
    border-radius: 40px;
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.06),
        0 5px 15px rgba(0, 0, 0, 0.04),
        inset 0 -5px 20px rgba(200, 210, 220, 0.3),
        inset 0 2px 10px rgba(255, 255, 255, 1);
}

[data-theme="light"] .price-card::before {
    background: linear-gradient(135deg, #B8860B 0%, #DAA520 100%);
}

[data-theme="light"] .price-card.featured {
    border-color: #B8860B;
}

[data-theme="light"] .card-badge {
    background: linear-gradient(135deg, #5C4000 0%, #8B6914 100%);
}

[data-theme="light"] .card-price {
    background: linear-gradient(135deg, #5C4000 0%, #8B6914 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="light"] .feature-card {
    background: #FFFFFF;
    border: none;
    border-radius: 40px;
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.06),
        0 5px 15px rgba(0, 0, 0, 0.04),
        inset 0 -5px 20px rgba(200, 210, 220, 0.3),
        inset 0 2px 10px rgba(255, 255, 255, 1);
}

[data-theme="light"] .feature-card:hover {
    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.08),
        0 8px 20px rgba(0, 0, 0, 0.05),
        inset 0 -5px 20px rgba(200, 210, 220, 0.3),
        inset 0 2px 10px rgba(255, 255, 255, 1);
    transform: none;
}

/* Sections - solid white */
[data-theme="light"] .menu-section,
[data-theme="light"] .why-section,
[data-theme="light"] .contact-section {
    background: #FFFFFF;
    position: relative;
    z-index: 10;
}

[data-theme="light"] .menu-section::before,
[data-theme="light"] .contact-section::before {
    background: linear-gradient(90deg, transparent, #B8860B, #DAA520, #B8860B, transparent);
    height: 2px;
}

/* Contact form */
[data-theme="light"] .contact-form {
    background: #FFFFFF;
    border-color: rgba(184, 134, 11, 0.2);
}

[data-theme="light"] .form-input,
[data-theme="light"] .form-textarea {
    background: #FAFAFA;
    border-color: #E0E0E0;
}

[data-theme="light"] .form-input:focus,
[data-theme="light"] .form-textarea:focus {
    border-color: #B8860B;
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.15);
}

/* Footer */
[data-theme="light"] .footer {
    background: #FFFFFF;
    border-top-color: rgba(184, 134, 11, 0.2);
    position: relative;
    z-index: 10;
}

[data-theme="light"] .footer-brand {
    color: #5C4000;
}

[data-theme="light"] .footer-text a {
    color: #5C4000;
}

/* Pricing note */
[data-theme="light"] .pricing-note {
    background: #FAFAFA;
    border-left-color: #B8860B;
}

/* Theme toggle */
[data-theme="light"] .theme-toggle {
    background: #FFFFFF;
    border-color: #B8860B;
    color: #5C4000;
}

[data-theme="light"] .theme-toggle:hover {
    background: #B8860B;
    color: #FFFFFF;
}

/* Hide graffiti in light mode */
[data-theme="light"] .graffiti-elements {
    display: none;
}

[data-theme="light"] .parallax-layer-1,
[data-theme="light"] .parallax-layer-2,
[data-theme="light"] .parallax-layer-3 {
    background: none !important;
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-surface);
    border-top: 1px solid var(--color-purple);
    padding: 1rem 1.5rem;
    z-index: 10001;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-consent p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    text-align: center;
    flex: 1 1 300px;
}

.cookie-consent a {
    color: var(--color-green);
    text-decoration: underline;
}

.cookie-consent-btn {
    padding: 0.6rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.15s ease;
}

.cookie-consent-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow-purple);
}

.cookie-consent.hidden {
    display: none;
}

/* Light mode cookie consent */
[data-theme="light"] .cookie-consent {
    background: #FFFFFF;
    border-top-color: #B8860B;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .cookie-consent a {
    color: #5C4000;
}

[data-theme="light"] .cookie-consent-btn {
    background: linear-gradient(135deg, #B8860B 0%, #DAA520 100%);
}

/* ===== FOOTER LINKS ===== */
.footer-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.15s ease;
}

.footer-links a:hover {
    color: var(--color-green);
}

[data-theme="light"] .footer-links a:hover {
    color: #5C4000;
}