:root {
    --color-primary: #0077B6;
    --color-accent:  #D38529;
    --color-footer:  #004b7A;
    --color-bg-warm: #FFF8F0;
}

body {
    font-family: 'Segoe UI', sans-serif;
}

.navbar-logo {
    height: 100px;
    width: auto;
}

.body-content {
    padding-top: 120px;
}

.photo-strip-section {
    overflow: hidden;
    background: var(--color-footer);
}

.photo-strip-track {
    display: flex;
    gap: 6px;
    width: max-content;
    animation: strip-scroll 80s linear infinite;
}

.photo-strip-track:hover {
    animation-play-state: paused;
}

.strip-img {
    height: 300px;
    width: auto;
    display: block;
    flex-shrink: 0;
}

@keyframes strip-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .strip-img {
        height: 180px;
    }
}

.hero {
    height: 50vh;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    background-image: url('/images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-color: var(--color-primary);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 60, 100, 0.45);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.activity-icon {
    font-size: 3.5rem;
    color: var(--color-primary);
    display: block;
    margin-bottom: 1rem;
}

.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
}

.navbar-brand {
    color: var(--color-primary) !important;
}

.section-activities {
    background-color: var(--color-bg-warm);
    padding-bottom: 0 !important;
    scroll-margin-top: 120px;
}

.letter-spacing-wide {
    letter-spacing: 0.25em;
    opacity: 0.9;
}

.footer {
    background-color: var(--color-footer);
    color: #fff;
    padding: 40px 0;
}

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

.footer a:hover {
    text-decoration: underline;
}

.btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background-color: #005f92;
    border-color: #005f92;
}

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

.fb-section {
    background-color: #f0f2f5;
}

/* ── Agenda ── */
.agenda-page {
    max-width: 760px;
    padding-top: 2rem;
    padding-bottom: 4rem;
}

.agenda-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.agenda-month-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.agenda-month-header::after {
    content: '';
    flex: 1;
    height: 2px;
    background: var(--color-accent);
    opacity: 0.4;
    border-radius: 2px;
}

.agenda-month-label {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-accent);
    white-space: nowrap;
}

.agenda-events {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.agenda-event {
    display: flex;
    align-items: stretch;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,.07);
    transition: opacity 0.2s;
}

.agenda-event--past {
    opacity: 0.45;
}

.agenda-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 3.5rem;
    padding: 0.6rem 0.5rem;
    background: var(--color-primary);
    flex-shrink: 0;
    gap: 0.1rem;
}

.agenda-event--past .agenda-day {
    background: #aaa;
}

.agenda-day-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    color: #fff;
}

.agenda-day-name {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,.75);
}

.agenda-event-body {
    flex: 1;
    padding: 0.65rem 1rem;
    background: var(--color-bg-warm);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.agenda-event-title {
    margin: 0;
    font-weight: 600;
    color: #222;
    line-height: 1.4;
}

.agenda-event-desc {
    margin: 0.25rem 0 0;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* ── Admin agenda ── */
.admin-agenda-month-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-agenda-month-header::after {
    content: '';
    flex: 1;
    height: 2px;
    background: var(--color-accent);
    opacity: 0.4;
    border-radius: 2px;
}

.admin-agenda-month-label {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    white-space: nowrap;
}

.admin-agenda-event {
    background: #f8f9fa;
    border-left: 3px solid var(--color-primary);
    border-radius: 0 6px 6px 0;
    padding: 0.6rem 1rem;
}

.admin-agenda-day {
    min-width: 2.2rem;
}

.admin-agenda-day-number {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
    color: var(--color-primary);
}

.admin-agenda-day-name {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 0.05em;
}

.admin-agenda-event-title {
    font-weight: 600;
    color: #222;
}

.admin-agenda-event-desc {
    font-size: 0.85rem;
    color: #888;
}
