
/* ================================================
   HOME HERO
   ================================================ */
.home-hero { padding: 100px 20px 80px; }

/* Badge tag above title */
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #FFD700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 18px;
    animation: fadeInUp 0.6s ease both;
}
.hero-tag i { font-size: 0.85rem; }

.hero-title-gold {
    color: #FFD700;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 1.5rem;
    animation: fadeInUp 0.9s ease 0.3s both;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: #DC143C;
    font-weight: 800;
    font-size: 0.92rem;
    padding: 13px 26px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    transition: all 0.25s;
    white-space: nowrap;
}
.hero-btn-primary:hover {
    color: #B8001F;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.28);
}

.hero-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: white;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 13px 26px;
    border-radius: 50px;
    border: 1.5px solid rgba(255,255,255,0.35);
    text-decoration: none;
    transition: all 0.25s;
    white-space: nowrap;
}
.hero-btn-outline:hover {
    background: rgba(255,255,255,0.20);
    color: white;
    border-color: rgba(255,255,255,0.55);
    transform: translateY(-2px);
}

/* Stats strip */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 36px;
    animation: fadeInUp 1s ease 0.5s both;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 24px 0 0;
}

.hero-stat:not(:first-child) {
    border-left: 1px solid rgba(255,255,255,0.22);
    padding-left: 24px;
}

.hero-stat-num {
    font-size: 1.8rem;
    font-weight: 900;
    color: #FFD700;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-top: 2px;
}

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

@keyframes blobFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-14px) scale(1.04); }
}

/* ================================================
   WAVE DIVIDER
   ================================================ */
.section-wave-divider {
    position: relative;
    line-height: 0;
    overflow: hidden;
    background: #fff8f8;
    margin-top: -1px;
}
.section-wave-divider svg {
    display: block;
    width: 100%;
    height: 70px;
}
@media (max-width: 575.98px) {
    .section-wave-divider svg { height: 40px; }
}

/* ================================================
   SECTION HEADERS (branded)
   ================================================ */
.home-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.home-section-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #DC143C, #B8001F);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #FFD700;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(220,20,60,0.28);
}

.home-section-title {
    font-size: clamp(1.3rem, 4vw, 1.7rem);
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 3px;
    line-height: 1.2;
}

.home-section-sub {
    font-size: 0.8rem;
    color: #aaa;
    margin: 0;
    line-height: 1.4;
}

/* ================================================
   CALENDAR SECTION
   ================================================ */
.calendar-section {
    background: linear-gradient(180deg, #fff8f8 0%, #fff3f0 50%, #fff8f8 100%);
    position: relative;
    overflow: hidden;
}
.calendar-section::before {
    content: '';
    position: absolute;
    top: -100px; left: -100px;
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(220,20,60,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.calendar-section::after {
    content: '';
    position: absolute;
    bottom: -100px; right: -100px;
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(255,215,0,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.calendar-wrapper {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(220,20,60,0.10), 0 4px 20px rgba(0,0,0,0.07);
    border: 1px solid rgba(220,20,60,0.08);
}

.calendar-header-bar {
    background: linear-gradient(135deg, #DC143C 0%, #8B0000 100%);
    padding: 18px 28px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.cal-icon {
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #FFD700;
    flex-shrink: 0;
}

.cal-title {
    color: white;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.2px;
}

.cal-subtitle {
    color: rgba(255,255,255,0.65);
    font-size: 0.78rem;
    margin-top: 2px;
}

.calendar-legend {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.12);
    padding: 7px 16px;
    border-radius: 20px;
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
}

.legend-dot {
    width: 10px; height: 10px;
    background: #FFD700;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px rgba(255,215,0,0.6);
}

.calendar-body {
    padding: 24px;
}

/* ================================================
   FULLCALENDAR — TOOLBAR
   ================================================ */
.fc .fc-toolbar {
    background: linear-gradient(135deg, #fdf5f5 0%, #fff8f8 100%);
    border: 1px solid rgba(220,20,60,0.09);
    border-radius: 16px;
    padding: 12px 16px;
    margin-bottom: 20px !important;
    box-shadow: 0 2px 12px rgba(220,20,60,0.06);
    gap: 12px;
    flex-wrap: wrap;
}

/* Each toolbar chunk */
.fc .fc-toolbar-chunk {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Visual divider: left nav | center title | right controls */
.fc .fc-toolbar-chunk:nth-child(1) {
    padding-right: 12px;
    border-right: 1.5px solid rgba(220,20,60,0.12);
}
.fc .fc-toolbar-chunk:nth-child(3) {
    padding-left: 12px;
    border-left: 1.5px solid rgba(220,20,60,0.12);
}

.fc .fc-toolbar-title { font-size: 1.25rem; font-weight: 800; color: #1a1a1a; letter-spacing: -0.3px; }

.fc .fc-button-primary {
    background: linear-gradient(135deg, #DC143C, #B8001F) !important;
    border-color: transparent !important;
    font-weight: 700 !important;
    transition: all 0.2s !important;
    box-shadow: 0 3px 10px rgba(220,20,60,0.22) !important;
}
.fc .fc-button-primary:hover {
    background: linear-gradient(135deg, #B8001F, #8B0000) !important;
    border-color: transparent !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 16px rgba(220,20,60,0.35) !important;
}

/* Circular prev / next — standalone buttons */
.fc .fc-prev-button, .fc .fc-next-button {
    border-radius: 50% !important;
    width: 42px !important; height: 42px !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important; justify-content: center !important;
    font-size: 1rem !important;
}

/* Today pill */
.fc .fc-today-button {
    border-radius: 20px !important;
    padding: 8px 18px !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.3px !important;
    text-transform: uppercase !important;
}
.fc .fc-today-button:disabled {
    background: rgba(220,20,60,0.25) !important;
    border-color: transparent !important;
    transform: none !important;
    box-shadow: none !important;
}

/* View switcher (Month / List) */
.fc .fc-button-group {
    gap: 4px;
}
.fc .fc-button-group .fc-button {
    border-radius: 8px !important;
    font-size: 0.82rem !important;
    padding: 8px 18px !important;
    letter-spacing: 0.2px !important;
}

/* Active view = gold */
.fc .fc-button-primary:not(:disabled).fc-button-active {
    background: linear-gradient(135deg, #FFD700, #FFA500) !important;
    color: #8B0000 !important;
    border-color: transparent !important;
    box-shadow: 0 3px 10px rgba(255,215,0,0.4) !important;
}

/* ================================================
   FULLCALENDAR — MONTH GRID
   ================================================ */
.fc-theme-standard .fc-scrollgrid { border-color: #f0f0f0; }
.fc-theme-standard td, .fc-theme-standard th { border-color: #f2f2f2; }
.fc .fc-col-header-cell { background: linear-gradient(180deg, #fdf5f5, #fafafa); padding: 6px 0; }
.fc .fc-col-header-cell-cushion { color: #DC143C; font-weight: 700; font-size: 0.75rem; letter-spacing: 1px; text-transform: uppercase; text-decoration: none !important; padding: 8px 4px; }
.fc .fc-daygrid-day { transition: background 0.15s; }
.fc .fc-daygrid-day:hover { background: rgba(220,20,60,0.03); }
.fc .fc-day-today { background: linear-gradient(135deg, rgba(255,215,0,0.09), rgba(255,165,0,0.05)) !important; }
.fc .fc-daygrid-day-number { color: #555; font-weight: 600; font-size: 0.88rem; text-decoration: none !important; padding: 6px 10px; }
.fc .fc-day-today .fc-daygrid-day-number {
    color: #DC143C; font-weight: 800;
    background: rgba(220,20,60,0.10); border-radius: 50%;
    width: 28px; height: 28px;
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0; margin: 4px;
}
.fc .fc-day-sat .fc-daygrid-day-number, .fc .fc-day-sun .fc-daygrid-day-number { color: #bbb; }

/* White card event pill with red left accent */
.fc-daygrid-event {
    background: #fff !important;
    border: none !important;
    border-left: 3px solid #DC143C !important;
    border-radius: 0 8px 8px 0 !important;
    padding: 3px 8px 3px 7px !important;
    font-size: 0.73rem !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07), 0 0 0 1px rgba(220,20,60,0.07) !important;
    margin-bottom: 3px !important;
    cursor: pointer !important;
    transition: transform 0.15s, box-shadow 0.15s !important;
    overflow: hidden !important;
}
.fc-daygrid-event .fc-event-title { color: #1a1a1a !important; overflow: hidden; text-overflow: ellipsis; }
.fc-daygrid-event:hover {
    background: rgba(220,20,60,0.04) !important;
    box-shadow: 0 4px 14px rgba(220,20,60,0.18), 0 0 0 1px rgba(220,20,60,0.12) !important;
    transform: translateX(2px) !important;
    border-left-color: #B8001F !important;
}
.fc-daygrid-event.fc-event-featured {
    border-left-color: #E8A000 !important;
    box-shadow: 0 2px 8px rgba(255,200,0,0.18), 0 0 0 1px rgba(255,215,0,0.14) !important;
}
.fc-daygrid-event.fc-event-featured .fc-event-title { color: #7a4800 !important; }
.fc-daygrid-event.fc-event-featured:hover {
    background: rgba(255,200,0,0.06) !important;
    box-shadow: 0 4px 14px rgba(255,180,0,0.28), 0 0 0 1px rgba(255,215,0,0.22) !important;
    border-left-color: #FFD700 !important;
}

/* "+N more" link */
.fc .fc-daygrid-more-link {
    color: #DC143C !important; font-weight: 700 !important; font-size: 0.72rem !important;
    background: rgba(220,20,60,0.07) !important; border-radius: 10px !important;
    padding: 2px 8px !important; text-decoration: none !important;
    transition: background 0.15s !important;
}
.fc .fc-daygrid-more-link:hover { background: rgba(220,20,60,0.14) !important; color: #B8001F !important; }

/* ================================================
   FULLCALENDAR — LIST VIEW (REDESIGNED)
   ================================================ */
.fc .fc-list-table {
    border-collapse: separate !important;
    border-spacing: 0 4px !important;
    padding: 0 2px !important;
}

/* Day separator */
.fc .fc-list-day th { background: transparent !important; padding: 0 !important; }
.fc .fc-list-day-cushion {
    background: transparent !important;
    padding: 18px 12px 8px !important;
    display: flex !important; align-items: center !important; gap: 10px !important;
}
.fc .fc-list-day-cushion::after {
    content: '' !important; flex: 1 !important; height: 1.5px !important;
    background: linear-gradient(to right, rgba(220,20,60,0.18), transparent) !important;
    display: block !important; border-radius: 2px !important;
}
.fc .fc-list-day-text {
    background: linear-gradient(135deg, #DC143C, #B8001F) !important;
    color: white !important; font-weight: 800 !important; font-size: 0.78rem !important;
    text-decoration: none !important; padding: 5px 14px !important;
    border-radius: 20px !important; box-shadow: 0 3px 12px rgba(220,20,60,0.30) !important;
    letter-spacing: 0.3px !important; white-space: nowrap !important;
}
.fc .fc-list-day-side-text {
    color: #aaa !important; font-weight: 700 !important; font-size: 0.72rem !important;
    text-decoration: none !important; text-transform: uppercase !important;
    letter-spacing: 0.8px !important; order: -1 !important;
}

/* Event rows */
.fc .fc-list-event td {
    background: white !important; border-top: none !important; border-bottom: none !important;
    vertical-align: middle !important; transition: background 0.18s !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.055) !important;
}
.fc .fc-list-event .fc-list-event-graphic {
    border-left: 4px solid #DC143C !important;
    padding: 20px 14px 20px 18px !important; width: 54px !important;
    border-top-left-radius: 14px !important; border-bottom-left-radius: 14px !important;
    transition: background 0.18s, border-left-color 0.18s !important;
}
.fc .fc-list-event-dot {
    border: none !important; width: 13px !important; height: 13px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #DC143C, #B8001F) !important;
    display: inline-block !important; vertical-align: middle !important;
    box-shadow: 0 0 0 4px rgba(220,20,60,0.12), 0 2px 8px rgba(220,20,60,0.38) !important;
}
.fc .fc-list-event-time {
    padding: 20px 10px !important; font-size: 0.7rem !important;
    font-weight: 700 !important; color: #ccc !important;
    white-space: nowrap !important; letter-spacing: 0.2px !important;
}
.fc .fc-list-event-title {
    padding: 20px 54px 20px 4px !important; position: relative !important;
    border-top-right-radius: 14px !important; border-bottom-right-radius: 14px !important;
}
.fc .fc-list-event-title::after {
    content: '→';
    position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
    font-size: 1rem; font-weight: 700; color: #e0e0e0; line-height: 1;
    transition: color 0.18s, right 0.18s;
}
.fc .fc-list-event-title a {
    color: #1a1a1a !important; text-decoration: none !important;
    font-weight: 700 !important; font-size: 0.96rem !important;
    line-height: 1.38 !important; display: block !important; transition: color 0.18s !important;
}

/* Hover */
.fc .fc-list-event:hover td { background: #fff8f8 !important; cursor: pointer !important; }
.fc .fc-list-event:hover .fc-list-event-graphic { background: rgba(220,20,60,0.07) !important; border-left-color: #B8001F !important; }
.fc .fc-list-event:hover .fc-list-event-title a { color: #DC143C !important; }
.fc .fc-list-event:hover .fc-list-event-title::after { color: #DC143C !important; right: 16px !important; }

/* Featured */
.fc .fc-list-event.fc-event-featured td { background: #fffdf5 !important; }
.fc .fc-list-event.fc-event-featured .fc-list-event-graphic { border-left-color: #E8A000 !important; background: rgba(255,215,0,0.06) !important; }
.fc .fc-list-event.fc-event-featured .fc-list-event-dot { background: linear-gradient(135deg, #FFD700, #FFA500) !important; box-shadow: 0 0 0 4px rgba(255,215,0,0.18), 0 2px 8px rgba(255,165,0,0.42) !important; }
.fc .fc-list-event.fc-event-featured .fc-list-event-title a { color: #7a3800 !important; }
.fc .fc-list-event.fc-event-featured .fc-list-event-title::before { content: '★'; color: #FFA500; font-size: 0.7rem; margin-right: 6px; vertical-align: middle; }
.fc .fc-list-event.fc-event-featured:hover td { background: #fff9e6 !important; }
.fc .fc-list-event.fc-event-featured:hover .fc-list-event-graphic { border-left-color: #FFD700 !important; background: rgba(255,215,0,0.10) !important; }
.fc .fc-list-event.fc-event-featured:hover .fc-list-event-title a { color: #c05a00 !important; }
.fc .fc-list-event.fc-event-featured:hover .fc-list-event-title::after { color: #FFA500 !important; right: 16px !important; }

/* Empty state */
.fc .fc-list-empty { background: transparent !important; }
.fc .fc-list-empty-cushion { padding: 56px 24px !important; text-align: center !important; color: #bbb !important; font-size: 0.92rem !important; font-weight: 600 !important; }
.fc .fc-list-empty-cushion::before { content: '📅'; display: block; font-size: 2.8rem; margin-bottom: 14px; opacity: 0.5; }

/* ================================================
   POSTS SECTION
   ================================================ */
.post-scroll-wrapper {
    position: relative;
}
.post-scroll-wrapper::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 56px; height: calc(100% - 8px);
    background: linear-gradient(to left, #f9f9f9, transparent);
    pointer-events: none;
    z-index: 2;
}
@media (min-width: 992px) { .post-scroll-wrapper::after { display: none; } }

.post-scroll-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.post-scroll-track::-webkit-scrollbar { display: none; }

.post-scroll-item {
    flex: 0 0 auto;
    width: 78vw;
    scroll-snap-align: start;
}
@media (min-width: 480px) { .post-scroll-item { width: 58vw; } }
@media (min-width: 768px) { .post-scroll-item { width: 280px; } }
@media (min-width: 992px) { .post-scroll-item { width: calc((100% - 32px) / 3); } }

.post-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(220,20,60,0.06);
}
.post-card:hover { transform: translateY(-5px); box-shadow: 0 12px 35px rgba(220,20,60,0.14); }

.post-thumb-wrap {
    position: relative;
    width: 100%; padding-top: 56.25%;
    overflow: hidden;
    background: #111; flex-shrink: 0;
}
.post-thumb-wrap img {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover; transition: transform 0.4s;
}
.post-card:hover .post-thumb-wrap img { transform: scale(1.06); }

.post-play-btn {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 48px; height: 48px;
    background: rgba(220,20,60,0.88);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.25rem;
    backdrop-filter: blur(2px);
    box-shadow: 0 4px 16px rgba(220,20,60,0.4);
    transition: all 0.25s; pointer-events: none;
}
.post-card:hover .post-play-btn { background: #DC143C; transform: translate(-50%, -50%) scale(1.12); }

.post-thumb-placeholder {
    position: relative; padding-top: 56.25%;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0); flex-shrink: 0;
}
.post-thumb-placeholder i {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem; color: #ccc;
}

.post-body {
    padding: 14px 16px 16px;
    display: flex; flex-direction: column; flex: 1;
}
.post-title {
    font-size: 0.9rem; font-weight: 700; color: #1a1a1a;
    line-height: 1.45; margin-bottom: 0.5rem;
    overflow: hidden; display: -webkit-box;
    -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.post-footer {
    display: flex; align-items: center; justify-content: space-between;
    gap: 8px; margin-top: auto; padding-top: 10px;
    border-top: 1px solid #f2f2f2;
}
.post-date {
    font-size: 0.72rem; color: #bbb;
    display: flex; align-items: center; gap: 4px;
}
.post-date i { color: #DC143C; font-size: 0.75rem; }
.post-watch-btn {
    display: inline-flex; align-items: center; gap: 5px;
    background: linear-gradient(135deg, #DC143C, #B8001F);
    color: white; text-decoration: none;
    padding: 6px 14px; border-radius: 20px;
    font-size: 0.75rem; font-weight: 600;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(220,20,60,0.2); white-space: nowrap;
}
.post-watch-btn:hover { color: white; transform: translateY(-1px); box-shadow: 0 5px 16px rgba(220,20,60,0.4); }

/* Scroll dots indicator */
.post-scroll-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
}
.post-scroll-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(220,20,60,0.20);
    transition: background 0.2s, width 0.2s;
}
.post-scroll-dot.active {
    background: #DC143C;
    width: 18px;
    border-radius: 3px;
}
@media (min-width: 992px) { .post-scroll-dots { display: none; } }

/* ================================================
   CTA SECTION
   ================================================ */
.home-cta {
    background: linear-gradient(135deg, #DC143C 0%, #8B0000 100%);
    position: relative;
    overflow: hidden;
}
.home-cta-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.home-cta-blob--1 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,215,0,0.10) 0%, transparent 70%);
    top: -150px; right: -100px;
    animation: blobFloat 8s ease-in-out infinite;
}
.home-cta-blob--2 {
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    bottom: -100px; left: -50px;
    animation: blobFloat 10s ease-in-out infinite reverse;
}

.home-cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 60px 20px;
}

.home-cta-icon {
    width: 70px; height: 70px;
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255,255,255,0.22);
    border-radius: 22px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: #FFD700;
    margin: 0 auto 20px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.15);
}

.home-cta-title {
    font-size: clamp(1.4rem, 5vw, 2rem);
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.home-cta-sub {
    font-size: clamp(0.88rem, 2.5vw, 1.05rem);
    color: rgba(255,255,255,0.78);
    margin-bottom: 28px;
    max-width: 480px;
    margin-left: auto; margin-right: auto;
    line-height: 1.6;
}

.home-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: white;
    color: #DC143C;
    font-weight: 800;
    font-size: 0.95rem;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    transition: all 0.25s;
}
.home-cta-btn:hover {
    color: #B8001F;
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.25);
}

/* ================================================
   EVENT MODAL
   ================================================ */
.event-modal-header {
    background: linear-gradient(135deg, #DC143C, #8B0000);
    color: white;
    border: none;
    padding: 16px 20px;
}
.event-modal-header .btn-close { filter: brightness(0) invert(1); }

.modal-event-img {
    width: 100%;
    max-height: 260px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 16px;
}

.modal-info-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
}
.modal-info-row:last-child { border-bottom: none; }

.modal-info-icon {
    width: 32px; height: 32px;
    background: rgba(220,20,60,0.08);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #DC143C; font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.modal-info-label {
    font-size: 0.68rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 2px;
}

.modal-info-value {
    font-size: 0.9rem;
    color: #222;
    font-weight: 600;
    line-height: 1.4;
}

.modal-ticket-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #8B0000;
    font-weight: 800;
    font-size: 1rem;
    padding: 14px 24px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(255,215,0,0.4);
    transition: all 0.25s;
    width: 100%;
}
.modal-ticket-btn:hover {
    color: #8B0000;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255,215,0,0.55);
}

/* ================================================
   MOBILE — phone (< 576px)
   ================================================ */
@media (max-width: 575.98px) {
    /* Hero */
    .hero-tag { font-size: 0.72rem; padding: 5px 13px; margin-bottom: 14px; }

    .hero-subtitle {
        font-size: 0.88rem;
        margin-bottom: 1.5rem;
        padding: 0 4px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .hero-btn-primary, .hero-btn-outline {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 14px 20px;
        font-size: 0.9rem;
    }

    .hero-stats {
        gap: 0;
        margin-top: 28px;
    }
    .hero-stat { padding: 0 16px 0 0; }
    .hero-stat:not(:first-child) { padding-left: 16px; }
    .hero-stat-num { font-size: 1.5rem; }
    .hero-stat-label { font-size: 0.62rem; }

    /* Section headers */
    .home-section-header { gap: 12px; margin-bottom: 20px; }
    .home-section-icon { width: 44px; height: 44px; font-size: 1.1rem; border-radius: 12px; }
    .home-section-title { font-size: 1.2rem; }

    /* Calendar */
    .calendar-header-bar { padding: 14px 16px; gap: 10px; }
    .cal-icon { width: 38px; height: 38px; font-size: 1.05rem; border-radius: 10px; }
    .cal-title { font-size: 0.92rem; }
    .cal-subtitle { font-size: 0.72rem; }
    .calendar-body { padding: 12px; }

    .fc .fc-toolbar { flex-direction: column; gap: 10px; padding: 10px 12px; }
    .fc .fc-toolbar-chunk {
        display: flex; justify-content: center; width: 100%;
        padding-left: 0 !important; padding-right: 0 !important;
        border-left: none !important; border-right: none !important;
    }
    .fc .fc-toolbar-chunk:nth-child(1) { padding-bottom: 10px; border-bottom: 1.5px solid rgba(220,20,60,0.10); }
    .fc .fc-toolbar-chunk:nth-child(3) { padding-top: 10px; border-top: 1.5px solid rgba(220,20,60,0.10); }
    .fc .fc-toolbar-title { font-size: 1.05rem; padding: 2px 0; }
    .fc .fc-prev-button, .fc .fc-next-button { width: 36px !important; height: 36px !important; font-size: 0.9rem !important; }
    .fc .fc-today-button { padding: 6px 16px !important; font-size: 0.75rem !important; }
    .fc .fc-button-group .fc-button { padding: 6px 14px !important; font-size: 0.75rem !important; }
    .fc .fc-daygrid-day-number { font-size: 0.78rem; padding: 3px 5px; }
    .fc .fc-col-header-cell-cushion { font-size: 0.68rem; padding: 4px 2px; }
    .fc .fc-daygrid-day-frame { min-height: 42px !important; }
    .fc-daygrid-event { font-size: 0.62rem !important; padding: 1px 4px !important; }
    .fc .fc-list-event .fc-list-event-graphic { padding: 14px 10px 14px 14px !important; width: 46px !important; border-top-left-radius: 11px !important; border-bottom-left-radius: 11px !important; }
    .fc .fc-list-event-title { padding: 14px 44px 14px 4px !important; border-top-right-radius: 11px !important; border-bottom-right-radius: 11px !important; }
    .fc .fc-list-event-title a { font-size: 0.88rem !important; }
    .fc .fc-list-event-title::after { right: 14px; font-size: 0.9rem; }
    .fc .fc-list-event-time { padding: 14px 8px !important; font-size: 0.65rem !important; }
    .fc .fc-list-event-dot { width: 11px !important; height: 11px !important; }
    .fc .fc-list-day-cushion { padding: 14px 10px 6px !important; }
    .fc .fc-list-day-text { font-size: 0.72rem !important; padding: 4px 11px !important; }
    .fc .fc-list-day-side-text { font-size: 0.65rem !important; }

    /* CTA */
    .home-cta-inner { padding: 48px 16px; }
    .home-cta-icon { width: 60px; height: 60px; font-size: 1.6rem; border-radius: 18px; margin-bottom: 16px; }
    .home-cta-btn { width: 100%; max-width: 300px; justify-content: center; padding: 15px; font-size: 0.92rem; }

    /* Modal */
    .modal-dialog { margin: 8px; }
    .modal-body { padding: 16px; }
    .event-modal-header { padding: 14px 16px; }
    .modal-ticket-btn { font-size: 0.92rem; padding: 13px 20px; }
}

/* ================================================
   TOUCH DEVICES
   ================================================ */
@media (hover: none) and (pointer: coarse) {
    .post-card { transition: none; }
    .post-card:active { transform: scale(0.98); }
    .hero-btn-primary:active, .hero-btn-outline:active { transform: scale(0.97); }
}
