/*
 * Design System: Nathu's Sweets - Coming Soon
 * Colors: Gold, Maroon, Deep Red, White
 * Fonts: Inter, Serif
 */

:root {
    --primary: #c0392b;
    /* Deep Red/Maroon */
    --accent: #f1c40f;
    /* Gold */
    --text-light: #ffffff;
    --text-dark: #2c3e50;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --overlay: rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-light);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: #000;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/bg.png') no-repeat center center/cover;
    z-index: -2;
    transform: scale(1.1);
    animation: zoomOut 10s ease-out forwards;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    z-index: -1;
}

@keyframes zoomOut {
    from {
        transform: scale(1.2);
    }

    to {
        transform: scale(1);
    }
}

.container {
    text-align: center;
    padding: 3rem;
    max-width: 626px;
    width: 90%;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    width: 250px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

h1 {
    font-size: 3.25rem;
    font-weight: 800;
    margin-bottom: 0;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(to bottom, #fff, #f1c40f);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

/* Responsiveness */
@media (max-width: 600px) {
    h1 {
        font-size: 2.8rem;
    }

    .container {
        padding: 2.5rem;
    }

    .logo {
        width: 220px;
    }
}