@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
@font-face {
    font-family: 'SloopScriptPro';
    src: url('../fonts/sloop-script-pro-bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Theseasons family (weights and italics) */
@font-face {
    font-family: 'Theseasons';
    src: url('../fonts/fonnts.com-theseasons-reg.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Theseasons';
    src: url('../fonts/fonnts.com-theseasons-it.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Theseasons';
    src: url('../fonts/fonnts.com-theseasons-lt.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Theseasons';
    src: url('../fonts/fonnts.com-theseasons-ltit.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Theseasons';
    src: url('../fonts/fonnts.com-theseasons-bd.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Theseasons';
    src: url('../fonts/fonnts.com-theseasons-bdit.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}
:root{
    --light-pink: #F8C5F6;
    --dusty-pink:#CA8EB6;
    --hard-pink: #FF1167;
    --light-blue: #BFEFE4;
    --dusty-blue: #B0D7CC;
    --hard-blue: #1C98ED;
    --light-peach: #E8B4A3;
    --charcoal: #060A0E;
    --light-charcoal: #1C1F21;
    --hard-yellow: #FFEB38;
    --dusty-charcoal:#182736;
    --hard-white: #FFFFFF;
    --silver: #626C76;
}

/* Base */
body{
    background-color: var(--dusty-pink);
    color: var(--charcoal);
    font-family: 'Theseasons' !important;
    margin: 0;
    padding: 0;
}

.super-container{
    width: 100%;
}

.super-container .hero-intro{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    height: 60vh;
    text-align: right;
}

.super-container .hero-intro .hero-col .hero-content h1{
    font-size: 80px;
    color: var(--dusty-charcoal);
    font-family: 'SloopScriptPro' !important;
    margin: 0;
}

.super-container .hero-intro .hero-col .hero-content p{
    font-size: 25px;
}

/* two 50% columns inside hero */
.hero-col{
    width:50%;
}
.hero-intro{
    background-image: url('../images/about-hero.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height:70vh !important;
}
.hero-col.right{
    display:flex;
    align-items:center;
    justify-content:center;
    background: transparent;
}

/* Center hero content in right column */
.hero-content{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding: 20px 40px;
    text-align:center;
    width:100%;
    max-width:720px;
}

.content1{
    padding-left: 70px;
    padding-right: 70px;
    padding-bottom: 20px;
    text-align: center;
}

.content1 p{
    font-size: 20px;
    font-family: 'Roboto Condensed', sans-serif;
}

.content2 {
    background-image: url('../images/content2.svg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

.content2-container h3,
.content2-container p{
    text-align: center;
}

.content2-container{
    background-color: #1827369f;
    padding: 30px;
    border-radius: 15px;
    color: var(--hard-white);
    width: 900px;
}

.content2-container h3{
    font-family: 'SloopScriptPro', cursive;
    font-size: 70px;
    margin-bottom: 20px;
}

.content2-container p,
.content2-container ul li{
    font-size: 20px;
    font-family: 'Roboto Condensed', sans-serif;
}

.about-slideshow {
    position: relative;
    width: 100%;
}

.about-slide {
    display: none;
    position: relative;
}

.about-slide.is-active {
    display: block;
}

.about-slide-image {
    display: block;
    width: 100%;
    height: auto;
}

.about-slide-cta {
    position: absolute;
    top: 50%;
    right: 300px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

.about-next-label {
    color: var(--hard-white);
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 2px 12px rgba(6, 10, 14, 0.45);
    max-width: 160px;
}

.about-next-button {
    position: absolute;
    position: static;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    border: 0;
    border-radius: 999px;
    padding: 0;
    background: var(--hard-white);
    box-shadow: 0 10px 30px rgba(6, 10, 14, 0.22);
    cursor: pointer;
    animation: aboutPulse 1.8s ease-in-out infinite;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-next-button:hover,
.about-next-button:focus-visible {
    transform: scale(1.05);
    box-shadow: 0 14px 36px rgba(6, 10, 14, 0.28);
}

.about-next-button:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.7);
    outline-offset: 4px;
}

.about-next-icon {
    display: block;
    width: 34px;
    height: auto;
}

@keyframes aboutPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5), 0 10px 30px rgba(6, 10, 14, 0.22);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(255, 255, 255, 0), 0 10px 30px rgba(6, 10, 14, 0.22);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0), 0 10px 30px rgba(6, 10, 14, 0.22);
    }
}

@media (max-width: 767px) {
    .about-slide-cta {
        right: 12px;
        gap: 10px;
    }

    .about-next-button {
        width: 60px;
        height: 60px;
    }

    .about-next-icon {
        width: 26px;
    }

    .about-next-label {
        font-size: 12px;
        max-width: 120px;
    }
}