/* ==========================================================
   DREAMNATURE — COMING SOON
   Premium Nature / NGO Landing Page
========================================================== */


/* ==========================================================
   ROOT
========================================================== */

:root {

    --forest-950: #071b13;
    --forest-900: #0b281c;
    --forest-800: #123b2a;
    --forest-700: #1a4b34;
    --forest-600: #276443;

    --sage: #8eaf8e;
    --sage-light: #c7d9c1;

    --cream: #f4f1e8;
    --white: #ffffff;

    --gold: #d8b66a;

    --text-light: rgba(255, 255, 255, .92);
    --text-muted: rgba(255, 255, 255, .67);

    --glass: rgba(255, 255, 255, .095);
    --glass-border: rgba(255, 255, 255, .16);

    --shadow:
        0 30px 80px rgba(0, 0, 0, .30);

    --transition:
        all .35s cubic-bezier(.2, .8, .2, 1);

}


/* ==========================================================
   RESET
========================================================== */

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


html {
    scroll-behavior: smooth;
}


body {

    min-height: 100vh;

    font-family:
        "DM Sans",
        sans-serif;

    color: var(--white);

    background:
        var(--forest-950);

    overflow-x: hidden;

}


a {
    color: inherit;
    text-decoration: none;
}


button,
a {
    -webkit-tap-highlight-color: transparent;
}


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

.container {

    width: min(
        1180px,
        calc(100% - 48px)
    );

    margin-inline: auto;

}


/* ==========================================================
   BACKGROUND
========================================================== */

.background {

    position: fixed;

    inset: 0;

    z-index: -10;

    overflow: hidden;

}


.background-image {

    position: absolute;

    inset: -3%;

    background-image:
        url("https://images.unsplash.com/photo-1448375240586-882707db888b?auto=format&fit=crop&w=2400&q=90");

    background-position: center;

    background-size: cover;

    transform:
        scale(1.04);

    animation:
        slowZoom 18s ease-in-out infinite alternate;

}


.background-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(4, 25, 17, .94) 0%,
            rgba(7, 30, 20, .83) 38%,
            rgba(7, 30, 20, .52) 68%,
            rgba(3, 20, 13, .73) 100%
        );

}


.background-gradient {

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 78% 48%,
            rgba(118, 158, 104, .18),
            transparent 32%
        ),

        linear-gradient(
            180deg,
            rgba(4, 20, 13, .28),
            rgba(4, 20, 13, .85)
        );

}


.noise {

    position: absolute;

    inset: 0;

    opacity: .04;

    pointer-events: none;

    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");

}


@keyframes slowZoom {

    from {
        transform: scale(1.04);
    }

    to {
        transform: scale(1.10);
    }

}


/* ==========================================================
   HEADER
========================================================== */

.site-header {

    position: relative;

    z-index: 10;

    padding:
        30px 0;

}


.header-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.brand {

    display: flex;

    align-items: center;

    gap: 13px;

}


.brand-symbol {

    width: 47px;

    height: 47px;

    display: grid;

    place-items: center;

    border-radius: 15px;

    background:
        rgba(255, 255, 255, .12);

    border:
        1px solid rgba(255, 255, 255, .20);

    backdrop-filter:
        blur(14px);

    font-size: 22px;

    color: var(--sage-light);

    box-shadow:
        0 12px 35px rgba(0, 0, 0, .18);

}


.brand-text {

    display: flex;

    flex-direction: column;

    gap: 2px;

}


.brand-name {

    font-size: 17px;

    font-weight: 700;

    letter-spacing: .16em;

}


.brand-tagline {

    font-size: 7px;

    letter-spacing: .29em;

    color: var(--sage-light);

    font-weight: 600;

}


.header-contact {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 10px 16px;

    border:
        1px solid rgba(255, 255, 255, .16);

    border-radius: 100px;

    background:
        rgba(255, 255, 255, .06);

    backdrop-filter:
        blur(12px);

    color:
        rgba(255, 255, 255, .88);

    font-size: 13px;

    transition: var(--transition);

}


.header-contact:hover {

    background:
        rgba(255, 255, 255, .14);

    transform:
        translateY(-2px);

}


.contact-icon {

    width: 26px;

    height: 26px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, .11);

}


/* ==========================================================
   HERO
========================================================== */

.hero {

    min-height:
        calc(100vh - 160px);

    display:
        flex;

    align-items:
        center;

    padding:
        45px 0 70px;

}


.hero-container {

    display: grid;

    grid-template-columns:
        1.05fr .95fr;

    align-items: center;

    gap: 90px;

}


.hero-content {

    max-width: 650px;

    animation:
        heroIn .9s ease both;

}


@keyframes heroIn {

    from {

        opacity: 0;

        transform:
            translateY(28px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


/* ==========================================================
   STATUS
========================================================== */

.status-pill {

    width: fit-content;

    display: flex;

    align-items: center;

    gap: 10px;

    padding:
        9px 14px;

    border:
        1px solid rgba(255, 255, 255, .15);

    border-radius: 100px;

    background:
        rgba(255, 255, 255, .07);

    backdrop-filter:
        blur(12px);

    color:
        rgba(255, 255, 255, .75);

    font-size: 12px;

    letter-spacing: .04em;

    margin-bottom: 27px;

}


.status-dot {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background:
        #a8c997;

    box-shadow:
        0 0 0 5px rgba(168, 201, 151, .12);

    animation:
        pulse 2s infinite;

}


@keyframes pulse {

    0%,
    100% {
        box-shadow:
            0 0 0 4px rgba(168, 201, 151, .12);
    }

    50% {
        box-shadow:
            0 0 0 9px rgba(168, 201, 151, .02);
    }

}


/* ==========================================================
   HEADING
========================================================== */

.hero h1 {

    max-width: 690px;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(
            54px,
            6.3vw,
            92px
        );

    font-weight: 600;

    line-height: .98;

    letter-spacing:
        -.045em;

    margin-bottom: 30px;

}


.hero h1 span {

    color:
        var(--sage-light);

    font-style:
        italic;

}


/* ==========================================================
   DESCRIPTION
========================================================== */

.hero-description {

    max-width: 590px;

    color:
        var(--text-muted);

    font-size: 16px;

    line-height: 1.85;

}


/* ==========================================================
   SLOGAN
========================================================== */

.slogan {

    display: flex;

    align-items: center;

    gap: 13px;

    margin:
        28px 0;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .19em;

    color:
        rgba(255, 255, 255, .82);

}


.slogan-line {

    width: 35px;

    height: 1px;

    background:
        var(--gold);

}


/* ==========================================================
   BUTTONS
========================================================== */

.hero-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

}


.btn {

    min-height: 50px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 11px;

    padding:
        0 20px;

    border-radius: 100px;

    font-size: 13px;

    font-weight: 700;

    transition:
        var(--transition);

}


.btn-primary {

    color:
        var(--forest-950);

    background:
        var(--cream);

}


.btn-primary:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 14px 35px rgba(0, 0, 0, .24);

}


.btn-primary i {

    font-size: 16px;

}


.btn-secondary {

    color:
        rgba(255, 255, 255, .92);

    background:
        rgba(255, 255, 255, .08);

    border:
        1px solid rgba(255, 255, 255, .18);

    backdrop-filter:
        blur(12px);

}


.btn-secondary:hover {

    background:
        rgba(255, 255, 255, .15);

    transform:
        translateY(-3px);

}


/* ==========================================================
   QUICK LINKS
========================================================== */

.quick-links {

    display: flex;

    gap: 24px;

    margin-top: 28px;

}


.quick-links a {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    color:
        rgba(255, 255, 255, .52);

    font-size: 12px;

    transition:
        var(--transition);

}


.quick-links a:hover {

    color:
        var(--white);

}


.quick-links i {

    font-size: 11px;

}


/* ==========================================================
   HERO CARD
========================================================== */

.hero-card-wrapper {

    position: relative;

    display: flex;

    justify-content: center;

    animation:
        cardIn 1s .15s ease both;

}


@keyframes cardIn {

    from {

        opacity: 0;

        transform:
            translateY(35px)
            scale(.96);

    }

    to {

        opacity: 1;

        transform:
            translateY(0)
            scale(1);

    }

}


.hero-card {

    width:
        min(100%, 470px);

    padding:
        30px;

    border:
        1px solid var(--glass-border);

    border-radius:
        28px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, .14),
            rgba(255, 255, 255, .045)
        );

    backdrop-filter:
        blur(24px);

    box-shadow:
        var(--shadow);

    position: relative;

    z-index: 2;

}


.card-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-bottom:
        24px;

    border-bottom:
        1px solid rgba(255, 255, 255, .10);

}


.mini-label {

    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .20em;

    color:
        rgba(255, 255, 255, .55);

}


.mini-icon {

    width: 31px;

    height: 31px;

    display: grid;

    place-items: center;

    border-radius: 10px;

    background:
        rgba(157, 192, 139, .14);

    color:
        var(--sage-light);

    font-size: 15px;

}


.card-number {

    color:
        rgba(255, 255, 255, .27);

    font-size: 11px;

    font-weight: 600;

}


.card-content {

    padding:
        29px 0;

}


.card-content h2 {

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(29px, 3vw, 40px);

    line-height:
        1.08;

    font-weight:
        500;

    letter-spacing:
        -.025em;

    margin-bottom:
        17px;

}


.card-content p {

    color:
        rgba(255, 255, 255, .60);

    font-size:
        13px;

    line-height:
        1.8;

}


/* ==========================================================
   FOCUS LIST
========================================================== */

.focus-list {

    display:
        grid;

    gap:
        10px;

}


.focus-item {

    display:
        flex;

    align-items:
        center;

    gap:
        13px;

    padding:
        12px;

    border:
        1px solid rgba(255, 255, 255, .07);

    border-radius:
        15px;

    background:
        rgba(0, 0, 0, .10);

    transition:
        var(--transition);

}


.focus-item:hover {

    background:
        rgba(255, 255, 255, .08);

    transform:
        translateX(4px);

}


.focus-icon {

    width:
        39px;

    height:
        39px;

    flex-shrink: 0;

    display:
        grid;

    place-items: center;

    border-radius:
        12px;

    background:
        rgba(161, 191, 143, .10);

    color:
        var(--sage-light);

}


.focus-item strong {

    display:
        block;

    font-size:
        12px;

    margin-bottom:
        2px;

}


.focus-item span {

    display:
        block;

    color:
        rgba(255, 255, 255, .43);

    font-size:
        10px;

}


.card-footer {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    margin-top:
        25px;

    padding-top:
        20px;

    border-top:
        1px solid rgba(255, 255, 255, .10);

    color:
        rgba(255, 255, 255, .43);

    font-size:
        10px;

    letter-spacing:
        .08em;

}


.footer-arrow {

    width:
        30px;

    height:
        30px;

    display:
        grid;

    place-items:
        center;

    border:
        1px solid rgba(255, 255, 255, .13);

    border-radius:
        50%;

}


/* ==========================================================
   ORBIT DECORATION
========================================================== */

.orbit {

    position:
        absolute;

    width:
        430px;

    height:
        430px;

    border:
        1px solid rgba(173, 199, 151, .11);

    border-radius:
        50%;

    right:
        -85px;

    top:
        -85px;

    z-index:
        0;

    animation:
        rotate 25s linear infinite;

}


.orbit::before {

    content:
        "";

    position:
        absolute;

    inset:
        42px;

    border:
        1px dashed rgba(173, 199, 151, .08);

    border-radius:
        50%;

}


.orbit-dot {

    position:
        absolute;

    width:
        9px;

    height:
        9px;

    border-radius:
        50%;

    background:
        var(--sage-light);

    top:
        45px;

    left:
        70px;

    box-shadow:
        0 0 25px rgba(194, 220, 178, .55);

}


@keyframes rotate {

    to {
        transform:
            rotate(360deg);
    }

}


/* ==========================================================
   FLOATING LEAVES
========================================================== */

.floating-leaf {

    position:
        fixed;

    color:
        rgba(193, 215, 179, .12);

    font-size:
        70px;

    z-index:
        -1;

    pointer-events:
        none;

}


.leaf-one {

    right:
        4%;

    bottom:
        18%;

    transform:
        rotate(25deg);

    animation:
        floatOne 7s ease-in-out infinite;

}


.leaf-two {

    left:
        2%;

    top:
        30%;

    font-size:
        48px;

    animation:
        floatTwo 8s ease-in-out infinite;

}


.leaf-three {

    right:
        35%;

    top:
        9%;

    font-size:
        35px;

    animation:
        floatThree 6s ease-in-out infinite;

}


@keyframes floatOne {

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

    50% {
        transform:
            translateY(-20px)
            rotate(37deg);
    }

}


@keyframes floatTwo {

    0%,
    100% {
        transform:
            translateY(0)
            rotate(-15deg);
    }

    50% {
        transform:
            translateY(25px)
            rotate(3deg);
    }

}


@keyframes floatThree {

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

    50% {
        transform:
            translateY(-15px)
            rotate(20deg);
    }

}


/* ==========================================================
   INFO STRIP
========================================================== */

.info-strip {

    position:
        relative;

    border-top:
        1px solid rgba(255, 255, 255, .09);

    border-bottom:
        1px solid rgba(255, 255, 255, .09);

    background:
        rgba(3, 18, 12, .32);

    backdrop-filter:
        blur(15px);

}


.info-grid {

    display:
        grid;

    grid-template-columns:
        repeat(4, 1fr);

}


.info-item {

    display:
        flex;

    align-items:
        center;

    gap:
        12px;

    padding:
        20px 22px;

    border-right:
        1px solid rgba(255, 255, 255, .07);

}


.info-item:last-child {

    border-right:
        0;

}


.info-icon {

    width:
        36px;

    height:
        36px;

    display:
        grid;

    place-items:
        center;

    border-radius:
        11px;

    background:
        rgba(255, 255, 255, .06);

    color:
        var(--sage-light);

    font-size:
        15px;

}


.info-item span {

    display:
        block;

    color:
        rgba(255, 255, 255, .38);

    font-size:
        8px;

    font-weight:
        700;

    letter-spacing:
        .16em;

    margin-bottom:
        3px;

}


.info-item strong {

    font-size:
        11px;

    font-weight:
        600;

    color:
        rgba(255, 255, 255, .80);

}


/* ==========================================================
   FOOTER
========================================================== */

.site-footer {

    position:
        relative;

}


.footer-inner {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    padding:
        23px 0;

}


.footer-left {

    display:
        flex;

    align-items:
        center;

    gap:
        9px;

    color:
        rgba(255, 255, 255, .35);

    font-size:
        10px;

}


.footer-separator {

    opacity:
        .4;

}


.footer-right {

    display:
        flex;

    align-items:
        center;

    gap:
        8px;

}


.footer-right a {

    width:
        32px;

    height:
        32px;

    display:
        grid;

    place-items:
        center;

    border:
        1px solid rgba(255, 255, 255, .10);

    border-radius:
        50%;

    color:
        rgba(255, 255, 255, .52);

    font-size:
        12px;

    transition:
        var(--transition);

}


.footer-right a:hover {

    color:
        var(--white);

    background:
        rgba(255, 255, 255, .10);

    transform:
        translateY(-3px);

}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1000px) {

    .hero {

        padding-top:
            35px;

    }


    .hero-container {

        grid-template-columns:
            1fr;

        gap:
            60px;

    }


    .hero-content {

        max-width:
            750px;

    }


    .hero-card-wrapper {

        justify-content:
            flex-start;

    }


    .info-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .info-item:nth-child(2) {

        border-right:
            0;

    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 650px) {

    .container {

        width:
            min(
                100% - 32px,
                1180px
            );

    }


    .site-header {

        padding:
            19px 0;

    }


    .brand-symbol {

        width:
            40px;

        height:
            40px;

        border-radius:
            12px;

        font-size:
            18px;

    }


    .brand-name {

        font-size:
            14px;

    }


    .brand-tagline {

        font-size:
            6px;

    }


    .header-contact {

        padding:
            9px;

        width:
            38px;

        height:
            38px;

        justify-content:
            center;

    }


    .contact-text {

        display:
            none;

    }


    .hero {

        min-height:
            auto;

        padding:
            45px 0 45px;

    }


    .hero-container {

        gap:
            50px;

    }


    .hero h1 {

        font-size:
            clamp(
                48px,
                15vw,
                70px
            );

        line-height:
            1;

    }


    .hero-description {

        font-size:
            14px;

        line-height:
            1.75;

    }


    .hero-actions {

        display:
            grid;

        grid-template-columns:
            1fr;

    }


    .btn {

        width:
            100%;

    }


    .quick-links {

        justify-content:
            center;

    }


    .hero-card {

        padding:
            22px;

        border-radius:
            22px;

    }


    .card-content {

        padding:
            23px 0;

    }


    .card-content h2 {

        font-size:
            31px;

    }


    .orbit {

        width:
            300px;

        height:
            300px;

        right:
            -100px;

        top:
            -80px;

    }


    .info-grid {

        grid-template-columns:
            1fr;

    }


    .info-item {

        border-right:
            0;

        border-bottom:
            1px solid rgba(255, 255, 255, .07);

    }


    .info-item:last-child {

        border-bottom:
            0;

    }


    .footer-inner {

        flex-direction:
            column;

        gap:
            15px;

        text-align:
            center;

    }


    .floating-leaf {

        display:
            none;

    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 390px) {

    .hero h1 {

        font-size:
            45px;

    }


    .status-pill {

        font-size:
            10px;

    }


    .brand-name {

        letter-spacing:
            .11em;

    }

}


/* ==========================================================
   ACCESSIBILITY
========================================================== */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        animation-duration:
            .01ms !important;

        animation-iteration-count:
            1 !important;

        scroll-behavior:
            auto !important;

    }

}


/* ==========================================================
   FOCUS
========================================================== */

a:focus-visible {

    outline:
        2px solid var(--sage-light);

    outline-offset:
        4px;

}