@font-face {
    font-display: swap;
    font-family: 'Antonio';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/antonio-v21-latin-700.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/nunito-sans-v18-latin-regular.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/nunito-sans-v18-latin-800.woff2') format('woff2');
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-y: scroll;
}

section, footer {
    min-height: 75vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: white;
    padding: 5.1rem 2.6rem;
    box-sizing: border-box;
}

h1, h2 {
    font-family: 'Antonio', sans-serif;
    font-weight: 700;
    margin: 0 0 1rem 0;
}

h1 {
    font-size: clamp(1.8rem, 3.8vw, 3.1rem);
}

h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
}

p, ul {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    margin: 1rem 0;
}

ul {
    padding-left: 1.5rem;
}

.text-blue {
    color: #008CDC;
    font-weight: bold;
    text-align: center;
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    margin: 3rem 0;
}

.logo {
    display: block;
    width: clamp(240px, 35vw, 480px);
    height: auto;
    margin: 0 auto 1.5rem auto;
}

.logo-small {
    width: clamp(144px, 22.5vw, 252px);
    height: auto;
    margin: 0;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.footer-top {
    margin-bottom: 3rem;
}

.footer-middle p, .intro-text {
    font-size: clamp(1.4rem, 2.8vw, 1.9rem);
    margin: 0.5rem 0;
    text-align: center;
}

a {
    color: white;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

address {
    font-style: normal;
    font-size: clamp(1.4rem, 3vw, 1.7rem);
    line-height: 1.3;
    padding: 1rem;
}

address p {
    margin: 0;
}

address p + p {
    margin-top: 0.5rem;
}

.legal {
    font-size: clamp(0.7rem, 3vw, 0.9rem);
}

.w-100 {
    width: 100%;
}

.bg-white-black {
    background-color: #fff;
    color: #000;
}

.bg-gradient-pink-magenta {
    background: linear-gradient(45deg, #ff8cb4, #f0007d); 
    color: white;
}

/* Background Image Classes */
.bg-img-1 { background-image: url('../img/bg1.jpg'); }
.bg-img-2 { background-image: url('../img/bg2a.jpg'); }
.bg-img-3 { background-image: url('../img/bg3.jpg'); }
.bg-img-4 { background-image: url('../img/bg4.jpg'); }

.justify-between {
    justify-content: space-between;
}

.content {
    width: 100%;
}

.content-centered {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 700px;
}

.text-centered {
    text-align: center;
}

.content-left {
    text-align: left;
    max-width: 800px;
    width: 100%;
}

.spacer {
    height: 2rem;
}

/* Slider Styles (Splide) */
.splide {
    position: relative;
    width: 100%;
}

.splide__slide {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.6;
    padding: 0 40px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    min-height: 150px;
}

.splide__slide.is-active {
    opacity: 1;
}

.splide__pagination {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 0;
    list-style: none;
}

.splide__pagination__page {
    background: rgba(255, 255, 255, 0.4);
    border: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.splide__pagination__page.is-active {
    background: #fff;
}

.splide__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

.splide__arrow svg {
    fill: white;
    width: 24px;
    height: 24px;
}

.splide__arrow--prev svg {
    transform: rotate(180deg);
}

.splide__arrow--prev {
    left: 0;
}

.splide__arrow--next {
    right: 0;
}

.splide__slide p {
    text-align: center;
    margin: 0;
}