@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;
}

body {
    background-color: var(--hard-white);
    color: var(--charcoal);
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

/* Footer styles */
.site-footer {
    background: var(--dusty-charcoal);
    color: #fff;
    padding: 40px 0 20px;
    font-family: 'Roboto Condensed', sans-serif !important;
}

.site-footer .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    padding: 0 16px;
    align-items: center;
}

.footer-col-2 h4,
.footer-col-3 .footer-contact h4,
.footer-socials h4 {
    font-family: 'Theseasons', Arial, sans-serif;
}

.site-footer .footer-col h4 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #fff;
}

.footer-logo img {
    height: 72px;
    width: auto;
    border-radius: 6px;
    display: block;
}

.footer-desc {
    color: #fff;
    opacity: 0.95;
    margin-top: 12px;
    line-height: 1.4;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    opacity: 0.95;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-contact p {
    margin: 6px 0;
    text-align: center;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 8px;
    justify-content: center;
}

.site-footer .footer-inner .footer-col{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    padding: 6px 8px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 6px;
}

.footer-bottom {
    text-align: center;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 12px;
}

@media (max-width: 900px) {
    .site-footer .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-desc {
        margin: 12px auto;
    }

    .social-links {
        justify-content: center;
    }
}
