@charset "UTF-8";
.fil0 {fill:black}

.hero-banner {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('/themes/custom/locallia/images/hero/heroimage.png');
    background-size: cover;
    background-position: center 30%;
    z-index: 0;
}

.hero-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(15,18,22,.55) 0%,
        rgba(15,18,22,.30) 35%,
        rgba(15,18,22,.55) 65%,
        rgba(247,245,240,0) 75%,
        rgba(247,245,240,1) 100%);
    z-index: 1;
}

.hero-banner-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 0 20px;
    color: #f5f2ea;
}

.hero-banner-tagline {
    font-size: 1rem;
    color: #d3ad57;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin: 0 0 8px;
}

.hero-banner-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 3rem;
    color: #ffffff;
    margin: 0 0 20px;
    letter-spacing: .02em;
}

.hero-banner-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 0 24px;
    color: rgba(245,242,234,.9);
}

.hero-banner-cta {
    display: inline-block;
    background: #d3ad57;
    color: #1b2127;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    letter-spacing: .03em;
    transition: background .15s ease;
}

.hero-banner-cta:hover {
    background: #e0bc6c;
}

.node--type-landing-page .block {
    background: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
}

.node--type-landing-page .block:has(.hero-banner) {
    background: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
}

.hero-banner {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

body:has(.hero-banner) #breadcrumb,
body:has(.hero-banner) #highlighted {
    display: none;
}

@font-face {
    font-family: "Cormorant Garamond";
    src: url('/themes/custom/locallia/fonts/CormorantGaramond-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Cormorant Garamond";
    src: url('/themes/custom/locallia/fonts/CormorantGaramond-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

.hero-banner-text {
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    font-size: 1.65rem;
    line-height: 1.6;
    margin: 0 0 32px;
    color: rgba(245,242,234,.92);
}

.hero-banner-close {
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    font-size: 2rem;
    line-height: 1.5;
    margin: 0 0 36px;
    color: #ffffff;
}

.explore-section {
    padding: 60px 40px;
    max-width: 1320px;
    margin: 0 auto;
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    perspective: 1200px;
}

.flip-card {
    position: relative;
    height: 220px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform .5s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card.is-flipped .flip-card-inner,
.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.flip-card-front {
    background: #1b2127;
    border: 1px solid #d3ad57;
}

.flip-card-front img {
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
    opacity: .9;
}

.flip-card-front span {
    color: #f5f2ea;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: .03em;
}

.flip-card-back {
    background: #f7f5f0;
    border: 1px solid #cbb98d;
    transform: rotateY(180deg);
}

.flip-card-back p {
    font-size: .92rem;
    line-height: 1.55;
    color: #2b2b2b;
    margin: 0 0 14px;
}

.flip-card-back a {
    display: inline-block;
    background: #d3ad57;
    color: #1b2127;
    font-weight: 600;
    font-size: .85rem;
    padding: 8px 18px;
    border-radius: 4px;
    text-decoration: none;
}

@media (max-width: 900px) {
    .explore-grid {
        grid-template-columns: repeat(2, 1fr);
    }}

    .node--type-landing-page .block:has(.explore-section) {
    background: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
}