/* ==========================================================================
   ESTILOS PÚBLICOS - CLUB DE TIRO DEPORTIVO CATAMARCA (FONDO CLARO)
   Paleta de Colores del Logo: Indigo/Púrpura (#4C398E) y Naranja (#F27A22)
   ========================================================================== */

:root {
    --brand-indigo: #4C398E;
    --brand-indigo-dark: #2E2A85;
    --brand-orange: #F27A22;
    --brand-orange-hover: #d96316;
    --brand-gold: #F9A01B;
    
    --bg-light: #f8fafc;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
}

/* Colores de Marca */
.text-indigo {
    color: var(--brand-indigo) !important;
}

.bg-indigo {
    background-color: var(--brand-indigo) !important;
}

.text-orange {
    color: var(--brand-orange) !important;
}

.btn-orange {
    background-color: var(--brand-orange) !important;
    border-color: var(--brand-orange) !important;
    transition: all 0.25s ease;
}

.btn-orange:hover {
    background-color: var(--brand-orange-hover) !important;
    border-color: var(--brand-orange-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(242, 122, 34, 0.35);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 130px 0 100px;
    background-color: #0f172a;
    background-image: linear-gradient(180deg, rgba(15, 23, 42, 0.70) 0%, rgba(15, 23, 42, 0.84) 100%), url('../img/fondo-test.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(242, 122, 34, 0.2);
    color: #ff9d4d;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 24px;
    border: 1px solid rgba(242, 122, 34, 0.45);
    backdrop-filter: blur(6px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.15;
    color: #ffffff !important;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.7);
    margin-bottom: 20px;
    -webkit-text-fill-color: #ffffff;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #f1f5f9 !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    max-width: 760px;
    margin: 0 auto 36px;
    line-height: 1.65;
}

/* Secciones */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--brand-indigo-dark);
    margin-bottom: 12px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 48px;
}

/* Tarjetas Modalidades */
.card-modalidad {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.card-modalidad:hover {
    transform: translateY(-5px);
    border-color: var(--brand-indigo);
    box-shadow: 0 10px 30px rgba(76, 57, 142, 0.08);
}

.modalidad-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(76, 57, 142, 0.08);
    color: var(--brand-indigo);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

/* Calendario */
.card-event {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card-event:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-color: rgba(242, 122, 34, 0.3);
}

.event-date {
    font-weight: 700;
    color: var(--brand-orange);
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge-status {
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-programado {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.badge-cancelado {
    background-color: rgba(220, 38, 38, 0.1);
    color: #dc2626;
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.badge-finalizado {
    background-color: #f1f5f9;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

/* ==========================================================================
   CALENDARIO VISUAL DE EVENTOS Y FLYERS
   ========================================================================== */
.calendar-event-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.calendar-event-card:hover {
    transform: translateY(-4px);
    border-color: rgba(242, 122, 34, 0.4);
    box-shadow: 0 12px 28px rgba(76, 57, 142, 0.09) !important;
}

.calendar-date-badge {
    min-width: 64px;
    text-align: center;
    background: #ffffff;
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.calendar-date-badge .month-header {
    background-color: var(--brand-indigo);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 3px 6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.calendar-date-badge .day-number {
    font-size: 1.45rem;
    font-weight: 900;
    color: var(--brand-indigo-dark);
    line-height: 1.1;
    padding-top: 4px;
}

.calendar-date-badge .day-name {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-muted);
    padding-bottom: 4px;
}

.event-flyer-cover {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.calendar-event-card:hover .event-flyer-cover {
    transform: scale(1.03);
}

.event-flyer-container {
    position: relative;
    overflow: hidden;
    background-color: #0f172a;
}

