@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;1,300&display=swap');

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #fce4ec;
    font-family: 'Cormorant Garamond', serif;
    overflow: hidden;
}

.blob-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: url(#gooey);
    z-index: 1;
}

.blob {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 99%, #fecfef 100%);
    mix-blend-mode: multiply;
    transition: all 1s ease-out;
}

.blob-1 {
    width: 500px;
    height: 500px;
    top: 20%;
    left: 30%;
    background: #ffb6c1;
    animation: drift 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.blob-2 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 60%;
    background: #add8e6;
    animation: drift 25s infinite alternate-reverse cubic-bezier(0.4, 0, 0.2, 1);
}

.blob-3 {
    width: 600px;
    height: 600px;
    top: -10%;
    left: 50%;
    background: #e6e6fa;
    animation: drift 22s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(100px, -50px) scale(1.1); }
    66% { transform: translate(-50px, 100px) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}

.content-layer {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
    box-sizing: border-box;
    pointer-events: none;
}

.bloom-nav {
    display: flex;
    gap: 30px;
    pointer-events: auto;
}

.bloom-nav a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s;
}

.bloom-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #4a4a4a;
    transition: width 0.3s ease;
}

.bloom-nav a:hover::after {
    width: 100%;
}

.hero-text {
    text-align: center;
    margin-bottom: 10vh;
}

h1 {
    font-size: 12rem;
    font-weight: 300;
    margin: 0;
    color: #333;
    letter-spacing: -5px;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

p {
    font-size: 1.5rem;
    font-style: italic;
    color: #666;
    margin-top: -20px;
}

svg {
    position: absolute;
    width: 0;
    height: 0;
}
