:root {
    --hbl-green: rgb(0 72 32);
    --hbl-black: rgb(0 0 0);
    --hbl-gold: rgb(238 177 17);
    --hbl-burgundy: rgb(131 10 22);
    --hbl-cream: #f6f4ef;
}

body {
    font-family: "Futura", "Futura PT", "Futura Book", "Segoe UI", Arial, sans-serif;
    color: var(--hbl-black);
    background: var(--hbl-cream);
}

.page-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero {
    background: linear-gradient(135deg, rgba(0, 72, 32, 0.95), rgba(0, 0, 0, 0.9));
    color: #fff;
}

.hero .lead {
    color: rgba(255, 255, 255, 0.82);
}

.brand-mark {
    height: 52px;
    width: auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--hbl-gold);
}

.hero-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.hero-contact-actions {
    flex-wrap: wrap;
}

@media (min-width: 992px) {
    .hero-contact {
        align-items: flex-end;
        text-align: right;
    }
}

.section-title {
    font-family: "Futura Condensed", "Futura", "Segoe UI", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--hbl-green);
}

.info-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.info-card .card-header {
    border-bottom: none;
    background: #fff;
    font-weight: 600;
}

.accent-text {
    color: var(--hbl-burgundy);
    font-weight: 600;
}

.accent-pill {
    background: rgba(238, 177, 17, 0.18);
    color: var(--hbl-gold);
    border-radius: 999px;
    font-weight: 600;
    padding: 0.35rem 0.9rem;
    font-size: 0.85rem;
}

.registration-embed {
    min-height: 720px;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.registration-embed iframe {
    border: 0;
}

.handwritten {
    font-family: "Bhatoshine", "Futura", "Segoe UI", sans-serif;
    font-size: 1.15rem;
    color: var(--hbl-burgundy);
}

.contact-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.contact-link:hover {
    color: var(--hbl-gold);
}

.info-list li {
    align-items: flex-start;
}

.info-list i {
    width: 1.75rem;
    min-width: 1.75rem;
    text-align: center;
    line-height: 1.5rem;
    margin-top: 0.1rem;
}

.footer {
    background: var(--hbl-black);
    color: #fff;
}

.footer a {
    color: var(--hbl-gold);
    text-decoration: none;
}

@media (max-width: 991px) {
    .hero-layout {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-primary {
        align-items: center;
    }

    .brand-mark {
        height: 44px;
    }

    .hero-contact {
        align-items: center;
        text-align: center;
    }

    .registration-embed {
        min-height: 600px;
    }
}

@media (max-width: 767px) {
    .hero {
        text-align: left;
    }

    .registration-embed {
        min-height: 520px;
    }
}
