:root {
    --text: #3c313a;
    --muted: #6d5c68;
    --surface: #ffffff;
    --bg: #fff4ee;
    --accent: #d92369;
    --accent-soft: rgba(217, 35, 105, 0.16);
    --blue: #4d7ed8;
    --border: rgba(184, 136, 168, 0.22);
    --shadow: 0 24px 70px rgba(66, 47, 66, 0.12);
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #fff4ec 0%, #fff0df 40%, #fce8f0 100%);
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(184, 136, 168, 0.15);
}

#navbar {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px 20px 14px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-toggle {
    display: none;
    border: none;
    background: transparent;
    cursor: pointer;
    width: 48px;
    height: 48px;
    padding: 0;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    color: var(--text);
}

.nav-toggle svg {
    width: 22px;
    height: 22px;
}

.nav-logo {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    object-fit: cover;
}

.nav-menu {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 28px;
    margin-left: auto;
    align-items: center;
}

.nav-item {
    list-style: none;
}

.nav-item a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    text-decoration: none;
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
}

.nav-item a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 3px;
    border-radius: 999px;
    background: transparent;
    transition: background 0.2s ease;
}

.nav-item a:hover,
.nav-item a:focus {
    color: var(--accent);
}

.nav-item a:hover::after,
.nav-item a.active::after {
    background: linear-gradient(90deg, #ff4f7e 0%, #ffb36a 45%, #4da2db 100%);
}

.nav-item a.active {
    color: var(--accent);
}

footer {
    text-align: center;
    padding: 32px 20px;
    color: var(--muted);
}

footer p {
    margin: 0.35rem 0;
}

footer a {
    color: var(--accent);
    text-decoration: none;
}

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

.page {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.about-page {
    padding: 40px 0 80px;
    background: radial-gradient(circle at top left, rgba(255, 238, 228, 0.9), transparent 35%), radial-gradient(circle at bottom right, rgba(248, 220, 230, 0.7), transparent 30%), var(--bg);
}

.about-hero,
.page-heading {
    max-width: 1180px;
    margin: 0 auto;
}

.about-hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 38px;
    align-items: center;
    padding: 0 10px 40px;
}

.hero-copy {
    padding: 20px 0;
}

.brand-mark {
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 28px;
    box-shadow: var(--shadow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #8a6b76;
    font-weight: 800;
    margin-bottom: 1rem;
    font-size: 0.8rem;
}

.about-page h1,
.page-heading h1 {
    font-size: clamp(3rem, 4vw, 4.6rem);
    line-height: 0.95;
    color: #d53078;
    margin: 0;
}

.hero-description,
.page-heading p,
.event-copy,
.contact-copy {
    color: var(--muted);
}

.hero-description {
    max-width: 720px;
    font-size: 1.05rem;
    line-height: 1.9;
    margin: 1.5rem 0 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.button:hover {
    transform: translateY(-2px);
    opacity: 0.98;
}

.button-primary {
    background: linear-gradient(135deg, #ff4f7e 0%, #ff8f79 100%);
    color: #ffffff;
    box-shadow: 0 16px 46px rgba(255, 79, 126, 0.2);
}

.button-secondary {
    background: #ffffff;
    color: var(--accent);
    border: 2px solid var(--accent-soft);
}

.hero-image-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 560px;
    border-radius: 40px;
    box-shadow: var(--shadow);
    object-fit: cover;
}

.about-quote {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 44px 28px;
    border-radius: 40px;
    background: #ffffff;
    border: 1px solid rgba(216, 44, 112, 0.16);
    box-shadow: 0 24px 75px rgba(74, 40, 66, 0.08);
}

.quote-label {
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #8f6d88;
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-quote h2 {
    margin: 0;
    font-size: clamp(2.4rem, 3vw, 3.4rem);
    color: #22304a;
    line-height: 1.05;
}

.quote-text {
    font-size: 1.25rem;
    color: #d82c70;
    margin: 1rem auto 1.75rem;
    max-width: 760px;
}

.quote-contact {
    display: grid;
    gap: 10px;
    justify-content: center;
    color: var(--muted);
    font-weight: 600;
}

.page-heading {
    padding: 0 10px 34px;
}

.page-heading p {
    font-size: 1.05rem;
    margin: 1rem auto 0;
    max-width: 720px;
}

.event-copy,
.contact-copy {
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 0 10px;
    line-height: 1.8;
    font-size: 1rem;
}

.event-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.event-copy ul {
    padding-left: 24px;
    margin: 1.25rem 0;
}

.event-copy li {
    margin-bottom: 0.75rem;
}

.contact-copy p {
    margin: 0.85rem 0;
}

.contact-copy a {
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
}

.contact-copy a:hover {
    text-decoration: underline;
}

.events-section {
    max-width: 960px;
    margin: 36px auto 0;
    padding: 28px 24px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(184, 136, 168, 0.18);
    box-shadow: 0 18px 55px rgba(66, 47, 66, 0.08);
}

.events-section-heading {
    margin-bottom: 20px;
}

.events-section-heading h2 {
    margin: 0 0 10px;
    color: #d53078;
    font-size: clamp(1.6rem, 2.6vw, 2.1rem);
}

.events-section-heading p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.events-list {
    display: grid;
    gap: 16px;
}

.events-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 24px 0 8px;
    flex-wrap: wrap;
}

.events-pagination__button {
    border: 1px solid rgba(184, 136, 168, 0.22);
    background: #ffffff;
    color: var(--accent);
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.events-pagination__button:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(66, 47, 66, 0.08);
}

.events-pagination__button:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.events-pagination__info {
    color: var(--muted);
    font-weight: 600;
    min-width: 110px;
    text-align: center;
}

.event-card {
    display: flex;
    gap: 16px;
    padding: 18px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(184, 136, 168, 0.16);
    box-shadow: 0 14px 40px rgba(66, 47, 66, 0.04);
}

.event-date-badge {
    width: 120px;
    min-width: 120px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 14px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(217, 35, 105, 0.12), rgba(77, 126, 216, 0.14));
    color: var(--accent);
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}

.event-card-body {
    flex: 1;
}

.event-card h3 {
    margin: 0 0 8px;
    color: #22304a;
    font-size: 1.12rem;
}

.event-meta,
.event-description {
    margin: 0 0 8px;
    color: var(--muted);
    line-height: 1.7;
}

.event-link {
    display: inline-flex;
    margin-top: 6px;
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
}

.event-link:hover {
    text-decoration: underline;
}

.events-loading,
.events-empty {
    margin: 0;
    padding: 16px 0;
    color: var(--muted);
    line-height: 1.8;
}

#drink-choice,
#boost-choice {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
    margin: 0 auto;
    max-width: 1200px;
}

.drink-card,
.boost-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 24px;
    flex: 0 1 260px;
    box-shadow: 0 18px 40px rgba(68, 73, 117, 0.08);
    border: 1px solid rgba(184, 136, 168, 0.14);
}

.product-image {
    display: block;
    margin: 0 auto 18px;
    width: 120px;
    height: auto;
    border-radius: 20px;
}

.drink-card h3 {
    text-align: center;
    margin: 0.75rem 0 0.5rem;
    font-size: 1.2rem;
}

.ingredients {
    color: #7a5564;
    font-weight: 700;
    text-align: center;
    margin: 0.5rem 0;
}

.description {
    color: #56434b;
    font-size: 0.98rem;
    line-height: 1.75;
    margin: 0.75rem 0 0;
}

.boost-card {
    text-align: center;
    padding: 24px;
}

.boost-card h2 {
    margin: 0 0 0.75rem;
    font-size: 1.4rem;
}

.boost-card p {
    color: #54434a;
    margin: 0 0 16px;
}

.boost-card h1 {
    font-size: 2.4rem;
    color: #d82c70;
    margin: 1rem 0 0;
}

.boost-tag {
    display: inline-block;
    border-radius: 999px;
    padding: 0.35rem 0.85rem;
    border: 2px solid currentColor;
    margin-top: 0.85rem;
    font-weight: 700;
    font-size: 0.95rem;
}

.boost-tag--red {
    color: #d82c70;
}

.boost-tag--blue {
    color: #4da2db;
}

.boost-tag--purple {
    color: #7b61d8;
}

@media (max-width: 960px) {
    #navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-menu {
        justify-content: flex-start;
        width: 100%;
    }

    .about-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-copy {
        padding: 20px 0;
    }

    .hero-actions {
        justify-content: center;
    }

    .page-heading {
        padding: 0 10px 30px;
    }
}

@media (max-width: 720px) {
    .nav-logo {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        gap: 14px;
        width: 100%;
        margin-left: 0;
        padding: 16px 0 0;
    }

    #navbar.open .nav-menu {
        display: flex;
    }

    .nav-item a {
        width: 100%;
        padding: 12px 0;
    }

    .nav-item {
        font-size: 0.95rem;
    }

    .page {
        padding: 24px 0;
    }

    .about-page {
        padding: 30px 0 50px;
    }

    .hero-actions {
        justify-content: center;
    }

    .button {
        width: 100%;
        justify-content: center;
    }

    .event-card {
        flex-direction: column;
    }

    .event-date-badge {
        min-width: 0;
    }
}
