:root {
    --bg: #fff4b0;
    --text: #2b2b2b;
    --accent: #c0392b;
    --header: #f5e58c;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
}

body.dark {
    background: #1c1c1c;
    color: #eee;
}

body.dark header,
body.dark footer {
    background: #2b2b2b;
    color: #fff;
}

body.dark .agenda-item {
    background: rgba(192, 57, 43, 0.2);
    color: #fff;
}

header {
    background: var(--header);
    padding: 1rem;
}

.header-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 70px;
}

.controls {
    margin-left: auto;
}

.controls button {
    margin-left: 0.3rem;
    cursor: pointer;
}

.flag {
    font-size: 1.2rem;
    background: transparent;
    border: none;
    cursor: pointer;
}

.theme-toggle {
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 0.4rem;
    border-radius: 50%;
    transition: background 0.2s ease, transform 0.2s ease;
}

.theme-toggle:hover {
    background: rgba(0,0,0,0.08);
    transform: scale(1.1);
}

body.dark .theme-toggle {
    color: #ffd966;
}

body.dark .theme-toggle:hover {
    background: rgba(255,255,255,0.1);
}

.hero {
    height: 280px;
    background: url("images/hero.webp") center / cover no-repeat;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 2rem 1rem;
}

.business-info {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.business-info img {
    width: 160px;
}

.logo,
.business-info img {
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    /* background: white; */
    padding: 6px; /* optional: gives breathing room for non-square logos */
    /* border: 2px solid var(--accent); */
}

.support-links {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1rem;
}

.instagram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.instagram:hover {
    transform: scale(1.1);
}

.whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #25d366; /* WhatsApp green */
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.whatsapp:hover {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.email {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #0072c6;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.email:hover {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.gofundme {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #02a95c;
    color: white;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, background 0.2s ease;
}

.gofundme i {
    font-size: 1.1rem;
}

.gofundme:hover {
    background: #029153;
    transform: translateY(-1px);
}

.agenda-item {
    background: rgba(192, 57, 43, 0.15);
    border-left: 6px solid var(--accent);
    color: var(--text);
    padding: 1rem;
    margin-top: 0.5rem;
    cursor: pointer;
}

footer {
    background: var(--header);
    text-align: center;
    padding: 1.5rem;
    margin-top: 3rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    background: white;
    padding: 1.5rem;
    max-width: 850px;
    width: 95%;
    border-radius: 12px;
}

.modal-body {
    display: flex;
    gap: 1rem;
}

.modal-text {
    flex: 1;
}

.modal iframe {
    width: 350px;
    height: 250px;
    border: 0;
}

.close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background 0.2s ease, transform 0.2s ease;
}

.close:hover {
    background: #a93226;
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .header-inner {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        gap: 0.5rem;
    }

    .controls {
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .logo {
        width: 60px;
    }

    .business-info {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .business-info img {
        width: 120px;
    }

    .support-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .hero {
        height: 180px;
    }

    .agenda-item {
        font-size: 0.9rem;
        padding: 0.8rem;
    }

    /* Modal adjustments */
    .modal-body {
        flex-direction: column;
    }

    .modal iframe {
        width: 100%;
        height: 200px;
    }

    .modal-content {
        padding: 1rem;
    }

    footer {
        padding: 1rem;
    }
}

/* Extra small screens (mobile portrait) */
@media (max-width: 480px) {
    .theme-toggle {
        font-size: 1.2rem;
        padding: 0.3rem;
    }

    .flag {
        font-size: 1rem;
    }

    .gofundme {
        padding: 0.4rem 0.7rem;
        font-size: 0.85rem;
    }

    .business-info img {
        width: 100px;
    }

    .hero {
        height: 140px;
    }
}
