
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;700&family=Lato:wght@400;700&display=swap');

:root {
    --font-heading: 'Lora', serif;
    --font-body: 'Lato', sans-serif;
    --primary-color: #b74343;
    --primary-color-rgb: 183, 67, 67;
    --timeline-color: #FFFFFF;
    --secondary-color: #D47468;
    --accent-color: #d1d1d1;
    --bg-light: #fdfaf4;
    --text-dark: #212529;
    --text-muted: #6c757d;
    --border-color: rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: #C76B6B; 
    border-color: #C76B6B; 
}

.btn-primary:hover {
    background-color: #6BC7C7; 
    border-color: #6BC7C7;
}


body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    padding-top: 0;
}

main {
    position: relative;
    z-index: 10;
    background-color: var(--bg-light); 
}


.hero-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 1rem;
    padding-bottom: 1rem;
    z-index: 20;
}
.hero-brand-container, .hero-nav {
    background: rgba(0,0,0,0.25);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.25rem;
    color: white;
}
.hero-brand-container { display: flex; align-items: center; gap: 1rem; }
.hero-brand-logo { height: 90px; filter: drop-shadow(0 2px 3px rgba(0,0,0,0.5)); }
.hero-brand-text h1 { font-size: 1.5rem; margin: 0; line-height: 1.2; text-shadow: 0 1px 3px rgba(0,0,0,0.6); }
.hero-brand-text p { font-size: 0.8rem; margin: 0; opacity: 0.9; }
.hero-nav .nav-link { color: white; font-weight: bold; padding: 0.4rem 0.9rem; border-radius: 50px; transition: background-color 0.2s ease; text-shadow: 0 1px 2px rgba(0,0,0,0.7); }
.hero-nav .nav-link:hover { background-color: rgba(255,255,255,0.2); }


.hero-section { position: relative; height: 35vh; min-height: 300px; color: white; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; background-color: #333; }
.hero-images { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 1; }
.hero-img { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-size: cover; background-position: center; opacity: 0; animation: hero-fade 72s linear infinite, ken-burns-potent 36s ease-in-out infinite; }
@keyframes ken-burns-potent { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.25); } }
@keyframes hero-fade { 0% { opacity: 0; } 2% { opacity: 1; } 14% { opacity: 1; } 16.66% { opacity: 0; } 100% { opacity: 0; } }


.sidebar-filters { 
    position: sticky; 
    top: 20px; 
    background-color: #FFFFFF; 
    border: 1px solid #e8e2d9; 
    border-radius: 8px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); 
}
.sidebar-filters h4.mb-3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--text-dark);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem !important;
}
.sidebar-controls .control-label {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--text-dark);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem !important;
    display: block;
}
.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}
.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-group > .btn-outline-primary.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.stats-panel { display: flex; justify-content: space-around; background-color: #fff; border: 1px solid #e8e2d9; border-radius: 8px; padding: 1rem; margin-bottom: 2.5rem; box-shadow: 0 4px 15px rgba(0,0,0,0.05); text-align: center; }
.stat-item { border-right: 1px solid #e8e2d9; padding: 0 1rem; flex-grow: 1; flex-basis: 0; }
.stat-item:last-child { border-right: none; }
.stat-value { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700; color: var(--primary-color); line-height: 1.1; }
.stat-value.small { font-size: 1.1rem; font-family: var(--font-body); font-weight: 700; margin-top: 5px; }
.stat-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.25rem; }
.stats-panel .action-item { cursor: pointer; transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out; }
.stats-panel .action-item:hover { background-color: #f0f0f0; transform: translateY(-2px); }
.stat-value-icon { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700; color: var(--primary-color); line-height: 1.1; }


.weekly-events-list { background: #fff; border-radius: 8px; border: 1px solid #eee; padding: 0.5rem; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.weekly-event-item-link { text-decoration: none; color: var(--text-dark); }
.weekly-event-item { display: flex; align-items: center; padding: 0.75rem; border-radius: 6px; transition: background-color 0.2s ease; }
.weekly-event-item-link:hover .weekly-event-item { background-color: #f7f5f1; }
.weekly-event-item-link:not(:last-child) .weekly-event-item { border-bottom: 1px solid #f0f0f0; }
.event-image { width: 50px; height: 50px; flex-shrink: 0; margin-right: 1rem; border-radius: 6px; overflow: hidden; background-color: #f0f0f0; }
.event-image img { width: 100%; height: 100%; object-fit: cover; }
.event-date { flex-shrink: 0; text-align: center; margin-right: 1rem; width: 45px; }
.event-date .day-number { font-size: 1.4rem; font-weight: 700; color: var(--primary-color); display: block; line-height: 1.1; }
.event-date .day-name { font-size: 0.75rem; font-weight: bold; color: var(--text-muted); text-transform: uppercase; }
.event-details { flex-grow: 1; }
.event-details .event-title { font-weight: bold; }
.event-details .event-location { font-size: 0.85rem; color: var(--text-muted); }
.event-details .event-location i { color: var(--primary-color); }
.event-arrow { font-size: 0.9rem; color: #ccc; transition: transform 0.2s ease; }
.weekly-event-item-link:hover .event-arrow { transform: translateX(4px); color: var(--primary-color); }

