/* ========== HERO ========== */
.hero {
    text-align: center;
    padding: 90px 20px 70px;
    color: white;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    line-height: 1.15;
    margin: 0 0 16px;
    text-transform: uppercase;
    text-wrap: balance;
}

.hero p {
    font-size: 1.2rem;
    color: var(--gray-light-color);
    line-height: 1.5;
    margin: 0 auto 28px;
    max-width: 620px;
    text-wrap: pretty;
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn-primary {
    background-color: var(--yellow-light-color);
    color: var(--primary-text-color);
    text-decoration: none;
    font-weight: bold;
    padding: 12px 26px;
    border-radius: 24px;
    display: inline-block;
    transition: transform 0.2s ease;
}

.hero-btn-primary:hover {
    transform: scale(1.05);
}

.hero-btn-ghost {
    color: var(--gray-light-color);
    text-decoration: none;
    padding: 12px 26px;
    border: 1px solid var(--gray-light-color);
    border-radius: 24px;
    display: inline-block;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.hero-btn-ghost:hover {
    color: var(--yellow-light-color);
    border-color: var(--yellow-light-color);
}

/* ========== SECCIONES ========== */
.eventos-destacados,
.call-to-action-fotografos {
    padding: 50px 20px;
    text-align: center;
    color: white;
}

.eventos-destacados h2 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 30px;
    font-size: 2rem;
}

/* Grid de eventos (movido desde el inline en index.php) */
.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.card {
    background: var(--secundary-bg-color);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: white;
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}

.card-thumb {
    aspect-ratio: 4 / 3;
    width: 100%;
    background-image: linear-gradient(135deg, var(--secundary-bg-color), var(--primary-bg-color));
    border-bottom: 2px solid var(--yellow-light-color);
}

.card-body {
    padding: 16px;
}

.card-title {
    margin: 0 0 6px;
    font-weight: bold;
    font-size: 1.05rem;
}

.card-meta {
    margin: 0;
    font-size: 0.85rem;
    color: var(--gray-light-color);
}

/* Boton CTA extra */
.call-to-action-fotografos {
    background-color: rgba(255, 255, 255, 0.03);
    margin: 40px 0 0;
}

.call-to-action-fotografos p {
    font-size: 1.2rem;
    margin-bottom: 22px;
}

/* ========== RESPONSIVO ========== */
@media (max-width: 720px) {
    .hero {
        padding: 60px 18px 48px;
    }

    .hero h1 {
        font-size: 2.1rem;
    }

    .hero p {
        font-size: 1.05rem;
    }

    .eventos-destacados h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 420px) {
    .hero h1 {
        font-size: 1.7rem;
    }

    .event-grid {
        grid-template-columns: 1fr;
    }
}