/* Valeryth - Sunset Desert Theme */
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Source+Sans+Pro:wght@300;400;600;700&display=swap');

:root {
    --sunset-orange: #ff6b35;
    --desert-sand: #f7c59f;
    --twilight-purple: #2d132c;
    --warm-coral: #eb5e55;
    --golden-hour: #ffc857;
    --night-indigo: #1a1423;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    background: linear-gradient(180deg, var(--twilight-purple), var(--night-indigo));
    color: var(--desert-sand);
    min-height: 100vh;
    line-height: 1.7;
}

/* Warm Header */
.warm-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(26, 20, 35, 0.95);
    border-bottom: 2px solid var(--sunset-orange);
}

.header-row {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.warm-logo {
    font-family: 'Abril Fatface', cursive;
    font-size: 2.2rem;
    color: var(--golden-hour);
    text-decoration: none;
    letter-spacing: 2px;
}

.sunset-nav {
    display: flex;
    gap: 2.5rem;
}

.sunset-nav a {
    color: var(--desert-sand);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s;
}

.sunset-nav a:hover {
    color: var(--sunset-orange);
}

.warm-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.warm-menu span {
    width: 28px;
    height: 3px;
    background: var(--golden-hour);
    border-radius: 2px;
    transition: all 0.3s;
}

.warm-menu.open span:first-child {
    transform: rotate(45deg) translate(5px, 6px);
}

.warm-menu.open span:nth-child(2) {
    opacity: 0;
}

.warm-menu.open span:last-child {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Desert Hero */
.desert-hero {
    min-height: 100vh;
    padding: 100px 2rem 60px;
    background: 
        linear-gradient(to bottom, rgba(26, 20, 35, 0.4), var(--night-indigo)),
        radial-gradient(ellipse at top, rgba(255, 107, 53, 0.2) 0%, transparent 60%);
    display: flex;
    align-items: center;
}

.hero-split {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-left h1 {
    font-family: 'Abril Fatface', cursive;
    font-size: 3.5rem;
    color: var(--golden-hour);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-left p {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--desert-sand);
    opacity: 0.9;
}

.sunset-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(90deg, var(--warm-coral), var(--sunset-orange));
    color: var(--night-indigo);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.4s;
    box-shadow: 0 4px 30px rgba(255, 107, 53, 0.4);
}

.sunset-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(255, 107, 53, 0.5);
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-strip {
    background: rgba(255, 107, 53, 0.1);
    border-left: 4px solid var(--sunset-orange);
    padding: 1.5rem;
    border-radius: 0 10px 10px 0;
}

.info-strip h4 {
    color: var(--golden-hour);
    margin-bottom: 0.4rem;
    font-weight: 700;
}

.info-strip p {
    font-size: 0.95rem;
    font-weight: 300;
}

/* Game Oasis */
.game-oasis {
    padding: 5rem 2rem;
    background: rgba(45, 19, 44, 0.5);
}

.oasis-title {
    font-family: 'Abril Fatface', cursive;
    font-size: 2.5rem;
    color: var(--golden-hour);
    text-align: center;
    margin-bottom: 2rem;
}

.game-dune {
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(26, 20, 35, 0.8);
    border: 3px solid var(--sunset-orange);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(255, 107, 53, 0.2);
}

.game-dune iframe {
    width: 100%;
    height: 620px;
    border: none;
}

/* Sunset Features */
.sunset-features {
    padding: 5rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.feature-row {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.sun-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background: linear-gradient(145deg, rgba(45, 19, 44, 0.8), rgba(26, 20, 35, 0.9));
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s;
}

.sun-card:hover {
    transform: translateY(-10px);
    border-color: var(--golden-hour);
    box-shadow: 0 20px 50px rgba(255, 200, 87, 0.1);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.sun-card h3 {
    font-family: 'Abril Fatface', cursive;
    color: var(--sunset-orange);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.sun-card p {
    font-weight: 300;
    line-height: 1.7;
}

/* About Horizon */
.about-horizon {
    padding: 5rem 2rem;
    background: linear-gradient(to top, transparent, rgba(255, 107, 53, 0.05));
}

.horizon-inner {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.about-horizon h2 {
    font-family: 'Abril Fatface', cursive;
    color: var(--golden-hour);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-horizon p {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

/* Footer */
.warm-footer {
    background: rgba(0, 0, 0, 0.5);
    padding: 2.5rem 2rem;
    border-top: 2px solid var(--sunset-orange);
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.resp-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.resp-links a {
    color: var(--golden-hour);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.resp-links a:hover {
    color: var(--desert-sand);
}

.footer-small {
    color: var(--desert-sand);
    opacity: 0.6;
    font-size: 0.85rem;
}

/* Age Modal */
.age-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.age-modal.hidden {
    display: none;
}

.age-card {
    background: linear-gradient(145deg, var(--twilight-purple), var(--night-indigo));
    border: 3px solid var(--sunset-orange);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 480px;
    width: 90%;
    box-shadow: 0 0 80px rgba(255, 107, 53, 0.3);
}

.age-card h2 {
    font-family: 'Abril Fatface', cursive;
    color: var(--golden-hour);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.age-card p {
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.7;
}

.age-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-yes {
    padding: 1rem 2.5rem;
    background: linear-gradient(90deg, var(--warm-coral), var(--sunset-orange));
    color: var(--night-indigo);
    border: none;
    border-radius: 50px;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.btn-yes:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
}

.btn-no {
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--desert-sand);
    border: 2px solid var(--desert-sand);
    border-radius: 50px;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.btn-no:hover {
    border-color: var(--golden-hour);
    color: var(--golden-hour);
}

/* Inner Pages */
.inner-content {
    padding: 110px 2rem 60px;
    min-height: 100vh;
}

.content-box {
    max-width: 900px;
    margin: 0 auto;
}

.inner-content h1 {
    font-family: 'Abril Fatface', cursive;
    color: var(--golden-hour);
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.inner-content h2 {
    font-family: 'Abril Fatface', cursive;
    color: var(--sunset-orange);
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
}

.inner-content p {
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.inner-content ul {
    margin: 0 0 1.5rem 1.5rem;
}

.inner-content li {
    margin-bottom: 0.6rem;
    font-weight: 300;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-split {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-right {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .warm-menu {
        display: flex;
    }

    .sunset-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--night-indigo);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateX(-100%);
        transition: transform 0.3s;
        border-bottom: 2px solid var(--sunset-orange);
    }

    .sunset-nav.visible {
        transform: translateX(0);
    }

    .hero-left h1 {
        font-size: 2.5rem;
    }

    .game-dune iframe {
        height: 450px;
    }
}

@media (max-width: 480px) {
    .warm-logo {
        font-size: 1.7rem;
    }

    .hero-left h1 {
        font-size: 2rem;
    }

    .game-dune iframe {
        height: 380px;
    }

    .age-options {
        flex-direction: column;
    }
}
