@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Quicksand:wght@300;400;500;600;700&display=swap');

:root {
    --sky-light: #e8f4f8;
    --sky-med: #b8d4e3;
    --cloud-white: #ffffff;
    --wind-blue: #5a9bc7;
    --storm-dark: #2c3e50;
    --breeze-accent: #7ec8e3;
    --air-mist: #d1e8f0;
    --dawn-gold: #f4d03f;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    background: linear-gradient(180deg, var(--sky-light) 0%, var(--sky-med) 50%, var(--wind-blue) 100%);
    min-height: 100vh;
    color: var(--storm-dark);
    line-height: 1.7;
}

.breeze-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.92);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.breeze-overlay.blown-away {
    display: none;
}

.age-cloud {
    background: var(--cloud-white);
    border-radius: 30px;
    padding: 3rem;
    max-width: 480px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.age-cloud h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--wind-blue);
    margin-bottom: 1rem;
}

.age-cloud p {
    margin-bottom: 1rem;
    color: var(--storm-dark);
}

.wind-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.wind-btn {
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.wind-btn.calm {
    background: linear-gradient(135deg, var(--wind-blue), var(--breeze-accent));
    color: white;
}

.wind-btn.calm:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(90, 155, 199, 0.5);
}

.wind-btn.gust {
    background: var(--sky-med);
    color: var(--storm-dark);
}

.wind-btn.gust:hover {
    background: var(--air-mist);
}

.blocked-wind {
    display: none;
}

.blocked-wind h2 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--storm-dark);
    margin-bottom: 1rem;
}

.sky-header {
    background: linear-gradient(135deg, var(--storm-dark), #3d5a73);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.header-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wind-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.wind-logo svg {
    width: 45px;
    height: 45px;
}

.wind-logo span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--cloud-white);
    letter-spacing: 2px;
}

.sky-nav {
    display: flex;
    gap: 2rem;
}

.sky-nav a {
    color: var(--sky-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.sky-nav a:hover {
    color: var(--dawn-gold);
}

.cloud-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
}

.cloud-menu div {
    width: 28px;
    height: 3px;
    background: var(--cloud-white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.wind-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100%;
    background: linear-gradient(180deg, var(--storm-dark), #3d5a73);
    z-index: 9998;
    transition: right 0.4s ease;
    padding: 5rem 2rem;
}

.wind-panel.drifted {
    right: 0;
}

.wind-panel a {
    display: block;
    color: var(--cloud-white);
    text-decoration: none;
    padding: 1rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
}

.wind-panel a:hover {
    color: var(--dawn-gold);
}

.panel-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--cloud-white);
    cursor: pointer;
}

.main-sky {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-cloud {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.4));
    border-radius: 40px;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.hero-cloud h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--storm-dark);
    margin-bottom: 1.5rem;
}

.hero-cloud p {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: var(--storm-dark);
}

.spin-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--wind-blue), var(--breeze-accent));
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(90, 155, 199, 0.4);
}

.spin-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(90, 155, 199, 0.5);
}

.sky-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.sbadge {
    background: rgba(44, 62, 80, 0.1);
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--storm-dark);
}

.wheel-section {
    margin-bottom: 3rem;
}

.wheel-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--storm-dark);
}

.wheel-frame {
    background: var(--cloud-white);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.wheel-frame iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 12px;
}

.drift-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.drift-card {
    background: var(--cloud-white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.drift-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.drift-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.drift-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--wind-blue);
    margin-bottom: 0.8rem;
}

.drift-card p {
    color: var(--storm-dark);
    font-size: 0.95rem;
}

.cloud-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.5));
    border-radius: 30px;
    padding: 3rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(8px);
}

.cloud-box h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--storm-dark);
    margin-bottom: 1.5rem;
}

.cloud-box p {
    margin-bottom: 1rem;
    color: var(--storm-dark);
}

.policy-content {
    background: var(--cloud-white);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.policy-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--storm-dark);
    margin-bottom: 2rem;
}

.policy-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--wind-blue);
    margin: 2rem 0 1rem;
}

.policy-content p {
    margin-bottom: 1rem;
}

.policy-content ul {
    margin: 1rem 0 1rem 2rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
}

.horizon-footer {
    background: var(--storm-dark);
    padding: 3rem 2rem;
    margin-top: 3rem;
}

.horizon-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.horizon-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.horizon-nav a {
    color: var(--sky-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.horizon-nav a:hover {
    color: var(--dawn-gold);
}

.support-clouds {
    margin-bottom: 1.5rem;
}

.support-clouds p {
    color: var(--sky-med);
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.support-clouds a {
    color: var(--breeze-accent);
    text-decoration: none;
    margin: 0 0.5rem;
}

.support-clouds a:hover {
    color: var(--dawn-gold);
}

.sky-copy {
    color: var(--sky-med);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .sky-nav {
        display: none;
    }

    .cloud-menu {
        display: flex;
    }

    .header-wrap {
        padding: 0 1rem;
    }

    .wind-logo span {
        font-size: 1.4rem;
    }

    .hero-cloud {
        padding: 2.5rem 1.5rem;
        border-radius: 25px;
    }

    .hero-cloud h1 {
        font-size: 2rem;
    }

    .hero-cloud p {
        font-size: 1rem;
    }

    .wheel-frame iframe {
        height: 450px;
    }

    .main-sky {
        padding: 1rem;
    }

    .policy-content {
        padding: 2rem 1.5rem;
    }

    .policy-content h1 {
        font-size: 2rem;
    }

    .cloud-box {
        padding: 2rem;
        border-radius: 20px;
    }

    .age-cloud {
        margin: 1rem;
        padding: 2rem;
    }

    .wind-btns {
        flex-direction: column;
    }
}
