/* ======================================= */
/* ESTILOS BASE (ESCRITORIO - CENTRADO)    */
/* ======================================= */
body {
    /* Dark background for luxury and contrast */
    background-color: #121212; 
    color: #CCCCCC; /* Light grey text */
    font-family: 'Roboto', sans-serif;
    margin: 0;
    
    /* Strict Vertical Centering for Desktop */
    display: flex;
    justify-content: center; /* Horizontal Center */
    align-items: center; /* Vertical Center */
    
    min-height: 100vh;
    text-align: center;
    overflow-x: hidden; 
    position: relative;
}

/* Background Image/Video Placeholder */
/* If you use a background image, define it here: */
/*
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('path/to/your/yacht-bg.jpg'); 
    background-size: cover;
    background-position: center;
    opacity: 0.2; 
    z-index: -2; 
}
*/

/* Content Overlay for readability (Needed if background image/video is used) */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); 
    z-index: -1; 
}


/* Contenedor Principal */
.container {
    padding: 40px;
    max-width: 900px;
    z-index: 10; 
}

/* Nombre de la Marca (Logo) */
.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 4em;
    letter-spacing: 15px; /* Wide spacing enhances luxury */
    margin-bottom: 0.1em;
    font-weight: 400;
    text-transform: uppercase;
    color: #CCCCCC; 
}

.brand-name .accent {
    color: #E6C07E; /* Soft Gold/Bronze Accent */
    font-weight: 700;
}

/* Subtítulo y Mensaje de Próximamente */
h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    margin-top: 0.5em;
    margin-bottom: 1em;
    font-weight: 700;
    color: #E6C07E; /* Matches the accent for visual hierarchy */
}

.tagline {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 3em;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Separador Elegante (Animated via GSAP) */
.separator {
    width: 80px;
    height: 1px;
    background-color: #E6C07E;
    margin: 20px auto;
}


/* ======================================= */
/* ESTILOS DEL FORMULARIO (VIP)            */
/* ======================================= */
.subscription-box {
    margin-top: 30px;
}

.subscription-box p {
    font-size: 1em;
    margin-bottom: 15px;
    color: #CCCCCC;
}

#vip-form input[type="email"] {
    padding: 15px;
    width: 300px;
    border: 1px solid #4A4A4A;
    background-color: transparent; /* Transparent background */
    color: #E6C07E;
    font-size: 1em;
    margin-right: 10px;
    box-sizing: border-box; 
}

/* Style the placeholder text */
#vip-form input::placeholder {
    color: rgba(230, 192, 126, 0.7); /* Slightly transparent gold */
}


.cta-button {
    padding: 15px 30px;
    background-color: #E6C07E;
    color: #121212; /* Dark text on gold button */
    border: none;
    cursor: pointer;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.cta-button:hover:not(:disabled) {
    background-color: #f0d090;
}

.cta-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Feedback message styling */
#feedback-message {
    min-height: 20px; /* Prevents layout shift */
    margin-top: 20px;
    color: #E6C07E;
}


/* ======================================= */
/* MEDIA QUERIES (RESPONSIVO) */
/* ======================================= */

@media (max-width: 768px) {
    
    /* 1. KEY OVERRIDE: Disable strict vertical centering for Mobile (allowing scroll) */
    body {
        display: block; /* Overrides display: flex */
        min-height: auto; 
        padding-top: 10vh; /* Adds breathing room at the top */
        padding-bottom: 5vh; 
    }
    
    .container {
        margin-left: auto;
        margin-right: auto;
        padding: 0 20px; 
    }
    
    /* 2. Mobile Size Reduction */
    .brand-name {
        font-size: 2.5em; 
        letter-spacing: 5px; 
    }
    h2 {
        font-size: 1.8em; 
        margin-bottom: 0.8em;
    }
    .tagline {
        font-size: 1em; 
    }

    /* 3. Form Adjustments (Vertical Stacking) */
    #vip-form {
        display: flex; 
        flex-direction: column; 
        align-items: center;
        width: 100%;
    }

    #vip-form input[type="email"] {
        width: 90%; 
        max-width: 350px; 
        margin: 0 0 15px 0; /* Add margin below input */
        text-align: center;
    }

    .cta-button {
        width: 90%;
        max-width: 350px;
    }
}