/* Reset básico y variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #08080a;
    color: #e0e0e0;
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Hero Section */
.hero-container {
    position: relative;
    width: 100%;
    height: 90vh;
    /* Cambia la URL por la ruta de tu imagen descargada */
    background: url('assets/bg-moon.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

/* Capa oscura para mejorar la lectura del texto (clave de marketing) */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(8,8,10,0.4) 0%, rgba(8,8,10,0.85) 100%);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.main-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: #f5f5f5;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.subtitle {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 40px;
    font-weight: 300;
}

.subtitle em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.3rem;
    color: #e5b8b7; /* Tono rosa gótico/emocional */
}

/* Botón llamativo con animación */
.btn-primary {
    display: inline-block;
    padding: 16px 36px;
    background: rgba(20, 20, 25, 0.8);
    color: #ffffff;
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #ffffff;
    color: #08080a;
    border-color: #ffffff;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Footer */
footer {
    padding: 20px;
    background-color: #050507;
    text-align: center;
}

.footer-nav a {
    color: #777777;
    text-decoration: none;
    margin: 0 12px;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: #ffffff;
}

/* Adaptación para celulares */
@media (max-width: 768px) {
    .main-title {
        font-size: 2rem;
    }
    .subtitle {
        font-size: 1rem;
    }
    .btn-primary {
        padding: 14px 28px;
        font-size: 1rem;
    }
}
