/* ========== FP CSS ========== */

/* ========== FAQs ========== */

:root {
    --fp-border-color: #000;
    --fp-faq-margins: 5px;
    --fp-hover-color: rgba(0, 0, 0, 0.05);
    --fp-open-character: "+";
    --fp-closed-character: "-";
    --fp-container-width: 100%;
}



.firstpage-custom-collection summary {
    width: 60%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;

    cursor: pointer;

    border-top: 1px solid var(--fp-border-color);

    padding: 15px var(--fp-faq-margins);
    box-sizing: border-box;
}

.firstpage-custom-collection h2{
    text-align: center;
    margin: 20px 0;
    font-size: 50px;
}

.firstpage-custom-collection summary>* {
    margin: 0;
}

.firstpage-custom-collection .answer {
    margin: 0 auto;
    width: 60%;
}

.firstpage-custom-collection summary::after {
    content: var(--fp-open-character);
    margin-right: 15px;
    display: block;
}

.firstpage-custom-collection summary:hover {
    background: var(--fp-hover-color);
}

.firstpage-custom-collection details[open] summary::after {
    content: var(--fp-closed-character);
}

.firstpage-custom-collection details summary::-webkit-details-marker {
    display: none;
}

.firstpage-custom-collection [type="checkbox"] {
    display: none;
}

.firstpage-custom-collection .content {
    margin-top: 50px;
}

.firstpage-custom-collection label {
    display: block;
    cursor: pointer;
}

.firstpage-custom-collection label:before {
    position: absolute;
}

.firstpage-custom-collection input[type="checkbox"]~div {
    width: 100%;
    overflow: hidden;
    max-height: 0;
}

.firstpage-custom-collection [type="checkbox"]:checked~div {
    max-height: 9999px;
}

.firstpage-custom-collection [type="checkbox"]:checked+label {
    top: 100%;
}

.firstpage-custom-collection label:before {
    content: 'Read More';
    text-decoration: underline;
}

.firstpage-custom-collection [type="checkbox"]:checked+label:before {
    content: 'Read Less';
}

.firstpage-custom-collection .content-container {
    max-width: 100%;
}

.firstpage-custom-collection .content-container h3 {
    font-size: 1em;
}

.firstpage-custom-collection .layout-wrapper.image-text,
.firstpage-custom-collection .layout-wrapper.text-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.firstpage-custom-collection .layout-wrapper.image-text .image-container {
    order: 1;
}

.firstpage-custom-collection .layout-wrapper.image-text .text-container {
    order: 2;
}

.firstpage-custom-collection .layout-wrapper.text-image .image-container {
    order: 2;
}

.firstpage-custom-collection .layout-wrapper.text-image .text-container {
    order: 1;
}

.firstpage-custom-collection .image-container img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {

    .firstpage-custom-collection .layout-wrapper.image-text,
    .firstpage-custom-collection .layout-wrapper.text-image {
        grid-template-columns: 1fr;
    }

    .firstpage-custom-collection .layout-wrapper h2 {
        order: 1;
    }

    .firstpage-custom-collection .layout-wrapper .image-container {
        order: 2;
    }

    .firstpage-custom-collection .layout-wrapper .text-container {
        order: 3;
    }
    
    .firstpage-custom-collection summary {
    width: 90%;
    }
    
    .firstpage-custom-collection .answer {
    width: 90%;
    }
}

/* ========== Location Pages ========== */

/* Headings */
.location-title{
    font-size: 55px !important;
}


/* ── Split Section ── */
.section-split {
    padding: clamp(3rem, 6vw, 6rem) 0;
}

.section-split-alt {
    background: linear-gradient(180deg, #f9f9f9 0%, #ffffff 100%);
}

.split-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

/* ── Image ── */
.split-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    position: relative;
    max-height: 600px;
    object-fit: cover;
}

.split-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 2px solid rgba(244, 67, 54, 0.15);
    pointer-events: none;
}

.split-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4 / 3;
    transition: transform 0.5s ease;
}

.split-block:hover .split-img {
    transform: scale(1.03);
}

/* ── Content ── */
.split-content {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.split-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #f44336;
    background: rgba(244, 67, 54, 0.08);
    padding: 5px 14px;
    border-radius: 20px;
    width: fit-content;
}

.split-content h2 {
    font-family: Epilogue, sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    line-height: 1.1;
    color: #0a0a0a;
}

.split-content h2 em {
    background: linear-gradient(90deg, #0a0a0a 0%, #f44336 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: normal;
}

.split-content p {
    font-size: 1rem;
    color: #444;
    line-height: 1.75;
}

/* ── List ── */
.split-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.split-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #222;
}

.split-list li a {
    display: inline;
    font-weight: inherit;
}

.split-list li::before {
    content: '';
    width: 18px;
    height: 18px;
    min-width: 18px;
    border-radius: 50%;
    background: #f44336;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
}

ol {
    list-style-type: decimal;
    padding-left: 1.5rem;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .split-block {
        grid-template-columns: 1fr;
    }

    .split-block.image-right .split-image {
        order: -1;
    }
}

.site-footer{
    overflow: hidden;
}

/* ========== Main Navigation Menu ========== */

.has-dropdown {
    position: relative;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    list-style: none;
    min-width: 200px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    z-index: 100;
    flex-direction: column;
    padding-top: 10px;
    padding-bottom: 10px;
}

.dropdown li a {
    display: block;
    padding: 2px 10px;
    color: black;
    text-align: left !important;
    white-space: nowrap;
}

.has-dropdown:hover > .dropdown {
    display: flex;
}

/* Mobile — show as part of mobile menu flow */
@media (max-width: 768px) {
    .dropdown {
        position: static;
        display: none;
        box-shadow: none;
        padding-left: 16px;
    }

    .has-dropdown.open > .dropdown {
        display: flex;
    }
}
