/* Variables CSS */
:root {
    --color-fondo: #100010; /* Morado muy oscuro, casi negro */
    --color-primario: #FFC0CB; /* Rosa claro vibrante */
    --color-secundario: #FFD700; /* Dorado brillante */
    --color-texto-claro: #f0f0f0;
    --color-card-fondo: #1a011a; /* Un tono un poco más claro para las tarjetas */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

/* Estilos Generales del Cuerpo */
body {
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    background-color: var(--color-fondo);
    color: var(--color-texto-claro);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased; /* Suaviza las fuentes en Webkit */
    -moz-osx-font-smoothing: grayscale; /* Suaviza las fuentes en Firefox */
}

/* Utilidades */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.text-center {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background-color: var(--color-primario);
    color: var(--color-fondo);
    border: 2px solid var(--color-primario);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-primario);
}

.btn-secondary {
    background-color: var(--color-secundario);
    color: var(--color-fondo);
    border: 2px solid var(--color-secundario);
}

.btn-secondary:hover {
    background-color: transparent;
    color: var(--color-secundario);
}

h1, h2 {
    font-family: var(--font-heading);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--color-primario);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

/* Encabezado */
header {
    background-color: var(--color-fondo);
    padding: 20px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header .logo {
    max-width: 180px; /* Tamaño un poco más grande para el logo */
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Sección Principal / Hero */
.hero {
    position: relative;
    width: 100%;
    height: 90vh; /* Mayor altura para impacto visual */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: var(--color-fondo);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../[URL_IMAGEN_PRINCIPAL_DE_ARENA_ROSE]') no-repeat center center/cover; /* Reemplaza con tu imagen principal */
    filter: brightness(0.6) saturate(1.1); /* Oscurece y da un poco más de vida */
    z-index: 1;
    transform: scale(1.02); /* Pequeño truco para cubrir bordes si la imagen se mueve ligeramente */
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--color-texto-claro);
    padding: 20px;
    max-width: 90%;
    animation: fadeInScale 1s ease-out forwards;
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.hero-content h1 {
    font-size: 3.5em; /* Para móviles */
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 1.15em;
    max-width: 650px;
    margin: 0 auto 30px auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    font-weight: 300;
}

/* Botón de Reserva */
.reservation-section {
    background-color: var(--color-fondo);
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.reservation-section .btn {
    padding: 22px 60px;
    font-size: 1.7em;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(255, 192, 203, 0.4); /* Sombra con el color primario */
}

/* Próximos Eventos */
.events-section {
    padding: 80px 0;
    background-color: var(--color-fondo);
    text-align: center;
}

.events-section h2 {
    font-size: 3em;
    margin-bottom: 50px;
}

.event-grid {
    display: grid;
    grid-template-columns: 1fr; /* Una columna para móviles */
    gap: 40px;
    justify-content: center;
    align-items: stretch;
}

.event-card {
    background-color: var(--color-card-fondo);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 215, 0, 0.1); /* Borde sutil dorado */
}

.event-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2); /* Sombra al pasar el ratón */
}

.event-card-thumbnail {
    width: 100%;
    height: 350px; /* Altura generosa para miniaturas en móvil */
    object-fit: cover;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.event-card-info {
    padding: 25px;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.event-card-info p {
    margin: 0;
    font-size: 1.15em;
    color: var(--color-texto-claro);
}

.event-card-info strong {
    color: var(--color-secundario);
    font-weight: 600;
}

.event-card-footer {
    padding: 25px;
    text-align: center;
    background-color: rgba(255, 215, 0, 0.05); /* Fondo sutil dorado */
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.event-card-footer span {
    font-size: 1.1em;
    color: var(--color-primario);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Galería */
.gallery-section {
    padding: 80px 0;
    background-color: var(--color-fondo);
}

.gallery-section h2 {
    font-size: 3em;
    margin-bottom: 50px;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columnas para móviles */
    gap: 0; /* Sin separación */
}

.gallery-item {
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 200px; /* Altura fija para uniformidad en móviles */
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-item img:hover {
    transform: scale(1.1);
    filter: brightness(0.8);
}

/* Playlist */
.playlist-section {
    padding: 80px 0;
    background-color: var(--color-fondo);
    text-align: center;
}

.playlist-section h2 {
    font-size: 3em;
    margin-bottom: 50px;
}

.playlist-item {
    background-color: var(--color-card-fondo);
    border-radius: 15px;
    margin-bottom: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 192, 203, 0.1);
}

.playlist-item p {
    margin: 0;
    font-size: 1.2em;
    color: var(--color-texto-claro);
    font-weight: 600;
    text-align: center;
}

.playlist-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.playlist-buttons .btn {
    padding: 10px 20px;
    font-size: 0.95em;
    border-radius: 8px;
    box-shadow: none; /* Sin sombra extra en botones pequeños */
}

/* Sección con Logo Grande */
.large-logo-section {
    padding: 100px 0;
    background-color: var(--color-fondo);
    display: flex;
    justify-content: center;
    align-items: center;
}

.large-logo-section img {
    max-width: 90%; /* Más grande en pantallas pequeñas */
    height: auto;
    opacity: 0.2; /* Más transparente para un efecto de marca de agua */
    filter: grayscale(100%); /* Blanco y negro para efecto sutil */
    transition: opacity 0.5s ease;
}

/* Pie de Página */
footer {
    background-color: #050005; /* Un tono aún más oscuro para el pie */
    padding: 40px 0;
    text-align: center;
    color: var(--color-texto-claro);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer a {
    color: var(--color-secundario);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.3em;
    transition: color 0.3s ease;
}

footer a img {
    width: 35px;
    height: 35px;
}

footer a:hover {
    color: var(--color-primario);
    text-decoration: underline;
}

/* Media Queries para Responsividad */
@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 5em; /* Tamaño de fuente más grande para tabletas y escritorios */
    }

    .event-grid {
        grid-template-columns: repeat(2, 1fr); /* Dos columnas para tabletas */
    }

    .event-card-thumbnail {
        height: 280px; /* Ajuste de altura para miniaturas */
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr); /* Tres columnas en tabletas */
    }

    .gallery-item img {
        height: 250px; /* Mayor altura en tabletas */
    }

    .playlist-item {
        flex-direction: row;
        text-align: left;
    }

    .playlist-item p {
        text-align: left;
        flex-grow: 1;
    }

    .playlist-buttons {
        justify-content: flex-end;
    }

    .large-logo-section img {
        max-width: 60%;
    }
}

@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 7.5em; /* Aún más grande en pantallas de escritorio */
    }

    .hero-content p {
        font-size: 1.3em;
    }

    .event-grid {
        grid-template-columns: repeat(3, 1fr); /* Tres columnas para escritorios */
    }

    .event-card-thumbnail {
        height: 300px;
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr); /* Cuatro columnas en escritorios */
    }

    .gallery-item img {
        height: 300px; /* Altura para escritorios */
    }

    .large-logo-section img {
        max-width: 40%;
    }
}

@media (min-width: 1200px) {
     .gallery-grid {
        grid-template-columns: repeat(5, 1fr); /* Cinco columnas en pantallas muy grandes */
    }
}