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

body {
    font-family: 'Segoe UI', sans-serif;
    color: #fff;
    background-color: #111;
    line-height: 1.6;
}

/* HERO */
.hero {
    height: 100vh;
    background-image: url('images/beach-bg.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

.overlay {
    background: rgba(0, 0, 0, 0.6);
    height: 100%;
    width: 100%;
    padding: 40px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.overlay h1 {
    font-size: 7vw;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 0 0 10px #ffcc00;
}

.overlay .subtitle {
    font-size: 4vw;
    margin-bottom: 30px;
    color: #f1f1f1;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background-color: transparent;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 30px;
    font-size: 4vw;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 0 15px #ffcc00;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    max-width: 90%;
    margin: 0 auto;
}

.cta-button:hover {
    background-color: #fff;
    color: #000;
    box-shadow: 0 0 25px #fff;
}

/* SECCIONES GENERALES */
section {
    padding: 60px 20px;
    text-align: center;
    background-color: #222;
}

section h2 {
    font-size: 6vw;
    margin-bottom: 20px;
    color: #ffcc00;
    text-shadow: 0 0 10px #ffcc00;
}

section p,
section li {
    max-width: 700px;
    margin: 0 auto 15px auto;
    font-size: 4vw;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    margin-bottom: 10px;
}

.fruta-premio {
    background-color: #333;
    padding: 10px 15px;
    border-left: 5px solid #ffcc00;
    border-radius: 8px;
    font-weight: bold;
    color: #ffd;
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
    transition: transform 0.2s ease;
}

.fruta-premio:hover {
    transform: scale(1.03);
}

/* GALERÍA */
.gallery {
    background-color: #111;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 10px #000;
}

/* FOOTER */
footer {
    background-color: #000;
    color: #aaa;
    text-align: center;
    padding: 30px 15px;
    font-size: 3.5vw;
}

footer a {
    color: #ffcc00;
    text-decoration: none;
}

/* MEDIA QUERIES PARA MEJORAS EN PANTALLAS GRANDES */
@media (min-width: 768px) {
    .overlay h1 {
        font-size: 48px;
    }

    .overlay .subtitle {
        font-size: 20px;
    }

    .cta-button {
        font-size: 18px;
    }

    section h2 {
        font-size: 32px;
    }

    section p,
    section li {
        font-size: 18px;
    }

    footer {
        font-size: 14px;
    }
}