* {
    box-sizing: border-box;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
body {
    font-family:
        "Open Sans",
        system-ui,
        -apple-system,
        Segoe UI,
        Roboto,
        "Helvetica Neue",
        Arial,
        sans-serif;
    line-height: 1.75;
    color: var(--text);
    background: var(--bg);
    margin: 0;
}

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

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
}
.site-header {
    background: var(--header-bg);
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(122, 80, 143, 0.12);
}
.logo {
    margin: 0;
    font-size: 1.75rem;
}
.site-nav {
    display: flex;
    gap: 1rem;
}
.site-nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
}
.hero h2 {
    margin: 0 0 0.75rem;
}
.btn {
    display: inline-block;
    margin-top: 1.25rem;
    padding: 0.85rem 1.5rem;
    border-radius: 10px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(110, 61, 155, 0.16);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}
.btn:hover,
.btn:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 16px 28px rgba(110, 61, 155, 0.2);
}

.about,
.hero {
    background: var(--surface);
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    margin: 1rem 1.5rem;
}

.hero {
    background: var(--surface);
}

.subtitle {
    color: var(--accent);
}

.list-item {
    background: var(--cream);
    padding: 1.25rem;
    border-radius: 20px;
    border: 1px solid rgba(122, 80, 143, 0.12);
}

.list-description {
    margin: 0.5rem 0 0;
    color: var(--muted);
}

.site-footer {
    padding: 1rem 0;
    text-align: center;
    color: var(--muted);
    margin-top: 2rem;
}

@media (max-width: 600px) {
    .site-nav {
        display: none;
    }
    .hero h2 {
        font-size: 1.8rem;
    }
    .container {
        padding: 1rem;
    }
    .contact-link {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
        white-space: normal;
    }
    .contact-link:not(:last-child) {
        border-bottom: 1px solid rgba(110, 61, 155, 0.16);
        padding-bottom: 0.75rem;
        margin-bottom: 0.75rem;
    }
}

.title {
    margin: 0;
    font-size: 1.9rem;
}

.subtitle {
    margin: 0.25rem 0 0;
    color: var(--muted-contrast);
    font-size: 1rem;
    font-weight: 600;
    opacity: 1;
}

.text {
    color: var(--muted);
    margin-bottom: 1rem;
}

.list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}

.list-item {
    background: rgba(255, 255, 255, 0.92);
    padding: 1.25rem;
    border-radius: 20px;
    border: 1px solid rgba(127, 83, 172, 0.12);
}

.list-description,
.sublist-item {
    margin: 0.5rem 0 0;
    color: var(--muted);
}

.right {
    display: flex;
    justify-content: flex-end;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text);
    text-decoration: none;
    margin-top: 0.5rem;
    white-space: normal;
    text-wrap: auto;
}

.contact-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.event-image {
    max-height: 25em;
    width: auto;
    border-radius: 12px;
    margin: 1rem 0;
    align-self: center;
    border: 1px solid var(--border);
    max-width: 100%;
    height: auto;
}

.sublist {
    list-style: none;
    padding: 0;
}

.sublist-item:not(:last-child) {
    border-bottom: 1px solid rgba(110, 61, 155, 0.16);
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
}

.event-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 2rem;
    width: 100%;
}

.event-list-item {
    width: 100%;
    background: rgba(255, 255, 255, 0.92);
    padding: 1.25rem;
    border-radius: 20px;
    border: 1px solid rgba(127, 83, 172, 0.12);
    display: flex;
    flex-direction: column;
    text-wrap: auto;
    gap: 0rem;
}

.event-image-link {
    align-self: center;
}
