:root {
    --bg-color: #ffffff;
    --text-color: #1a1a1a;
    --accent-gold: #d4af37;
    --accent-gold-gradient: linear-gradient(45deg, #bf953f, #b38728, #aa771c);
    --font-heading: 'Bodoni Moda', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), url('rouhbackground.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.luxury-container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    text-align: center;
}

.content-wrapper {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 2s ease-out, transform 2s ease-out;
}

.content-wrapper.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.brand-logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    /* Adjusted shadow to be visible on white, still gold-ish but darker mix if needed, 
       or just keep it subtle. Let's make it a subtle dark shadow for depth. */
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    transition: transform 0.5s ease, filter 0.5s ease;
}

.brand-logo:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.15));
}

.divider {
    height: 1px;
    width: 0;
    background: var(--accent-gold-gradient);
    margin: 2rem auto;
    transition: width 1.5s ease-in-out 0.5s;
}

.divider.visible {
    width: 150px;
}

.launch-text {
    font-family: var(--font-heading);
    font-size: 3rem;
    /* Larger, majestic */
    font-weight: 400;
    font-style: normal;
    /* Zara is typically upright, not italic */
    letter-spacing: -0.02em;
    /* Zara's modern look is often tighter, or at least not widely spaced */
    text-transform: uppercase;
    color: #1a1a1a;
    margin-top: 1.5rem;
    line-height: 0.9;
    /* Tighter line height for that editorial feel */
    opacity: 0;
    transition: opacity 1.5s ease 1s;
}

.launch-text.visible {
    opacity: 1;
}

@media (max-width: 768px) {
    .brand-logo {
        max-width: 200px;
    }

    .launch-text {
        font-size: 1.2rem;
        letter-spacing: 0.2em;
    }
}