@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500&family=Playfair+Display:ital,wght@0,500;0,600;1,500&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
    background-color: #fcfcfc;
    /* Use the generated background image with a soft overlay */
    background-image: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.75)), url('../assets/boho_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #4a4a4a;
    overflow: hidden;
    position: relative;
}

/* Add a subtle texture overlay */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/linen_texture.png');
    opacity: 0.15;
    /* Increased opacity for more texture visibility */
    pointer-events: none;
    z-index: 0;
}

.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
    position: relative;
    z-index: 1;
}

.glass-card {
    width: 100%;
    max-width: 440px;
    text-align: center;
    padding: 48px 32px;
    border-radius: 32px;
    /* Ultra-clean white glass */
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow:
        0 40px 80px rgba(181, 165, 153, 0.15),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.logo {
    width: 110px;
    margin-bottom: 24px;
    border-radius: 50%;
    mix-blend-mode: multiply;
    /* Helps logo blend if it has white bg */
    opacity: 0.9;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 500;
    color: #2c2926;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.tagline {
    font-size: 16px;
    font-weight: 300;
    color: #665f5a;
    line-height: 1.6;
    margin-bottom: 32px;
}

/* Minimalist Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 36px;
}

.countdown div {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.countdown div::after {
    content: "";
    /* Vertical separator lines could go here, but keeping it clean */
}

.countdown span {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #2c2926;
    line-height: 1;
    margin-bottom: 4px;
}

.countdown small {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #8c8580;
    font-weight: 500;
}

/* Luxe Buttons */
.cta-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 16px 24px;
    border-radius: 100px;
    /* Pill shape */
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.whatsapp {
    background: #2c2926;
    /* Stark contrast black/grey */
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(44, 41, 38, 0.2);
}

.whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(44, 41, 38, 0.3);
    background: #1a1816;
}

.call {
    background: transparent;
    border: 1px solid #dcd6d0;
    color: #59524d;
}

.call:hover {
    background: #ffffff;
    border-color: #bfaea3;
    color: #2c2926;
}

.launch-note {
    margin-top: 28px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
}

/* Floating Elements - Subtler now */
.boho-float {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    /* Increased blur for dreamier effect */
    z-index: 1;
    opacity: 0.5;
    animation: drift 20s infinite alternate ease-in-out;
}

.f1 {
    width: 300px;
    height: 300px;
    background: #f0e6dd;
    /* Warm cream */
    top: -50px;
    left: -100px;
}

.f2 {
    width: 400px;
    height: 400px;
    background: #ffffff;
    /* Pure white */
    bottom: -100px;
    right: -100px;
    animation-delay: -5s;
}

.f3 {
    width: 250px;
    height: 250px;
    background: #e8e0d9;
    /* Soft sand */
    top: 40%;
    right: 10%;
    opacity: 0.3;
    animation-delay: -10s;
}

@keyframes drift {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(30px, -40px) rotate(10deg);
    }
}

/* Mobile Responsiveness */
@media(max-width: 480px) {
    .glass-card {
        padding: 40px 24px;
        margin: 16px;
    }

    h1 {
        font-size: 32px;
    }

    .countdown span {
        font-size: 28px;
    }

    .cta {
        padding: 14px 20px;
    }
}