
/* =============================
     Footer Font
============================= */
@font-face {
    font-family: 'CarnacXBold';
    src: url('../fonts/Carnac-XBol.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

.footer-carnac {
    font-family: 'CarnacXBold', Arial, Helvetica, sans-serif;
    font-weight: bold;
    letter-spacing: 0.01em;
    font-size: 1.04em;
    color: #222;
    display: inline-block;
}

/* =============================
     Footer Layout
============================= */
.footer {
    background: var(--color-0);
    font-family: inherit;
    font-size: 1rem;
    margin-top: 60px;
    padding: 0;
    border-bottom: 10px solid var(--color-6);
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.footer-inner {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    padding: 40px 24px 32px 24px;
    box-sizing: border-box;
}

/* =============================
     Footer Columns & Logo
============================= */
.footer-col {
    flex: 1 1 260px;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.footer-col-left {
    max-width: 260px;
    gap: 24px;
}

.footer-logo {
    width: 120px;
    height: auto;
    margin-bottom: 18px;
    display: block;
}

/* =============================
     Footer Links
============================= */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: #4A5568;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-links a:hover,
.footer-links a:focus {
    color: var(--color-6);
    text-decoration: underline;
    outline: none;
}

/* =============================
     Contact & CTA
============================= */
.footer-contact-cta {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: stretch;
    flex-wrap: nowrap;
    width: 100%;
}

.contact-block {
    min-width: 220px;
    font-size: 0.98rem;
    color: #222;
    line-height: 1.6;
    margin: 0;
}

.footer-cta {
    justify-content: flex-end;
    min-width: 220px;
    margin-top: 0;
}

.contact-block a {
    color: var(--color-6);
    text-decoration: none;
    word-break: break-all;
    transition: color 0.2s;
}

.contact-block a:hover,
.contact-block a:focus {
    color: #4A5568;
    text-decoration: underline;
    outline: none;
}

.footer-cta-link {
    display:block;
    background: var(--color-6);
    color: #fff;
    font-weight: 600;
    max-width: 220px;
    margin-top: 10px;
    padding: 12px 22px;
    border-radius: 25px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(182,34,78,0.07);
    transition: background 0.2s, color 0.2s;
    display: inline-block;
    font-size: 1rem;
    text-align: center;
    outline: none;
}

.footer-cta-link:hover,
.footer-cta-link:focus {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(113, 17, 48, 0.5);
}

/* =============================
     Responsive
============================= */
@media (max-width: 900px) {
    .footer-inner {
        flex-direction: column;
        gap: 32px;
        padding: 32px 12px 24px 12px;
    }
    .footer-contact-cta {
        flex-direction: column;
        gap: 18px;
        align-items: stretch;
    }
    .footer-col {
        min-width: 0;
    }
    .footer-cta {
        justify-content: flex-start;
        flex: 1 1 220px;
    }
}

@media (max-width: 600px) {
    .footer-inner {
        padding: 24px 4vw 18px 4vw;
    }
    .footer-logo {
        width: 95px;
    }
    .footer-cta-link {
        font-size: 0.98rem;
        padding: 10px 12px;
    }
}

@media (max-width: 420px) {
    .footer-inner {
        padding: 16px 2vw 10px 2vw;
    }
    .footer-logo {
        width: 75px;
    }
}
