@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Syne:wght@400;500;600;700;800&display=swap');

body {
    background-color: #050505;
    color: white;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

body.page-agency {
    background-color: #000000;
}

h1, h2, h3, h4, .font-display {
    font-family: 'Syne', sans-serif;
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #050505;
}
::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #FF5F1F;
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255, 95, 31, 0.5), rgba(5, 5, 5, 1));
    mix-blend-mode: multiply;
    z-index: 10;
}

.marquee-container {
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.work-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

input, textarea {
    background: transparent;
    border-bottom: 1px solid #333;
    transition: all 0.3s ease;
}
input:focus, textarea:focus {
    outline: none;
    border-bottom: 1px solid #FF5F1F;
}