/* LAYOUT */
.section {padding: 48px 24px;}
.section.splash-section {padding: 0;}

.bg-tertiary {background-color: var(--bs-tertiary) !important;}

.header {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1001;
    background: var(--bs-primary);
}
/* TYPOGRAPHY */


/* SECTIONS */
.splash-section {
    position: relative;
    max-width: 100%;
}

.splash-section.interior-splash-section {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 360px;
    height: 50vh;
    max-height: 480px;
    padding: 86px 0 0;
}

.splash-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--ra-primary-fade);
    z-index: 1;
}

.splash-section .container,
.splash-section .fluid-container {
    position: relative;
    z-index: 3;
}

/* MODULES */
.carousel-item {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 640px;
    height: 90vh;
    max-height: 720px;
}
.carousel-inner {position: relative;}
.carousel-control-next, .carousel-control-prev {
    width: auto;
    margin-left: 24px;
}

.carousel-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.carousel-content .btn {
    min-width: 250px;
}

/* Thumbnails for #themeCarousel indicators */
#themeCarousel .carousel-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: center;
    z-index: 123;
    transform: translateY(50%);
}

#themeCarousel .carousel-indicators [data-bs-target] {
    /* kill default dots */
    background: none;
    width: 25%;
    max-width: 220px;
    height: 124px;
    padding: 0;
    margin: 0;
    border: 0;
    opacity: 1;
}

#themeCarousel .carousel-indicators [data-bs-target] img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: var(--bs-border-radius, .5rem);
    box-shadow: 0 0 0 2px transparent;
}

#themeCarousel .carousel-indicators .active {
    opacity: 1;
}

#themeCarousel .carousel-indicators .active img {
    box-shadow: 0 0 0 2px var(--bs-primary);
}

#themeCarousel .carousel-indicators [data-bs-target]:focus-visible img {
    outline: 2px solid red;
    outline-offset: 2px;
}

/* Optional: smaller thumbs on xs */
@media (max-width: 575.98px) {
    #themeCarousel .carousel-indicators [data-bs-target] {
        width: 96px;
        height: 54px;
    }
}

/* FORMS */


/* STYLISTICS */
.card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

@media only screen and (min-width: 768px) {
    .section {padding: 32px 0;}
    .border-end-md-0 { border-inline-end: 0 !important; }
}

@media only screen and (min-width: 992px) {
    .section {padding: 48px 0;}
}

@media only screen and (min-width: 1200px) {
    .section {padding: 72px 0;}
    .header {background: none;}

    .splash-section.interior-splash-section {
        min-height: 480px;
        height: 60vh;
        max-height: 640px;
    }

    .carousel-item {
        min-height: 720px;
        height: 100vh;
        max-height: 880px;
    }
}

@media only screen and (min-width: 1440px) {
    .section {padding: 88px 0;}
}

#header-logo {
    max-width: 100px;
}