/* style.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    height: 100vh;
    overflow: hidden;
    background: #000;
    color: white;
}

/* Background image */
.background {
    position: fixed;
    inset: 0;

    background-image: url("bg.png");
    background-size: cover;
    background-position: center;

    transform: scale(1.05);

    filter: brightness(0.45);
    z-index: -3;
}

/* Smooth transition between bg and content */
.overlay {
    position: fixed;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.15) 0%,
            rgba(0, 0, 0, 0.55) 45%,
            rgba(0, 0, 0, 0.82) 100%
        );

    backdrop-filter: blur(2px);

    z-index: -2;
}

/* Main container */
.container {
    width: 100%;
    height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 2rem;
}

/* Hero section */
.hero {
    display: flex;
    align-items: center;
    gap: 2rem;

    padding: 2.5rem 3rem;

    background: rgba(255, 255, 255, 0.05);

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 32px;

    backdrop-filter: blur(18px);

    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.45),
        0 0 80px rgba(255, 105, 180, 0.08);

    animation: fadeIn 1s ease;
}

/* Logo */
.logo {
    width: 120px;
    height: 120px;

    object-fit: contain;

    filter:
        drop-shadow(0 0 18px rgba(255, 105, 180, 0.35));
}

/* Text */
.text-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;

    letter-spacing: -2px;
    line-height: 1;
}

.pink {
    color: #ff7bcf;

    text-shadow:
        0 0 15px rgba(255, 123, 207, 0.5),
        0 0 40px rgba(255, 123, 207, 0.25);
}

.coming-soon {
    margin-top: 1rem;

    font-size: 1.05rem;
    font-weight: 400;

    color: rgba(255, 255, 255, 0.7);

    letter-spacing: 1px;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile */
@media (max-width: 768px) {

    .hero {
        flex-direction: column;

        text-align: center;

        width: 100%;
        max-width: 400px;

        padding: 2rem;
    }

    .logo {
        width: 110px;
        height: 110px;
    }

    .text-content h1 {
        font-size: 2.8rem;
    }

    .coming-soon {
        font-size: 0.95rem;
    }
}