/* ===================================================
   COMINGSOON.CSS — Coming Soon Page Styles
   Styled to match 404.html
   =================================================== */

@font-face {
    font-family: 'Outfit';
    src: url('../Assets/Fonts/Outfit-fonts/Outfit-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../Assets/Fonts/Outfit-fonts/Outfit-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../Assets/Fonts/Outfit-fonts/Outfit-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f0f0f0;
    color: #000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ---------- Scrolling Marquee ---------- */
.marquee {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.marquee__track {
    display: flex;
    gap: 0.75em;
    white-space: nowrap;
    animation: marquee-scroll 20s linear infinite;
    will-change: transform;
}

.marquee__text {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(5rem, 12vw, 10rem);
    letter-spacing: -0.03em;
    text-transform: uppercase;
    flex-shrink: 0;
}

.marquee__text--normal {
    font-weight: 300;
    color: rgba(0, 0, 0, 0.07);
}

.marquee__text--bold {
    font-weight: 700;
    color: rgba(0, 0, 0, 0.1);
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ---------- Big Background Logo ---------- */
.bg-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.bg-logo__img {
    width: clamp(280px, 40vw, 500px);
    height: auto;
    opacity: 0.06;
}

/* ---------- Coming Soon Content ---------- */
.coming-soon {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

/* Small top logo */
.coming-soon__logo {
    margin-bottom: 3rem;
}

.coming-soon__logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.coming-soon__logo:hover .coming-soon__logo-img {
    opacity: 1;
}

/* Title */
.coming-soon__title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #000;
    margin-bottom: 0.75rem;
}

/* Description */
.coming-soon__desc {
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.45);
    max-width: 420px;
    margin-bottom: 27.5rem;
}

/* ---------- Responsive ---------- */

@media (max-width: 768px) {
    .marquee__text {
        font-size: clamp(3.5rem, 15vw, 6rem);
    }

    .bg-logo__img {
        width: 220px;
    }
}

@media (max-width: 480px) {
    .marquee__text {
        font-size: clamp(2.5rem, 18vw, 4rem);
    }
}
