* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #560006;
    --color-primary-dark: #3a0004;
    --color-accent: #c9a227;
    --color-accent-dark: #a9860f;
    --color-whatsapp: #25d366;
    --color-hero-bg: #f8ece2;
    --color-text: #2b1210;
    --color-text-muted: #7a6259;
    --color-border: #f0e3da;
    --font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
}

body {
    font-family: var(--font-family);
    color: var(--color-text);
    background: #ffffff;
    line-height: 1.5;
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 600px) {
    .container {
        width: 100%;
        padding: 0 16px;
    }
}

.site-header {
    background: #ffffff;
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 10;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

.logo {
    color: var(--color-primary);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 28px;
}

nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
    color: var(--color-primary);
}

.nav-toggle svg {
    width: 26px;
    height: 26px;
    display: block;
}

.nav-toggle .icon-close {
    display: none;
}

.nav-toggle.active .icon-menu {
    display: none;
}

.nav-toggle.active .icon-close {
    display: block;
}

@media (max-width: 900px) {
    .nav-toggle {
        display: block;
    }

    .logo-img {
        height: 44px;
    }

    .header-right {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        border-bottom: 1px solid var(--color-border);
        box-shadow: 0 12px 20px rgba(43, 18, 16, 0.08);
    }

    .header-right.open {
        display: flex;
    }

    .header-right nav {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 24px;
    }

    .header-right nav a {
        padding: 14px 0;
        border-bottom: 1px solid var(--color-border);
    }

    .header-right nav a:last-child {
        border-bottom: none;
    }

    .header-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 16px 24px 22px;
    }

    .btn-call,
    .btn-whatsapp {
        justify-content: center;
    }
}

.btn-call,
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
    white-space: nowrap;
}

.btn-call svg,
.btn-whatsapp svg {
    width: 16px;
    height: 16px;
}

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

.btn-call:hover {
    background: var(--color-primary-dark);
}

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

.btn-whatsapp:hover {
    background: #1ebe5b;
}

nav a {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

nav a:hover {
    color: var(--color-primary);
}

.hero {
    background: var(--color-hero-bg);
    color: var(--color-text);
    padding: 70px 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.hero p {
    color: var(--color-text-muted);
    max-width: 560px;
    margin: 0 auto;
}

@media (max-width: 600px) {
    .hero {
        padding: 44px 0;
    }

    .hero h2 {
        font-size: 1.7rem;
    }
}

.events {
    padding: 60px 0;
}

@media (max-width: 600px) {
    .events {
        padding: 36px 0;
    }
}

.events-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 10px;
}

.events-heading h2 {
    font-weight: 700;
}

.view-all-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.view-all-link:hover {
    text-decoration: underline;
}

.events-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 900px) {
    .events-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 620px) {
    .events-list {
        grid-template-columns: 1fr;
    }
}

.event-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 0px;
}

.event-card h3 {
    color: var(--color-primary);
    margin-bottom: 8px;
    font-weight: 600;
}

.event-card h3 a {
    color: inherit;
    text-decoration: none;
}

.event-card h3 a:hover {
    text-decoration: underline;
}

.event-meta {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-top: 10px;
}

.site-footer {
    background: var(--color-primary-dark);
    color: #fff;
    /* padding-top: 48px; */
    position: relative;
}

.site-footer::before {
    content: '';
    display: block;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent), #e6c65c, var(--color-accent));
}

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 0.9fr 1fr 0.9fr;
    gap: 32px;
    padding-top: 30px;
    padding-bottom: 36px;
}

.footer-col {
    min-width: 0;
    padding-top: 10px;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-line {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.88rem;
    margin-bottom: 16px;
    line-height: 1.4;
}

.footer-line a {
    color: inherit;
    text-decoration: none;
}

.footer-line a:hover {
    color: #fff;
}

.footer-icon-badge {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-icon {
    width: 16px;
    height: 16px;
    color: var(--color-accent);
}

.footer-col h4 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.footer-col a:not(.footer-social-link) {
    display: block;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-size: 0.92rem;
    margin-bottom: 12px;
    transition: color 0.15s ease, padding-left 0.15s ease;
}

.footer-col a:not(.footer-social-link):hover {
    color: #fff;
    padding-left: 4px;
}

.footer-social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-social-link {
    text-decoration: none;
}

.footer-social-link .social-icon-badge {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.15s ease, transform 0.15s ease;
    color: rgba(255, 255, 255, 0.85);
}

.footer-social-link .social-icon-badge svg {
    width: 16px;
    height: 16px;
}

.footer-social-link:hover .social-icon-badge {
    color: #fff;
    transform: translateY(-2px);
}

.footer-social-link.facebook:hover .social-icon-badge { background: #1877f2; }
.footer-social-link.instagram:hover .social-icon-badge { background: #d6249f; }

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom .heart {
    color: var(--color-accent);
}

@media (max-width: 760px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        row-gap: 32px;
    }

    .footer-col:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
}
