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

body{
    min-height:100vh;
    overflow-x:hidden;
    overflow-y:auto;
    position:relative;
    font-family:'Inter',sans-serif;

    background:url('background.png');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

/* Light overlay */
.overlay{
    position:absolute;
    inset:0;
    background:rgba(255,255,255,0.20);
    z-index:1;
}

/* Main content container */
.container{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
    z-index:3;
    padding:20px;
}

.content{
    text-align:center;
    width:100%;
    max-width:900px;
    padding:20px;
    animation:fadeUp 1.5s ease;
}

/* Brand Name */
h1{
    font-family:'Cormorant Garamond',serif;
    font-size:clamp(2.8rem, 8vw, 5rem);
    font-weight:600;
    letter-spacing:clamp(4px, 1vw, 10px);

    color:#C9A24A;

    margin-bottom:20px;

    text-shadow:
        0 1px 0 #e6c16b,
        0 4px 15px rgba(201,162,74,0.15);
}

/* Divider */
.divider{
    width:120px;
    height:1px;
    background:#c7a25d;
    margin:25px auto;
}

/* Launching Soon */
h2{
    font-family:'Cormorant Garamond',serif;
    font-size:clamp(2rem, 5vw, 3rem);
    font-weight:500;
    color:#2c2c2c;
}

/* Tagline */
p{
    margin-top:20px;
    color:#555;
    font-size:clamp(1rem, 2vw, 1.1rem);
    letter-spacing:1px;
    padding:0 10px;
}

/* Social Icons */
.socials{
    margin-top:50px;
    display:flex;
    justify-content:center;
    gap:35px;
    flex-wrap:wrap;
}

.socials a{
    width:55px;
    height:55px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,0.75);
    backdrop-filter:blur(8px);

    color:#9b7b3b;

    font-size:22px;

    text-decoration:none;

    transition:all .35s ease;
}

.socials a:hover{
    transform:translateY(-8px);
    background:#9b7b3b;
    color:white;
}

/* Background Glows */
.floating-glow{
    position:absolute;
    border-radius:50%;
    filter:blur(100px);
    opacity:.20;
    z-index:2;
}

.glow1{
    width:300px;
    height:300px;
    background:#f7d999;
    top:10%;
    left:10%;
    animation:float1 10s infinite alternate;
}

.glow2{
    width:250px;
    height:250px;
    background:#e6c580;
    bottom:10%;
    right:10%;
    animation:float2 12s infinite alternate;
}

@keyframes float1{
    from{
        transform:translateY(0);
    }
    to{
        transform:translateY(40px);
    }
}

@keyframes float2{
    from{
        transform:translateY(0);
    }
    to{
        transform:translateY(-40px);
    }
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* Mobile */
@media(max-width:768px){

    .container{
        padding:15px;
    }

    .content{
        padding:10px;
    }

    .divider{
        width:80px;
        margin:15px auto;
    }

    .socials{
        gap:18px;
        margin-top:35px;
    }

    .socials a{
        width:48px;
        height:48px;
        font-size:18px;
    }

    .glow1,
    .glow2{
        display:none;
    }
}
