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

:root {
    --primary-font: 'Outfit', sans-serif;
    --serif-font: 'Playfair Display', serif;

    --color-bg-dark: #0a0a0a;
    --color-text-primary: #ffffff;
    --color-text-secondary: #e0e0e0;
    --color-accent-gold: #d4af37;
    --color-accent-gold-hover: #f0c750;
    --color-overlay: rgba(0, 0, 0, 0.65);

    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body {
    font-family: var(--primary-font);
    background-color: var(--color-bg-dark);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Container & Background */
.coming-soon-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Distribute space between content and footer */
    align-items: center;
    background-image: url('assets/images/mall_background.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 2rem 1rem;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.7) 50%,
            rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}

/* Content Wrapper */
.content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 800px;
    padding: 2rem 0;
    text-align: center;
    animation: fadeInUp 1.2s ease-out;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Typography & Layout */
.brand-header {
    margin-bottom: 3rem;
}

.sub-logo {
    font-family: var(--primary-font);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-accent-gold);
    opacity: 0.9;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.eyebrow-text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.main-headline {
    font-family: var(--serif-font);
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.main-headline em {
    font-style: italic;
    color: var(--color-accent-gold);
}

.description {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    font-weight: 300;
    margin-bottom: 2rem;
}

/* Form Styles */
.cta-group {
    width: 100%;
    max-width: 500px;
}

.notify-text {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.notify-form {
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.notify-form:focus-within {
    border-color: var(--color-accent-gold);
    background: rgba(255, 255, 255, 0.15);
}

.email-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.8rem 1.5rem;
    color: white;
    font-family: var(--primary-font);
    font-size: 1rem;
    outline: none;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.notify-btn {
    background-color: var(--color-accent-gold);
    color: #000;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-family: var(--primary-font);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.notify-btn:hover {
    background-color: var(--color-accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* Footer */
.page-footer {
    position: relative;
    width: 100%;
    text-align: center;
    z-index: 10;
    margin-top: auto;
    padding-top: 2rem;
}

.social-links {
    margin-bottom: 1rem;
}

.social-link {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    font-size: 0.85rem;
    opacity: 0.7;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-link:hover {
    opacity: 1;
    color: var(--color-accent-gold);
}

.copyright {
    font-size: 0.75rem;
    opacity: 0.5;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-headline {
        font-size: 2.5rem;
    }

    .notify-form {
        flex-direction: column;
        border-radius: 15px;
        background: transparent;
        border: none;
        backdrop-filter: none;
        gap: 1rem;
    }

    .email-input {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        text-align: center;
    }

    .notify-btn {
        width: 100%;
    }

    .page-footer {
        position: relative;
        margin-top: 2rem;
        bottom: auto;
    }
}