@font-face {
    font-family: Montreal;
    src: url(./assets/fonts/PPNeueMontreal-Medium.otf)format("opentype");
    font-weight: 500;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "Lausanne 300";
    src: url(./assets/fonts/Lausanne-300.otf)format("opentype");
    font-weight: 300;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "Lausannepan 350";
    src: url(./assets/fonts/TWKLausannePan-350.woff2) format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* --- CSS VARIABLES --- */
:root {
    /* Colors */
    --pitch-black: #000000;
    --ink-black: #011627ff;
    --honeydew: #f0f8eaff;
    --muted-olive: #a8c686ff;
    --ash-brown: #685044ff;
    --sandy-brown: #ee964bff;
    --snow: #fffbfeff;
    --taupe: #48392aff;
    --pine-blue: #3c787eff;
    --honey-bronze: #f6ae2dff;
    --tiger-orange: #ea7e1fff;
    --text-body: #374151;
    --primary: #4A90E2;
    --accent: #27AE60;
    --accent-pop: #D4AF37;
    --neutral-light: #F9FAFB;
    --neutral-dark: #111827;
    --text-muted: #6B7280;
    --bg-body: #FFFFFF;
    --card-bg: #FFFFFF;

    /* Typography */
    --thug-life: "Silkscreen", sans-serif;
    --nothing: "Doto", sans-serif;
    --title: "IBM Plex Serif", serif;
    --blocky: "Electrolize", sans-serif;
    --para: "Roboto Slab", serif;
    --font-heading: 'Manrope', sans-serif;
    --font-body: "Lausannepan 350", sans-serif;

    /* Spacing */
    --section-padding: 120px;
}

/* --- FOOTER SECTION --- */

.footer-section {
    background-color: var(--pitch-black);
    font-family: "Lausannepan 350", sans-serif;
    color: var(--honeydew);
    z-index: 10;
}

.brand-text {
    font-family: "Montreal";
    font-weight: 500;
}

/* --- FLOATING ELEMENTS --- */
.floating-whatsapp {
    position: fixed;
    bottom: 40px;
    right: 35px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-3px);
}

.floating-whatsapp svg {
    width: 32px;
    height: 32px;
    stroke: white;
}

/* --- BACK TO TOP ENHANCEMENTS --- */
.back-to-top {
    position: fixed;
    bottom: 95px;
    /* Vertical stack distance */
    right: 35px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
}

.back-to-top svg {
    width: 28px;
    height: 28px;
    stroke: white;
    /* Clean white chevron */
}