:root {
    --primary-gold: #D4AF37;
    --dark-gold: #996515;
    --charcoal: #121212;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-white: #f8f8f8;
    --text-muted: #aaaaaa;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Montserrat', sans-serif;
  
    /* Fallback if image fails or for better UX during load */
    /* background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%); */


    background:url(../assets/images/banner.jpg) no-repeat;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--text-white);
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    padding: 2rem;
    animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.logo-section {
    text-align: center;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.tagline {
    font-size: 0.9rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.content-box {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    padding: clamp(2rem, 5vw, 4rem);
    border-radius: 2px;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.coming-soon-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.subtitle {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 300;
}
.subtitle a{ color: #fff;}

.subscribe-form {
    display: flex;
    gap: 0;
    width: 100%;
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.subscribe-form:focus-within {
    border-color: var(--primary-gold);
}

.subscribe-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem 0;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
}

.subscribe-form button {
    background: transparent;
    border: none;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.8rem;
    padding: 0 1rem;
    transition: var(--transition);
}

.subscribe-form button:hover {
    color: var(--text-white);
    transform: translateX(5px);
}

.status-message {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--primary-gold);
    opacity: 0;
    transition: var(--transition);
}

.social-links {
    display: flex;
    gap: 2rem;
}

.social-links a {
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    color: var(--primary-gold);
    transform: translateY(-3px);
}

.logo-section img {
    width: 200px;
}

/* Responsive Adjustments */
@media (max-height: 600px) {
    .container {
        justify-content: center;
        gap: 2rem;
    }

    .subtitle {
        display: none;
    }
}