
/* ── Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'Nunito', sans-serif;
    background-color: #fffdf9;
    color: #3d2e1e;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Fredoka One', cursive;
    letter-spacing: 0.5px;
}

/* ── Rainbow banner ────────────────────────────────── */
.rainbow-bar {
    height: 10px;
    background: linear-gradient(90deg,
        #FF6B6B, #FF9F43, #F9CA24, #6AB04C,
        #22A6B3, #4834D4, #BE2EDD);
}

/* ── Announcement ticker ───────────────────────────── */
.announcement-banner {
    background: linear-gradient(90deg, #e07b30 0%, #f0a052 50%, #e07b30 100%);
    color: #fff;
    overflow: hidden;
    padding: 10px 0;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.97rem;
    white-space: nowrap;
    user-select: none;
    letter-spacing: 0.2px;
}

.announcement-track {
    display: inline-block;
    animation: ticker-scroll 40s linear infinite;
}

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

@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── Hero ──────────────────────────────────────────── */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fff9f0 0%, #f0fff9 50%, #f0f9ff 100%);
    padding: 80px 20px 60px;
    text-align: center;
}

/* Decorative rainbow arcs in the background */
.hero::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    border-radius: 50%;
    background: transparent;
    box-shadow:
        0 0 0 18px rgba(255, 107, 107, 0.12),
        0 0 0 36px rgba(255, 159,  67, 0.10),
        0 0 0 54px rgba(249, 202,  36, 0.09),
        0 0 0 72px rgba(106, 176,  76, 0.08),
        0 0 0 90px rgba( 34, 166, 179, 0.07),
        0 0 0 108px rgba( 72,  52, 212, 0.06),
        0 0 0 126px rgba(190,  46, 221, 0.05);
    pointer-events: none;
    z-index: 0;
}

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

.hero-emoji { font-size: 4rem; line-height: 1; }

.hero h1 {
    font-size: clamp(2.2rem, 6vw, 3.8rem);
    color: #2AABAB;
    text-shadow: 2px 2px 0 rgba(255,255,255,0.8);
    margin: 12px 0 8px;
}

.hero .tagline {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: #7c6b5a;
    max-width: 560px;
    margin: 0 auto 28px;
}

.hero .location-badge {
    display: inline-block;
    background: #fff;
    border: 2px solid #a8dede;
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #2AABAB;
    box-shadow: 0 2px 10px rgba(42,171,171,0.15);
}

/* ── Rainbow divider ───────────────────────────────── */
.rainbow-divider {
    height: 6px;
    border: none;
    background: linear-gradient(90deg,
        #FF6B6B, #FF9F43, #F9CA24, #6AB04C,
        #22A6B3, #4834D4, #BE2EDD);
    border-radius: 3px;
    margin: 0;
    opacity: 1;
}

/* ── Section layouts ───────────────────────────────── */
section {
    padding: 60px 20px;
}

.section-title {
    text-align: center;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    margin-bottom: 8px;
}

.section-subtitle {
    text-align: center;
    color: #9b8878;
    margin-bottom: 40px;
    font-size: 1.05rem;
}

/* ── About section ─────────────────────────────────── */
.about-section {
    background: linear-gradient(135deg, #fffbf0, #f0faf5);
}

.about-card {
    background: #fff;
    border-radius: 24px;
    padding: 32px 36px;
    box-shadow: 0 4px 24px rgba(42,171,171,0.08);
    border: 2px solid #c8ecec;
    max-width: 780px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5a4a3a;
}

/* ── Features / pillars ────────────────────────────── */
.features-section {
    background: #f0faf8;
}

.feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 3px 18px rgba(0,0,0,0.06);
    height: 100%;
    border-top: 4px solid var(--card-color, #e0539c);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.10);
}

.feature-icon { font-size: 2.6rem; margin-bottom: 12px; }

.feature-card h4 {
    font-size: 1.2rem;
    color: var(--card-color, #e0539c);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.95rem;
    color: #7a6a5a;
    margin: 0;
}

/* ── Team carousel ─────────────────────────────────── */
.team-section {
    background: linear-gradient(135deg, #f0f9ff, #f0fff9);
}

.carousel-inner { padding-bottom: 10px; }

.team-card {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 6px 32px rgba(0,0,0,0.10);
    max-width: 520px;
    margin: 0 auto;
    border: 3px solid #c8ecec;
}

.team-photo-wrap {
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, #fce4f3, #e0f4ff);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.team-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-photo-placeholder {
    font-size: 7rem;
    user-select: none;
}

.team-photo-wrap::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 60px;
    background: linear-gradient(transparent, rgba(255,255,255,0.8));
}

.team-info {
    padding: 28px 32px 32px;
    text-align: center;
}

.team-name {
    font-size: 1.7rem;
    color: #2AABAB;
    margin-bottom: 4px;
}

.team-role {
    display: inline-block;
    background: linear-gradient(90deg, #d0f5f5, #e8f5e0);
    border-radius: 50px;
    padding: 4px 16px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #1d7a7a;
    margin-bottom: 14px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.team-bio {
    color: #7a6a5a;
    font-size: 0.98rem;
    line-height: 1.7;
}

/* Carousel controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(0) !important;
    background-image: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn {
    background: #fff;
    border: 2px solid #c8ecec;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #2AABAB;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 2px 10px rgba(42,171,171,0.15);
}

.carousel-btn:hover {
    background: #d0f5f5;
    transform: scale(1.1);
}

.carousel-control-prev, .carousel-control-next {
    width: auto;
}

.carousel-control-prev { left: -14px; }
.carousel-control-next { right: -14px; }

.carousel-indicators [data-bs-target] {
    background-color: #2AABAB;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    border: none;
}

/* ── Accordion ─────────────────────────────────────── */
.accordion-section {
    background: linear-gradient(135deg, #fffbf0, #f0faf8);
}

.accordion-button {
    font-family: 'Fredoka One', cursive;
    font-size: 1.15rem;
    letter-spacing: 0.4px;
    color: #2AABAB;
    background: #fff;
}

.accordion-button:not(.collapsed) {
    color: #fff;
    background: #2AABAB;
    box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(42,171,171,0.25);
}

.accordion-item {
    border: 2px solid #c8ecec;
    border-radius: 16px !important;
    overflow: hidden;
    margin-bottom: 12px;
}

.accordion-item:last-child { margin-bottom: 0; }

.accordion-body {
    background: #fff;
    color: #5a4a3a;
    font-size: 1rem;
    line-height: 1.75;
}

.accordion-body table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.97rem;
}

.accordion-body table th,
.accordion-body table td {
    padding: 10px 14px;
    border-bottom: 1px solid #e0f0f0;
    text-align: left;
}

.accordion-body table th {
    background: #f0faf8;
    color: #1d7a7a;
    font-weight: 700;
}

.accordion-body table tr:last-child td { border-bottom: none; }

.faq-q {
    font-weight: 700;
    color: #2AABAB;
    margin-bottom: 2px;
}

.faq-a {
    margin-bottom: 16px;
    padding-left: 12px;
    border-left: 3px solid #c8ecec;
}

.faq-a:last-child { margin-bottom: 0; }

/* ── Contact / info banner ─────────────────────────── */
.contact-section {
    background: linear-gradient(135deg, #2AABAB, #1d8a8a);
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

.contact-section h2 { color: #fff; }

.contact-section p {
    font-size: 1.05rem;
    opacity: 0.92;
    max-width: 540px;
    margin: 0 auto 28px;
}

.contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50px;
    padding: 10px 24px;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    margin: 6px;
    transition: background 0.2s;
}

.contact-pill:hover {
    background: rgba(255,255,255,0.35);
    color: #fff;
}

/* ── Footer ────────────────────────────────────────── */
.site-footer {
    background: #3d2e1e;
    color: rgba(255,255,255,0.7);
    text-align: center;
    padding: 24px 20px;
    font-size: 0.88rem;
}

.site-footer span { color: #2AABAB; }

/* ── Responsive tweaks ─────────────────────────────── */
@media (max-width: 576px) {
    .team-photo-wrap { height: 220px; }
    .team-info { padding: 20px 20px 24px; }
    .carousel-control-prev { left: 0; }
    .carousel-control-next { right: 0; }
}
