/*Videos 176*/

/*INICIO*/
/*fondo*/
.background-container {
    background-image: url(../img/fondoinicio.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efecto parallax */
    background-repeat: no-repeat;
    min-height: 100vh;
    position: relative;
}
/*pantalla completita*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/*texto presentación*/
body {
    font-family: 'Cormorant Garamond';
    background-color: #fefefe;
    color: white;
    line-height: 1.6;
}
/*header*/
header {
    padding: 1.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px;
    position: relative;
}
header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%; /* Margen izquierdo */
    right: 10%; /* Margen derecho */
    height: 3px; /* Grosor fino */
    background: white;
    opacity: 50%;
    /* O si prefieres un borde más sutil: */
    /* background: rgba(255, 255, 255, 0.2); */
}
nav {
    flex: 2; /* Ocupa más espacio para centrar */
    display: flex;
    justify-content: center; /* Centrar el menú */
}
nav ul {
    display: flex;
    list-style: none;
    gap: 5rem;
    margin: 0;
    padding: 0;
}
nav a {
    text-decoration: none;
    color: white;
    font-family: 'Cormorant Garamond';
    font-weight: 500;
    font-size: 1.7rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    cursor: pointer;
    transition: all 0.3s ease; /* Transición para todos los efectos */
    display: inline-block; /* Necesario para transform */
}
nav a:hover {
    color: #ddb242;
    transform: scale(1.1); /* Efecto de agrandamiento */
    text-shadow: 0 2px 8px rgba(91, 91, 91); /* Sombra sutil para profundidad */
}
.user-menu {
    display: flex;
    justify-content: center;
}
.user-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}
.user-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.5);
}

.user-icon svg {
    transition: transform 0.3s ease;
}

.user-icon:hover svg {
    transform: scale(1.1);
}
/*bienvenida*/
.hero {
    padding: 8rem 4rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.hero h1 {
    font-family: 'Cormorant Garamond';
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.5s forwards;
}
.hero-text {
    font-weight: 550;
    font-size: 1.17rem;
    line-height: 1.8;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 1.1s forwards;
}
.hero-subtitle {
    font-family: 'Cormorant Garamond';
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 3rem;
    font-style: italic;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 1.1s forwards;
    padding-top: 1rem;
}
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* RESPONSIVE */
@media (max-width: 768px) {
    header {
        padding: 1.5rem 2rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        gap: 1.5rem;
    }
    
    .hero {
        padding: 4rem 2rem;
    }
     .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
}