*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: 'Outfit', sans-serif;
    background-color: #000;
}

/* Background Image - Contain for all devices to show full giraffe */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: url('assets/background_ai.png');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #000;
}

/* 70% Black Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.70);
}

/* Main Content */
.content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

/* Logo - Top Left Corner */
.logo-container {
    position: absolute;
    top: 25px;
    left: 25px;
}

.logo {
    height: 85px;
    width: auto;
    display: block;
}

/* Center Text - Absolute Center */
.center-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

.coming-soon {
    font-size: 4rem;
    font-weight: 700;
    color: #C9A227;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.tagline {
    font-size: 1rem;
    font-weight: 300;
    color: #B8962E;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

/* Bottom Section */
.bottom-section {
    position: absolute;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.gold-line {
    width: 80px;
    height: 1px;
    background-color: #C9A227;
}

/* Copyright Footer */
.copyright {
    font-size: 0.65rem;
    color: #555;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ========== RESPONSIVE BREAKPOINTS ========== */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
    .logo {
        height: 95px;
    }

    .coming-soon {
        font-size: 4.5rem;
    }

    .tagline {
        font-size: 1.1rem;
    }
}

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .logo {
        height: 65px;
    }

    .coming-soon {
        font-size: 3rem;
        letter-spacing: 0.15em;
    }

    .tagline {
        font-size: 0.85rem;
        letter-spacing: 0.2em;
    }
}

/* Mobile (up to 767px) */
@media (max-width: 767px) {
    .logo-container {
        top: 18px;
        left: 18px;
    }

    .logo {
        height: 50px;
    }

    .coming-soon {
        font-size: 2.2rem;
        letter-spacing: 0.1em;
        margin-bottom: 15px;
    }

    .tagline {
        font-size: 0.7rem;
        letter-spacing: 0.15em;
    }

    .bottom-section {
        bottom: 18px;
        gap: 10px;
    }

    .gold-line {
        width: 60px;
    }

    .copyright {
        font-size: 0.5rem;
    }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
    .logo-container {
        top: 15px;
        left: 15px;
    }

    .logo {
        height: 42px;
    }

    .coming-soon {
        font-size: 1.8rem;
        letter-spacing: 0.08em;
        margin-bottom: 12px;
    }

    .tagline {
        font-size: 0.6rem;
        letter-spacing: 0.12em;
    }

    .bottom-section {
        bottom: 15px;
    }

    .gold-line {
        width: 50px;
    }
}

/* Very Small / Narrow Mobile (up to 375px) */
@media (max-width: 375px) {
    .center-content {
        padding: 0 15px;
    }

    .logo {
        height: 36px;
    }

    .coming-soon {
        font-size: 1.4rem;
        letter-spacing: 0.05em;
    }

    .tagline {
        font-size: 0.5rem;
        letter-spacing: 0.08em;
    }
}

/* Extra Small Mobile (up to 320px) */
@media (max-width: 320px) {
    .center-content {
        padding: 0 10px;
    }

    .logo {
        height: 30px;
    }

    .coming-soon {
        font-size: 1.2rem;
        letter-spacing: 0.03em;
    }

    .tagline {
        font-size: 0.45rem;
        letter-spacing: 0.05em;
    }
}

/* Landscape Mobile */
@media (max-height: 500px) {
    .logo-container {
        top: 10px;
        left: 12px;
    }

    .logo {
        height: 32px;
    }

    .coming-soon {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }

    .tagline {
        font-size: 0.5rem;
    }

    .bottom-section {
        bottom: 8px;
        gap: 5px;
    }

    .gold-line {
        width: 40px;
    }

    .copyright {
        font-size: 0.4rem;
    }
}