/* Global Styles */
:root {
    --primary-color: #ffffff;
    --accent-color: #d4af37;
    /* Gold-ish accent for premium feel */
    --text-color: #f0f0f0;
    --overlay-color: rgba(0, 0, 0, 0.65);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    overflow: hidden;
    /* Prevent scrolling on main view */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Background & Overlay */
.background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url('assets/images/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8));
    backdrop-filter: blur(2px);
    /* Slight blur for focus on content */
}

/* Content Wrapper */
.content-wrapper {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
    z-index: 1;
    animation: fadeInUp 1.2s ease-out;
}

/* Logo */
.logo-container {
    margin-bottom: 2rem;
}

.main-logo {
    max-width: 250px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
    /* Assuming the logo is white text. If black, we might need a filter invert or use the icon. 
       Given "premium", usually white logo on dark bg looks best. */
}

/* Typography */
.coming-soon-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Contact Info */
.contact-container {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.contact-text {
    font-size: 1rem;
    opacity: 0.8;
}

.contact-email {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.contact-email:hover {
    border-bottom: 1px solid var(--accent-color);
    opacity: 0.9;
}

/* Footer */
.footer {
    font-size: 0.8rem;
    opacity: 0.6;
    position: absolute;
    bottom: 2rem;
    width: 100%;
    left: 0;
    text-align: center;
}

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

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

/* Responsive Adjustments */
@media (max-width: 768px) {
    .coming-soon-title {
        font-size: 2.5rem;
    }

    .main-logo {
        max-width: 180px;
    }

    .content-wrapper {
        padding: 1.5rem;
    }
}