/* sora.markets - Flat-Design Pastoral Futurism */

/* ===== GLOBAL RESET AND BASE ===== */

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

html {
    scroll-snap-type: y proximity;
    scroll-behavior: smooth;
}

body {
    font-family: 'Lora', serif;
    background-color: #ffffff;
    color: #404038;
    text-rendering: optimizeLegibility;
    font-feature-settings: 'liga' 1, 'kern' 1;
    line-height: 1.7;
}

/* ===== MONOCHROME PALETTE ===== */
/*
Parchment White: #ffffff
Almanac Cream: #f5f5f0
Morning Mist: #e0e0da
Fallow Gray: #b0b0a8
Stone: #808078
Charcoal Earth: #404038
Deep Loam: #1a1a16
Ink Black: #0a0a08
*/

/* ===== MAIN CONTAINER ===== */

#main-container {
    width: 100%;
    overflow-x: hidden;
}

/* ===== SECTION BASE STYLES ===== */

.section {
    scroll-snap-align: start;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

/* ===== COVER SECTION (Section 1) ===== */

.section.cover {
    background-color: #ffffff;
    height: 100vh;
    position: relative;
}

.cover-content {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 960px;
    margin: 0 auto;
}

.domain-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 600;
    color: #0a0a08;
    letter-spacing: -0.02em;
    font-variant-ligatures: discretionary-ligatures;
    animation: fadeInName 1.2s ease-out 0.2s both;
}

@keyframes fadeInName {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.geometric-composition {
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shape {
    position: absolute;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
    animation: fadeInShape 1s ease-out forwards;
}

.shape-1 {
    width: 120px;
    height: 120px;
    background-color: #e0e0da;
    border-radius: 50%;
    animation-delay: 0.1s;
    top: 10%;
    left: 10%;
}

.shape-2 {
    width: 80px;
    height: 80px;
    background-color: #b0b0a8;
    border-radius: 0;
    animation-delay: 0.2s;
    top: 15%;
    right: 15%;
}

.shape-3 {
    width: 100px;
    height: 60px;
    background-color: #808078;
    border-radius: 0;
    animation-delay: 0.3s;
    bottom: 20%;
    left: 20%;
}

.shape-4 {
    width: 90px;
    height: 90px;
    background-color: #1a1a16;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation-delay: 0.4s;
    top: 40%;
    left: 35%;
}

.shape-5 {
    width: 70px;
    height: 140px;
    background-color: #e0e0da;
    border-radius: 0;
    animation-delay: 0.5s;
    bottom: 10%;
    right: 25%;
}

.shape-6 {
    width: 60px;
    height: 60px;
    background-color: #808078;
    border-radius: 50%;
    animation-delay: 0.6s;
    top: 25%;
    right: 30%;
}

.shape-7 {
    width: 110px;
    height: 50px;
    background-color: #b0b0a8;
    border-radius: 0;
    animation-delay: 0.7s;
    bottom: 30%;
    right: 10%;
}

.shape-8 {
    width: 40px;
    height: 40px;
    background-color: #404038;
    border-radius: 50%;
    animation-delay: 0.8s;
    top: 60%;
    right: 20%;
}

@keyframes fadeInShape {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ===== FORECAST SECTION (Section 2) ===== */

.section.forecast {
    background-color: #f5f5f0;
    height: 100vh;
}

.forecast-content {
    display: flex;
    width: 100%;
    max-width: 1200px;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 0 2rem;
    margin: 0 auto;
}

.forecast-left-bars,
.forecast-right-bars {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-shrink: 0;
}

.bar {
    height: 3px;
    border-radius: 0;
}

.bar-1 { width: 20px; background-color: #b0b0a8; }
.bar-2 { width: 35px; background-color: #808078; }
.bar-3 { width: 15px; background-color: #e0e0da; }
.bar-4 { width: 40px; background-color: #b0b0a8; }
.bar-5 { width: 25px; background-color: #808078; }
.bar-6 { width: 30px; background-color: #808078; }
.bar-7 { width: 18px; background-color: #b0b0a8; }
.bar-8 { width: 45px; background-color: #e0e0da; }
.bar-9 { width: 22px; background-color: #808078; }
.bar-10 { width: 38px; background-color: #b0b0a8; }

.forecast-text {
    max-width: 38ch;
    flex: 0 0 auto;
}

.forecast-text p {
    font-family: 'Lora', serif;
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    line-height: 1.7;
    color: #404038;
    text-align: left;
    hyphens: auto;
}

/* ===== GARDEN SECTION (Section 3) ===== */

.section.garden {
    background-color: #ffffff;
    min-height: 100vh;
    padding: 4rem 2rem;
}

.garden-content {
    max-width: 960px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.panel {
    width: 100%;
    min-height: 200px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 3px solid;
    transition: background-color 0.3s ease;
}

.panel-1 {
    background-color: #e0e0da;
    border-left-color: #b0b0a8;
    color: #1a1a16;
}

.panel-2 {
    background-color: #b0b0a8;
    border-left-color: #808078;
    color: #ffffff;
}

.panel-3 {
    background-color: #e0e0da;
    border-left-color: #b0b0a8;
    color: #1a1a16;
}

.panel-4 {
    background-color: #b0b0a8;
    border-left-color: #808078;
    color: #ffffff;
}

.panel-5 {
    background-color: #e0e0da;
    border-left-color: #b0b0a8;
    color: #1a1a16;
}

.panel-6 {
    background-color: #b0b0a8;
    border-left-color: #808078;
    color: #ffffff;
}

.panel h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.panel p {
    font-family: 'Lora', serif;
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    line-height: 1.7;
    opacity: 0.95;
}

/* ===== SECTION DIVIDER ===== */

.section-divider {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    scroll-snap-align: start;
}

.diamond-glyph {
    width: 12px;
    height: 12px;
    background-color: #b0b0a8;
    transform: rotate(45deg);
    cursor: pointer;
    transition: all 0.3s ease;
}

.diamond-glyph:hover {
    background-color: #808078;
    transform: rotate(45deg) scale(1.2);
}

/* ===== HORIZON SECTION (Section 4) ===== */

.section.horizon {
    background: linear-gradient(180deg, #f5f5f0 0%, #ffffff 100%);
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.horizon-composition {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.drift-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.circle-1 {
    width: 100px;
    height: 100px;
    background-color: #e0e0da;
    top: 15%;
    left: 20%;
    animation: drift 60s linear infinite;
}

.circle-2 {
    width: 70px;
    height: 70px;
    background-color: #b0b0a8;
    top: 30%;
    right: 25%;
    animation: drift 58s linear infinite;
}

.circle-3 {
    width: 120px;
    height: 120px;
    background-color: #808078;
    bottom: 20%;
    left: 15%;
    animation: drift 65s linear infinite;
}

.circle-4 {
    width: 80px;
    height: 80px;
    background-color: #404038;
    top: 50%;
    right: 10%;
    animation: drift 62s linear infinite;
}

.circle-5 {
    width: 60px;
    height: 60px;
    background-color: #e0e0da;
    bottom: 30%;
    right: 30%;
    animation: drift 59s linear infinite;
}

.circle-6 {
    width: 90px;
    height: 90px;
    background-color: #b0b0a8;
    top: 25%;
    left: 50%;
    animation: drift 61s linear infinite;
}

.circle-7 {
    width: 50px;
    height: 50px;
    background-color: #1a1a16;
    bottom: 15%;
    left: 40%;
    animation: drift 57s linear infinite;
}

@keyframes drift {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-30px);
    }
}

.horizon-text {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 38ch;
    padding: 2rem;
}

.horizon-text p {
    font-family: 'Lora', serif;
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    font-style: italic;
    color: #404038;
    line-height: 1.7;
}

/* ===== TYPOGRAPHY UTILITIES ===== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #1a1a16;
}

p {
    hyphens: auto;
    text-align: left;
}

em {
    font-style: italic;
    color: #404038;
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 768px) {
    .forecast-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .forecast-left-bars,
    .forecast-right-bars {
        order: 2;
        width: 100%;
        flex-direction: row;
        gap: 0.3rem;
        justify-content: center;
    }

    .forecast-text {
        order: 1;
        max-width: 100%;
    }

    .panel {
        min-height: 150px;
        padding: 1.5rem;
    }

    .section.garden {
        padding: 2rem 1rem;
    }

    .cover-content {
        gap: 1.5rem;
    }

    .geometric-composition {
        height: 250px;
    }

    .shape-1 { width: 80px; height: 80px; }
    .shape-2 { width: 60px; height: 60px; }
    .shape-3 { width: 70px; height: 40px; }
    .shape-4 { width: 60px; height: 60px; }
    .shape-5 { width: 50px; height: 100px; }
    .shape-6 { width: 45px; height: 45px; }
    .shape-7 { width: 80px; height: 40px; }
    .shape-8 { width: 30px; height: 30px; }

    .circle-1 { width: 70px; height: 70px; }
    .circle-2 { width: 50px; height: 50px; }
    .circle-3 { width: 80px; height: 80px; }
    .circle-4 { width: 60px; height: 60px; }
    .circle-5 { width: 40px; height: 40px; }
    .circle-6 { width: 65px; height: 65px; }
    .circle-7 { width: 35px; height: 35px; }
}

@media (max-width: 480px) {
    .section {
        min-height: auto;
        padding: 2rem 1rem;
    }

    .section.cover {
        min-height: 100vh;
    }

    .domain-name {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .geometric-composition {
        height: 200px;
    }

    .shape-1 { width: 60px; height: 60px; }
    .shape-2 { width: 45px; height: 45px; }
    .shape-3 { width: 50px; height: 30px; }
    .shape-4 { width: 45px; height: 45px; }
    .shape-5 { width: 35px; height: 70px; }
    .shape-6 { width: 35px; height: 35px; }
    .shape-7 { width: 60px; height: 30px; }
    .shape-8 { width: 25px; height: 25px; }

    .forecast-content {
        gap: 1rem;
    }

    .bar-1 { width: 15px; }
    .bar-2 { width: 25px; }
    .bar-3 { width: 10px; }
    .bar-4 { width: 30px; }
    .bar-5 { width: 18px; }
    .bar-6 { width: 20px; }
    .bar-7 { width: 12px; }
    .bar-8 { width: 32px; }
    .bar-9 { width: 15px; }
    .bar-10 { width: 28px; }

    .panel {
        min-height: 120px;
        padding: 1rem;
    }

    .panel h3 {
        font-size: clamp(1.2rem, 4vw, 1.8rem);
    }

    .section.horizon {
        min-height: 100vh;
    }

    .circle-1 { width: 50px; height: 50px; }
    .circle-2 { width: 35px; height: 35px; }
    .circle-3 { width: 60px; height: 60px; }
    .circle-4 { width: 45px; height: 45px; }
    .circle-5 { width: 30px; height: 30px; }
    .circle-6 { width: 45px; height: 45px; }
    .circle-7 { width: 25px; height: 25px; }
}

/* ===== CURSOR FOLLOW STYLES ===== */

.shape {
    will-change: transform;
}

/* ===== NO ACCESSIBILITY OVERRIDES ===== */
/* Skipping focus styles, ARIA styling, and accessibility features as per design requirements */
