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

body {
    background-color: #f7f3e8;
    color: #4a382d;
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
}

.canvas-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: -10;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.8), transparent 70%);
}

.garden-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.section {
    position: relative;
    width: 100vw;
}

.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 10;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 400;
    font-style: italic;
    color: #3b2c23;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.2rem;
    color: #7b6256;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.scroll-down {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(123, 98, 86, 0), rgba(123, 98, 86, 0.5));
    margin: 40px auto 0;
    animation: bounce 2s infinite ease-in-out;
}

@keyframes bounce {

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

    50% {
        transform: translateY(15px);
    }
}

.path {
    height: 350vh;
    position: relative;
    z-index: 10;
}

.flower-node,
.ring-node,
.central-node {
    position: absolute;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg-flower-node {
    position: absolute;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -5;
    opacity: 0.35;
    will-change: transform;
}

.css-flower {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.flower-node .css-flower,
.ring-node .css-flower,
.central-node .css-flower {
    filter: drop-shadow(0px 15px 15px rgba(0, 0, 0, 0.15));
}

.css-petal {
    position: absolute;
    border-radius: 50% 50% 50% 50% / 70% 70% 30% 30%;
    transform-origin: bottom center;
    will-change: transform, opacity;
}


.yellow-petal {
    background: linear-gradient(180deg, #ffca28 0%, #ff8f00 100%);
    box-shadow: inset -3px -3px 8px rgba(0, 0, 0, 0.1), inset 3px 3px 8px rgba(255, 255, 255, 0.4);
}

.white-petal {
    background: linear-gradient(180deg, #ffffff 0%, #e0e0e0 100%);
    box-shadow: inset -3px -3px 8px rgba(0, 0, 0, 0.05), inset 3px 3px 8px rgba(255, 255, 255, 0.6);
}

.bg-white-petal {
    background: #eeeeee;
    box-shadow: none;
}

.css-center {
    position: absolute;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.yellow-center {
    background-image:
        repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0.15) 2px, transparent 2px, transparent 4px),
        repeating-linear-gradient(-45deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0.15) 2px, transparent 2px, transparent 4px),
        radial-gradient(circle at center, #6b4423 0%, #3e2723 50%, #170b00 95%, #2a1b12 100%);
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 1), 0 0 10px rgba(0, 0, 0, 0.5);
    border: 3px solid #4a2e1b;
}

.white-center {
    background: radial-gradient(circle at center, #3d3d3d 0%, #1a1a1a 50%, #000000 100%);
    border: 2px solid #282828;
}

.center-fuzz {
    width: 60%;
    height: 60%;
    border-radius: 50%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.9);
}

.yellow-center .center-fuzz {
    background-color: rgba(62, 39, 35, 0.4);
}

.central-glow {
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255, 180, 0, 0.4) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: soft-light;
    animation: pulse-glow 4s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
    0% {
        transform: scale(0.9);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.core {
    height: 150vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-bottom: 20vh;
    z-index: 10;
}

.central-node {
    width: 100%;
    height: 100%;
    z-index: 15;
}

.ring-node {
    width: 45%;
    height: 45%;
    z-index: 5;
}

.core-text {
    margin-top: 10vh;
    text-align: center;
    z-index: 20;
}



@media (min-width: 769px) {
    .path-f1 {
        top: 10%;
        left: 15%;
        width: 250px;
    }

    .path-f2 {
        top: 28%;
        right: 10%;
        width: 320px;
    }

    .path-f3 {
        top: 45%;
        left: 45%;
        width: 280px;
    }

    .path-f4 {
        top: 65%;
        right: 25%;
        width: 300px;
    }

    .path-f5 {
        top: 85%;
        left: 10%;
        width: 340px;
    }

    .core-composition {
        position: relative;
        width: 50vw;
        height: 50vw;
        max-width: 600px;
        max-height: 600px;
    }

    .core-text h2 {
        font-family: 'Playfair Display', serif;
        font-size: 5rem;
        font-style: italic;
        color: #ffb300;
        text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .path-f1 {
        top: 8%;
        left: 10%;
        width: 140px;
    }

    .path-f2 {
        top: 25%;
        right: 10%;
        width: 180px;
    }

    .path-f3 {
        top: 45%;
        left: 50%;
        transform: translateX(-50%);
        width: 160px;
    }

    .path-f4 {
        top: 68%;
        right: 5%;
        width: 150px;
    }

    .path-f5 {
        top: 88%;
        left: 5%;
        width: 170px;
    }

    .core-composition {
        position: relative;
        width: 90vw;
        height: 90vw;
        max-width: 400px;
        max-height: 400px;
    }

    .core-text h2 {
        font-family: 'Playfair Display', serif;
        font-size: 3rem;
        font-style: italic;
        color: #ffb300;
        text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1);
    }
}