/* ggoomimi.com - Blobitecture Contemplative Organic */

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

body {
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    color: #4A3C30;
    background: #F5EDE0;
    overflow-x: hidden;
    line-height: 1.85;
}

.nanum-gothic {
    font-family: 'Nanum Gothic', sans-serif;
    font-weight: 400;
}

.caveat {
    font-family: 'Caveat', cursive;
    font-weight: 400;
}

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

/* ========== GRAIN OVERLAY ========== */

.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 999;
    opacity: 0.04;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='64' height='64' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 64px 64px;
}

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

.leaf {
    position: fixed;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
}

.leaf-1 { width: 40px; top: 8%; left: 5%; opacity: 0.15; animation: leafFloat 15s ease-in-out infinite, leafSpin 25s linear infinite; }
.leaf-2 { width: 30px; top: 22%; right: 8%; opacity: 0.2; animation: leafFloat 18s ease-in-out infinite 2s, leafSpin 30s linear infinite; }
.leaf-3 { width: 35px; top: 35%; left: 12%; opacity: 0.12; animation: leafFloat 14s ease-in-out infinite 4s, leafSpin 22s linear infinite reverse; }
.leaf-4 { width: 25px; top: 48%; right: 15%; opacity: 0.18; animation: leafFloat 16s ease-in-out infinite 1s, leafSpin 28s linear infinite; }
.leaf-5 { width: 30px; top: 58%; left: 7%; opacity: 0.14; animation: leafFloat 17s ease-in-out infinite 3s, leafSpin 20s linear infinite reverse; }
.leaf-6 { width: 32px; top: 68%; right: 6%; opacity: 0.16; animation: leafFloat 13s ease-in-out infinite 5s, leafSpin 24s linear infinite; }
.leaf-7 { width: 28px; top: 78%; left: 18%; opacity: 0.2; animation: leafFloat 19s ease-in-out infinite 2s, leafSpin 26s linear infinite reverse; }
.leaf-8 { width: 36px; top: 15%; right: 20%; opacity: 0.1; animation: leafFloat 15s ease-in-out infinite 6s, leafSpin 32s linear infinite; }
.leaf-9 { width: 26px; top: 42%; left: 22%; opacity: 0.15; animation: leafFloat 16s ease-in-out infinite 4s, leafSpin 18s linear infinite; }
.leaf-10 { width: 34px; top: 88%; right: 12%; opacity: 0.13; animation: leafFloat 14s ease-in-out infinite 1s, leafSpin 22s linear infinite reverse; }

@keyframes leafFloat {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

@keyframes leafSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    padding: 40px 24px;
}

.hero-blob {
    width: 60vw;
    max-width: 700px;
    min-height: 50vh;
    background: #EBE2D4;
    border-radius: 60% 40% 70% 30% / 30% 60% 40% 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    position: relative;
    clip-path: circle(0px at 50% 50%);
    animation: blobGrow 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 400ms forwards;
    box-shadow: 0 16px 48px rgba(74, 60, 48, 0.08);
}

@keyframes blobGrow {
    0% { clip-path: circle(10px at 50% 50%); }
    100% { clip-path: circle(75% at 50% 50%); }
}

.blob-content {
    text-align: center;
    max-width: 540px;
    opacity: 0;
    animation: fadeIn 600ms ease 800ms forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.site-name {
    font-family: 'Nanum Gothic', sans-serif;
    font-weight: 400;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #4A3C30;
    margin-bottom: 24px;
}

.syllable {
    display: inline-block;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 300ms ease, transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.syllable.visible {
    opacity: 1;
    transform: scale(1);
}

.hero-meditation {
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.85;
    color: #4A3C30;
    margin-bottom: 20px;
}

.hero-annotation {
    font-family: 'Caveat', cursive;
    font-weight: 400;
    font-size: 0.9rem;
    color: #8A8070;
    opacity: 0.6;
}

/* ========== BREATHING BLOB ANIMATION ========== */

.breathing-blob {
    animation: blobBreathe 6s ease-in-out infinite;
}

@keyframes blobBreathe {
    0%, 100% { border-radius: 60% 40% 70% 30% / 30% 60% 40% 70%; }
    33% { border-radius: 55% 45% 65% 35% / 35% 55% 45% 65%; }
    66% { border-radius: 65% 35% 60% 40% / 40% 65% 35% 60%; }
}

/* ========== CONTENT BLOBS ========== */

.blob-section {
    padding: 50px 24px;
    display: flex;
    position: relative;
    z-index: 2;
}

.content-blob {
    max-width: 640px;
    width: 80%;
    background: #EBE2D4;
    padding: 60px;
    position: relative;
    box-shadow: 0 12px 40px rgba(74, 60, 48, 0.06);
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 600ms ease, transform 600ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.content-blob.visible {
    opacity: 1;
    transform: scale(1);
}

.blob-left {
    margin-left: 10%;
    margin-right: auto;
    border-radius: 60% 40% 70% 30% / 30% 60% 40% 70%;
}

.blob-right {
    margin-left: auto;
    margin-right: 10%;
    border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
}

.blob-inner {
    max-width: 540px;
    margin: 0 auto;
    opacity: 0;
    transition: opacity 300ms ease 300ms;
}

.content-blob.visible .blob-inner {
    opacity: 1;
}

.blob-heading {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    letter-spacing: 0.01em;
    color: #4A3C30;
    margin-bottom: 20px;
}

.blob-body {
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.85;
    color: #4A3C30;
    margin-bottom: 16px;
}

.blob-annotation {
    font-family: 'Caveat', cursive;
    font-weight: 400;
    font-size: 0.9rem;
    color: #8A8070;
    opacity: 0.6;
    margin-top: 8px;
}

/* ========== PRESSED FLOWER GALLERY ========== */

.gallery-section {
    padding: 80px 24px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.gallery-heading {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #4A3C30;
    margin-bottom: 40px;
}

.gallery-band {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.flower-window {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(196, 160, 144, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EBE2D4;
    position: relative;
    overflow: hidden;
    transition: border-color 300ms ease, box-shadow 300ms ease, transform 300ms ease;
    cursor: default;
}

.flower-window:hover {
    border-color: rgba(196, 160, 144, 0.5);
    box-shadow: 0 4px 16px rgba(74, 60, 48, 0.1);
}

.flower-window:hover .pressed-flower {
    transform: scale(1.2);
}

.pressed-flower {
    position: relative;
    width: 40px;
    height: 50px;
    transition: transform 300ms ease;
}

.petal {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
}

.stem-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 2px;
    height: 20px;
    background: #8A9A7A;
    opacity: 0.3;
    transform: translateX(-50%);
}

/* Flower variations */
.flower-1 .petal-a { width: 14px; height: 14px; background: #C4A090; top: 8px; left: 4px; }
.flower-1 .petal-b { width: 12px; height: 12px; background: #B8A8B0; top: 4px; left: 16px; }
.flower-1 .petal-c { width: 10px; height: 10px; background: #8A9A7A; top: 14px; left: 20px; }

.flower-2 .petal-a { width: 16px; height: 10px; background: #B8A8B0; top: 6px; left: 6px; }
.flower-2 .petal-b { width: 10px; height: 16px; background: #C4A090; top: 2px; left: 20px; }
.flower-2 .petal-c { width: 12px; height: 12px; background: #7A6850; top: 16px; left: 12px; opacity: 0.3; }

.flower-3 .petal-a { width: 18px; height: 8px; background: #C4A090; top: 10px; left: 2px; }
.flower-3 .petal-b { width: 8px; height: 18px; background: #8A9A7A; top: 0; left: 18px; }
.flower-3 .petal-c { width: 14px; height: 14px; background: #B8A8B0; top: 12px; left: 14px; opacity: 0.3; }

.flower-4 .petal-a { width: 12px; height: 16px; background: #B8A8B0; top: 4px; left: 4px; }
.flower-4 .petal-b { width: 16px; height: 12px; background: #C4A090; top: 8px; left: 14px; }
.flower-4 .petal-c { width: 10px; height: 10px; background: #8A9A7A; top: 18px; left: 8px; }

.flower-5 .petal-a { width: 14px; height: 14px; background: #8A9A7A; top: 2px; left: 8px; }
.flower-5 .petal-b { width: 10px; height: 10px; background: #C4A090; top: 12px; left: 2px; }
.flower-5 .petal-c { width: 12px; height: 8px; background: #B8A8B0; top: 14px; left: 20px; }

.flower-6 .petal-a { width: 10px; height: 18px; background: #C4A090; top: 0; left: 10px; }
.flower-6 .petal-b { width: 16px; height: 10px; background: #B8A8B0; top: 14px; left: 4px; }
.flower-6 .petal-c { width: 8px; height: 14px; background: #8A9A7A; top: 6px; left: 24px; opacity: 0.35; }

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

.footer-section {
    padding: 60px 24px 80px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.footer-blob {
    width: 90%;
    max-width: 900px;
    background: #E0D6C8;
    border-radius: 50% 50% 40% 60% / 20% 20% 40% 40%;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(74, 60, 48, 0.06);
}

.footer-brand {
    font-family: 'Nanum Gothic', sans-serif;
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #4A3C30;
    margin-bottom: 12px;
}

.footer-tagline {
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #7A6850;
    margin-bottom: 16px;
}

.footer-credit {
    font-family: 'Caveat', cursive;
    font-weight: 400;
    font-size: 0.9rem;
    color: #A89888;
}

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

@media (max-width: 768px) {
    .hero-blob {
        width: 85vw;
        padding: 40px 24px;
    }

    .content-blob {
        width: 90%;
        padding: 40px 24px;
    }

    .blob-left {
        margin-left: 5%;
    }

    .blob-right {
        margin-right: 5%;
    }

    .gallery-band {
        gap: 16px;
    }

    .flower-window {
        width: 64px;
        height: 64px;
    }

    .leaf {
        display: none;
    }
}
