:root {
    --mamas-bar-rgb: 246, 225, 213;
    --mamas-bar-bg: rgba(var(--mamas-bar-rgb), .85);
    --mamas-ink: #3b352f;
    --card-alpha: .92;
    --header-h: 80px;
}

@media (min-width: 1200px) {
    :root {
        --header-h: 88px;
    }
}

html, body {
    height: 100%
}

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

body.has-hero-bg::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background: url("../img/hero/landing.png") center top/cover no-repeat;
    /*filter: blur(1px);*/
}

#main {
    flex: 1 0 auto
}

footer {
    flex: 0 0 auto
}

.header-spacer {
    height: var(--header-h)
}

.header.navbar-mamas {
    background: var(--mamas-bar-bg);
    backdrop-filter: blur(3px);
    border-bottom: 1px solid rgba(255, 255, 255, .6);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
}

@media (min-width: 1200px) {
    .navbar-mamas .container-xxl, .footer-mini .container {
        max-width: 1280px
    }
}

@media (min-width: 1400px) {
    .navbar-mamas .container-xxl, .footer-mini .container {
        max-width: 1440px
    }
}

.navbar-mamas .brand {
    display: flex;
    align-items: center;
    gap: .55rem;
    font-weight: 800;
    letter-spacing: .3px;
    color: var(--mamas-ink);
}

.navbar-mamas .brand img {
    height: 56px;
    width: auto
}

.navbar-mamas .brand span {
    font-size: 1.05rem
}

.navbar-mamas .nav-link {
    color: var(--mamas-ink);
    font-weight: 600;
    font-size: .95rem;
    padding: .5rem 1rem;
}

.navbar-mamas .nav-link:hover {
    color: #000
}

.navbar-mamas .nav-link.active {
    color: #000;
    position: relative
}

.navbar-mamas .nav-link.active::after {
    content: "";
    position: absolute;
    left: .8rem;
    right: .8rem;
    bottom: -.35rem;
    height: 2px;
    background: var(--mamas-ink);
    opacity: .35;
    border-radius: 2px;
}

.hamburger {
    background: transparent;
    border: 0;
    padding: .25rem .5rem
}

.hamburger-icon {
    position: relative;
    display: inline-block;
    width: 22px;
    height: 2px;
    background: var(--mamas-ink);
    border-radius: 2px;
}

.hamburger-icon::before, .hamburger-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: var(--mamas-ink);
}

.hamburger-icon::before {
    top: -6px
}

.hamburger-icon::after {
    top: 6px
}

.hamburger[aria-expanded="true"] .hamburger-icon {
    background: transparent
}

.hamburger[aria-expanded="true"] .hamburger-icon::before {
    top: 0;
    transform: rotate(45deg)
}

.hamburger[aria-expanded="true"] .hamburger-icon::after {
    top: 0;
    transform: rotate(-45deg)
}

.mobile-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    z-index: 1030;
    background: var(--mamas-bar-bg);
    backdrop-filter: blur(3px);
    border-bottom: 1px solid rgba(255, 255, 255, .6);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
}

.mobile-nav.collapse:not(.show) {
    display: block;
    height: 0;
    overflow: hidden
}

.mobile-nav.show {
    max-height: calc(100vh - var(--header-h));
    overflow: auto
}

.mobile-nav .nav-link {
    color: var(--mamas-ink);
    font-weight: 600;
    padding: .6rem 1rem
}

.mobile-nav .nav-link:hover {
    color: #000
}

.footer-mini .bar {
    background: var(--mamas-bar-bg);
    border-top: 1px solid rgba(255, 255, 255, .6);
    width: 100%;
    border-radius: 0;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.footer-mini .bar > .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0;
    padding-bottom: 0;
}

.footer-mini .copy {
    font-size: .875rem;
    color: var(--mamas-ink);
    line-height: 1;
    display: flex;
    align-items: center;
}

.footer-mini .social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-right: .4rem;
    border-radius: 50%;
    background: rgba(0, 0, 0, .05);
    color: var(--mamas-ink);
    text-decoration: none;
    line-height: 1;
}

.footer-mini .social a:hover {
    background: rgba(0, 0, 0, .10)
}

.footer-mini .social i {
    vertical-align: middle
}

.section-pad {
    padding: 32px 0 56px
}

.card-overlay-peach {
    background: rgba(var(--mamas-bar-rgb), var(--card-alpha));
    color: var(--mamas-ink);
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .65);
    backdrop-filter: saturate(110%) blur(1.5px);
}

.card-overlay-peach .card-body {
    padding: clamp(16px, 2.2vw, 28px)
}

.about-typo h3 {
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    font-weight: 800;
    letter-spacing: .2px;
    margin-bottom: .5rem;
    color: #2b2622;
}

.about-typo p {
    font-size: .90rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #3b352f;
}

@media (max-width: 576px) {
    .card-overlay-peach .card-body {
        padding: 16px 18px
    }
}

.btn-peach {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: #e39b83;
    color: #fff;
    padding: 12px 22px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(227, 155, 131, .35);
    transition: .15s ease;
}

.btn-peach:hover {
    color: #fff;
    filter: brightness(.96);
    transform: translateY(-1px)
}

.btn-peach i {
    font-size: 1rem
}

.icon-grid {
    display: grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px
}

.icon-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .95rem;
    color: var(--mamas-ink)
}

.icon-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--mamas-bar-rgb), .88);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .06);
    color: var(--mamas-ink);
}

@media (max-width: 768px) {
    .icon-grid {
        grid-template-columns:1fr 1fr
    }
}

body {
    padding-top: var(--header-h);
}

.header-spacer {
    display: none;
    height: 0 !important;
}

.contact-grid {
    display: grid;
    gap: 22px
}

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns:1fr 1.25fr
    }
}

.contact-list {
    list-style: none;
    padding: 0;
    margin-top: .25rem;
}

.contact-list li {
    display: flex;
    gap: .8rem;
    align-items: flex-start;
    margin-bottom: .75rem
}

.contact-list .icon-badge {
    width: 36px;
    height: 36px
}

.map-embed {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .18), 0 4px 10px rgba(0, 0, 0, .08);
    background: #fff;
    aspect-ratio: 16/10
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block
}

.contact-grid h3 {
    margin-bottom: 1rem
}

.contact-list li {
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.contact-list .icon-badge {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-list .icon-badge i {
    font-size: 18px;
    line-height: 1;
}


.mobile-nav .nav-link {
    position: relative;
    display: block;
    padding: .85rem 1.25rem;
    color: var(--mamas-ink);
    font-weight: 600;
}

.mobile-nav .nav-link:hover {
    color: #000;
}

.mobile-nav .nav-link.active {
    color: #000;
    font-weight: 800;
}

.mobile-nav .nav-link.active::after {
    content: "";
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    bottom: .35rem;
    height: 2px;
    background: var(--mamas-ink);
    opacity: .35;
    border-radius: 2px;
}

.event-date-badge {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(var(--mamas-bar-rgb), .95);
    box-shadow: 0 8px 22px rgba(0, 0, 0, .08);
    color: #3b352f;
    line-height: 1;
}

.event-date-badge .day {
    font-weight: 800;
    font-size: 1.25rem
}

.event-date-badge .month {
    text-transform: uppercase;
    font-size: .75rem;
    opacity: .9;
    letter-spacing: .5px
}

.event-card .card-body {
    padding: clamp(16px, 2.2vw, 28px);
}

.event-featured .card-body {
    padding: clamp(18px, 2.6vw, 32px);
}

.map-embed {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .18), 0 4px 10px rgba(0, 0, 0, .08);
    background: #fff;
    aspect-ratio: 16/9
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block
}
