body {
    background-color: #f8f9fa;
}

main {
    min-height: 70vh;
}

/* Hero */
.landing-hero {
    background:
            linear-gradient(rgba(20, 30, 48, 0.82), rgba(20, 30, 48, 0.82)),
            url("img/meeting.jpg");
    background-size: cover;
    background-position: center;
}

.page-hero {
    background:
            linear-gradient(rgba(0, 85, 191, 0.88), rgba(0, 85, 191, 0.88)),
            url("img/meeting.jpg");
    background-size: cover;
    background-position: center;
    padding-top: 4.5rem !important;
    padding-bottom: 4rem !important;
}

.min-vh-50 {
    min-height: 50vh;
}

.hero-kicker {
    letter-spacing: 0.12em;
    color: #ffc107;
}

.hero-image-card {
    border-radius: 1rem;
    overflow: hidden;
}

.hero-image-card img {
    height: 420px;
    object-fit: cover;
}

.page-hero-content h1,
.page-hero-content h2 {
    font-size: 3.25rem;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Cards */
.card,
.card-body {
    border-radius: 0.75rem;
}

.landing-card,
.join-card,
.event-card {
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.landing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.12) !important;
}

.join-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.12) !important;
}

.event-card {
    border-radius: 0.75rem;
}

.event-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.12) !important;
}

.meeting-card {
    border-top: 4px solid #ffc107 !important;
}

.event-note-card {
    border-left: 4px solid #ffc107 !important;
}

/* Icons */
.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
}

.goal-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

/* Events */
.upcoming-events table,
.event-card-list {
    width: 100%;
}

.upcoming-events .btn {
    margin-top: 0.5rem;
}

.event-month-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #dee2e6;
}

.event-title {
    font-size: 1.15rem;
    font-weight: 700;
}

.event-date {
    font-size: 0.95rem;
    line-height: 1.5;
}

.event-info {
    margin-top: 0.75rem;
}

.event-address a {
    font-weight: 600;
    text-decoration: none;
}

.event-address a:hover {
    text-decoration: underline;
}

.event-type-badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.55rem;
    margin-left: 1rem;
    white-space: nowrap;
}

/* Footer */
.social-icons a {
    display: inline-block;
    margin-left: 0.5rem;
}

.social-icons img {
    width: 34px;
    height: 34px;
    opacity: 0.75;
    transition: opacity 0.2s ease;
}

.social-icons img:hover {
    opacity: 1;
}

/* Responsive */
@media (max-width: 991.98px) {
    .hero-image-card img {
        height: 320px;
    }

    .landing-hero .display-4 {
        font-size: 2.5rem;
    }
}

@media (max-width: 575.98px) {
    .hero-image-card img {
        height: 240px;
    }

    .landing-hero .display-4 {
        font-size: 2.1rem;
    }

    .page-hero .display-4 {
        font-size: 2.25rem;
    }

    .landing-hero .btn-lg {
        width: 100%;
        margin-right: 0 !important;
    }

    .event-card .d-flex {
        display: block !important;
    }

    .event-type-badge {
        display: inline-block;
        margin-left: 0;
        margin-top: 0.75rem;
    }
}

.contact-page-content h1,
.contact-page-content h2,
.contact-page-content h3 {
    font-weight: 700;
}

.contact-page-content p:last-child {
    margin-bottom: 0;
}

.captcha-box {
    display: inline-block;
    padding: 0.5rem;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
}

.captcha-image {
    display: block;
    max-width: 100%;
    height: auto;
}

.wislug-logo {
    max-width: 260px;
    height: auto;
}

.landing-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}