@font-face { font-family: 'Poppins'; src: url('fonts/Poppins-Light.ttf') format('truetype'); font-weight: 300; font-style: normal; }
@font-face { font-family: 'Poppins'; src: url('fonts/Poppins-Regular.ttf') format('truetype'); font-weight: 400; font-style: normal; }
@font-face { font-family: 'Poppins'; src: url('fonts/Poppins-Medium.ttf') format('truetype'); font-weight: 500; font-style: normal; }
@font-face { font-family: 'Poppins'; src: url('fonts/Poppins-SemiBold.ttf') format('truetype'); font-weight: 600; font-style: normal; }
@font-face { font-family: 'Poppins'; src: url('fonts/Poppins-Bold.ttf') format('truetype'); font-weight: 700; font-style: normal; }
@font-face { font-family: 'Poppins'; src: url('fonts/Poppins-ExtraBold.ttf') format('truetype'); font-weight: 800; font-style: normal; }
@font-face { font-family: 'Poppins'; src: url('fonts/Poppins-Black.ttf') format('truetype'); font-weight: 900; font-style: normal; }
@font-face { font-family: 'Poppins'; src: url('fonts/Poppins-Italic.ttf') format('truetype'); font-weight: 400; font-style: italic; }

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
}

body {
    background-color: #000;
    background-image: radial-gradient(circle at 50% 100%, rgb(255 255 255 / 13%) 0%, rgba(19, 19, 19, 0) 60%);
    background-attachment: fixed;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    -webkit-font-smoothing: antialiased;
    min-height: max(884px, 100dvh);
}

.hero-video-gradient {
    background: linear-gradient(0deg, rgba(19, 19, 19, 1) 0%, rgba(19, 19, 19, 0.4) 50%, rgba(19, 19, 19, 0.8) 100%);
}

#hero-slider {
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
}

.text-impact {
    letter-spacing: -0.04em;
    line-height: 0.9;
}

.editorial-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Ticker Component Styles */
.ticker-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow: hidden;
    opacity: 1;
    transition: opacity 700ms;
    color: white;
}

.ticker-content {
    width: fit-content;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    height: 100%;
}

.ticker-item {
    width: 150px;
    margin-left: 3rem;
    margin-right: 3rem;
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.05em;
    white-space: nowrap;
    opacity: 0.4;
    transition: opacity 700ms;
}

.ticker-item:hover {
    opacity: 1;
}


/* Service Title Component - Midway between Section Title and Secondary Title */
.service-title-mid {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    line-height: 1.1;
    font-size: 2.25rem;
    /* text-4xl equivalent */
}

@media (min-width: 768px) {
    .service-title-mid {
        font-size: 3.75rem;
        /* text-6xl equivalent */
    }
}

/* Hero Slider Animations */
.slide img {
    transition: transform 8s ease-out !important;
    transform: scale(1);
}

.slide.opacity-100 img {
    transform: scale(1.1) !important;
}

.slide-title-container {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s;
}
.slide.opacity-100 .slide-title-container {
    opacity: 1;
    transform: translateY(0);
}