:root {
    --primary-color: #f7a1a6; /* Tono rosa basado en tu imagen */
    --primary-dark: #e08287;
    --text-color: #4a4a4a;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.4);
    --shadow: 0 8px 32px 0 rgba(224, 130, 135, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body, html {
    min-height: 100%;
    width: 100%;
    overflow-x: hidden; /* Permite scroll vertical pero previene scroll horizontal */
}

/* Contenedor del fondo */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #fdf2f4;
    background-image: url('fondo.png'); 
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    z-index: -1;
}

/* Efecto sutil para que los botones y el texto resalten mejor */
.background-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(2px);
}

.content-wrapper {
    min-height: 100vh; /* Permite que el contenedor crezca si hay más contenido */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

/* Tipografía y Título Principal */
.welcome-text {
    font-size: 5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #f7a1a6 0%, #e08287 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInDown 1s ease-out;
}

/* Horarios (texto pequeño) */
.schedule-text {
    text-align: center;
    color: var(--text-color);
    font-size: 0.95rem;
    font-weight: 700;
    margin-top: -0.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

/* Contenedor de Botones */
.buttons-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 400px;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

/* Estilos de los Botones (Glassmorphism) */
.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.2rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-dark);
    text-decoration: none;
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    border-radius: 50px;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(10px);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px 0 rgba(224, 130, 135, 0.4);
    background: var(--white);
    color: var(--primary-color);
}

.btn:active {
    transform: translateY(1px);
}

/* Redes Sociales */
.social-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
    width: 100%;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
}

.icon-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.5rem;
    color: var(--primary-dark);
    text-decoration: none;
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    border-radius: 50%; /* Botones circulares */
    box-shadow: var(--shadow);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(10px);
}

.icon-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(224, 130, 135, 0.4);
    background: var(--white);
    color: var(--primary-color);
}

/* Animaciones */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsividad para móviles */
@media (max-width: 768px) {
    .welcome-text { font-size: 4rem; }
    .content-wrapper { padding: 1.5rem; }
}

@media (max-width: 480px) {
    .welcome-text { font-size: 3rem; margin-bottom: 3rem; }
}
