/* ===== RESET & BASE STYLES ===== */
@import url('footer.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

br.mobile-only {
    display: none;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #0f0f0f;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 50px 50px;
    background-attachment: fixed;
    color: #ffffff;
    min-height: 100vh;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 2px;
    overflow-y: scroll;
}

/* ===== RESPONSIVE GRID ===== */
@media (max-width: 767px) {
    body {
        background-size: 35px 35px;
        background-image: 
            linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
    }
}

/* ===== TYPOGRAPHY ===== */
a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    outline: none;
}

/* ===== SCROLL ANIMATIONS (GLOBAL) ===== */
.animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, color 0.6s ease-out;
    will-change: opacity, transform, color;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.js-enabled .animate-on-scroll:not(.animated) {
    opacity: 0;
    transform: translateY(30px) translateZ(0);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0) translateZ(0);
    will-change: auto;
}

/* ===== COOKIEBOT BRANDING REMOVAL ===== */
a#CybotCookiebotDialogPoweredbyCybot,
div#CybotCookiebotDialogPoweredByText {
    display: none;
}

#CookiebotWidget .CookiebotWidget-body .CookiebotWidget-main-logo {
    display: none;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */
/* Mobile: < 768px */
/* Tablet: 768px - 1024px */
/* Desktop: > 1024px */