﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    background: #1d2746;
}

.autumn-scene {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at top, rgba(255, 206, 130, .25), transparent 45%), linear-gradient( 180deg, #20284b 0%, #49335e 35%, #8b4d4c 65%, #d18c58 100%);
}

/* ===============================
   STARS
=================================*/

.stars {
    position: absolute;
    inset: 0;
    opacity: .75;
    background-image: radial-gradient(2px 2px at 20% 25%, white, transparent), radial-gradient(2px 2px at 40% 12%, white, transparent), radial-gradient(2px 2px at 70% 18%, white, transparent), radial-gradient(2px 2px at 82% 32%, white, transparent), radial-gradient(2px 2px at 60% 8%, white, transparent), radial-gradient(2px 2px at 10% 16%, white, transparent);
}

/* ===============================
   MOON
=================================*/

.moon {
    position: absolute;
    top: 70px;
    right: 120px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #fff7d8;
    box-shadow: 0 0 25px rgba(255,255,220,.8), 0 0 80px rgba(255,245,180,.45);
}

/* ===============================
   HILLS
=================================*/

.hill {
    position: absolute;
    left: -10%;
    width: 120%;
    border-radius: 50%;
}

    .hill.one {
        bottom: 80px;
        height: 230px;
        background: #31402f;
    }

    .hill.two {
        bottom: -20px;
        height: 190px;
        background: #1d281d;
    }

/* ===============================
   TREES
=================================*/

.tree {
    position: absolute;
    bottom: 110px;
    width: 10px;
    height: 120px;
    background: #23140f;
}

    .tree::before {
        content: "";
        position: absolute;
        width: 70px;
        height: 70px;
        left: -30px;
        bottom: 60px;
        border-radius: 50%;
        background: #b74d20;
        box-shadow: -18px -15px 0 #c86d2f, 18px -10px 0 #d88c3b, 0 -32px 0 #a9471b;
    }

.t1 {
    left: 10%;
}

.t2 {
    left: 28%;
    transform: scale(.8);
}

.t3 {
    right: 16%;
    transform: scale(1.15);
}

/* ===============================
   CONTENT
=================================*/

.content {
    position: relative;
    z-index: 100;
    max-width: 720px;
    padding: 50px;
    text-align: center;
    border-radius: 24px;
    background: rgba(20,20,30,.28);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.15);
    box-shadow: 0 15px 40px rgba(0,0,0,.35);
}

    .content h1 {
        font-size: clamp(3rem,7vw,5.5rem);
        letter-spacing: 4px;
        color: #fff8ef;
        margin-bottom: 20px;
        text-shadow: 0 4px 18px rgba(0,0,0,.45);
    }

    .content p {
        font-size: 1.15rem;
        line-height: 1.9;
        color: #f5e5cd;
        margin-bottom: 40px;
    }

/* ===============================
   BUTTON
=================================*/

.explore-btn {
    border: none;
    padding: 15px 36px;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    color: white;
    background: linear-gradient(135deg,#d97706,#f59e0b);
    transition: .3s;
}

    .explore-btn:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 25px rgba(245,158,11,.45);
    }

/* ===============================
   FALLING LEAVES
=================================*/

.leaf {
    position: absolute;
    top: -30px;
    width: 16px;
    height: 16px;
    border-radius: 0 100% 0 100%;
    pointer-events: none;
    animation: fall linear infinite;
}

@keyframes fall {

    from {
        transform: translateY(-30px) rotate(0deg);
    }

    to {
        transform: translateY(110vh) translateX(120px) rotate(720deg);
    }
}

/* ===============================
   RESPONSIVE
=================================*/

@media (max-width:768px) {

    .content {
        width: 90%;
        padding: 35px 25px;
    }

    .moon {
        width: 90px;
        height: 90px;
        right: 35px;
    }

    .tree {
        display: none;
    }

    .content h1 {
        font-size: 3rem;
    }
}
