/* --- HEADER (Escritorio) --- */
header.header-luxury {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--bg-color);
    height: 90px;
    width: 100%;
    overflow: hidden; 
}

/* 1. LOGO */
.header-logo {
    width: 300px;
    min-width: 300px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding-left: 5%;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.header-logo-img {
    height: 50px; 
    width: auto;  
    display: block; 
    transition: transform 0.3s ease;
}

.header-logo-img:hover {
    transform: scale(1.1); 
}

/* 2. MENÚ */
.header-nav {
    flex-grow: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-nav a {
    color: var(--text-main);
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;     
    font-weight: 700;        /* Corregido: 1000 no existe en CSS estándar, el máximo suele ser 900 */
    letter-spacing: 2px;     
    transition: color 0.3s ease;
}

.header-nav a:hover { color: var(--gold-accent); }

/* 3. REDES SOCIALES */
.header-socials {
    width: 300px;
    min-width: 300px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    height: 100%;
    padding-right: 20px;
}

.social-icon {
    color: var(--text-main);
    text-decoration: none;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: var(--gold-accent);
    transform: translateY(-2px);
}

/* --- RESPONSIVE HEADER (Móvil) --- */
@media (max-width: 900px) {
    
    /* 1. Contenedor principal */
    header.header-luxury {
        height: auto; 
        min-height: 140px; 
        flex-direction: column; 
        justify-content: center;
        padding: 20px 0;
        background-color: rgba(0, 0, 0, 0.95); 
    }

    /* 2. Logo */
    .header-logo {
        width: 100%;
        min-width: auto;
        justify-content: center;
        padding: 0;
        margin-bottom: 20px;
    }
    
    .header-logo-img {
        height: 40px; /* Logo más pequeño en móvil */
    }

    /* 3. Menú */
    .header-nav {
        width: 100%;
        border: none;
        padding: 0;
        margin-bottom: 20px;
    }
    
    .header-nav ul {
        justify-content: center;
        flex-wrap: wrap;
        gap: 25px;
    }

    .header-nav a {
        font-size: 0.9rem;
        letter-spacing: 1px;
        padding: 10px;
        display: block;
    }

    /* 4. Redes Sociales */
    .header-socials {
        width: 100%;
        min-width: auto;
        justify-content: center;
        padding: 0;
        gap: 30px;
    }
    
    .social-icon {
        font-size: 1.5rem;
        width: 30px;
        height: 30px;
    }
}



/* Ocultar el cursor circular en celular */
@media (hover: none) {
    #cursor-circle { display: none; }
}