/* 
Theme Name: Constellar Consulting
Description: Custom Typography System
*/

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Inter:wght@300;400;500;600;700;800;900&family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --font-bebas: 'Bebas Neue', sans-serif;
    --font-montserrat: 'Montserrat', sans-serif;
    --primary-color: #181818;
    --secondary-color: #FFF200;
}

body,
.Montserrat {
    font-family: var(--font-montserrat);
}

/* ==========================================================================
   Typography System - Desktop
   ========================================================================== */

/* Headings */
body h1,
.bebas {
    font-family: var(--font-bebas);
    font-size: 64px;
    line-height: 72px;
    font-weight: 700;
    /* Bold */
}

body h2 {
    font-family: var(--font-montserrat);
    font-size: 38px;
    line-height: 45px;
    font-weight: 600;
    /* SemiBold */
}

body h3 {
    font-family: var(--font-montserrat);
    font-size: 24px;
    line-height: 26px;
    font-weight: 500;
    /* Medium */
}

body h4 {
    font-family: var(--font-montserrat);
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
    /* Bold */
}

/* Paragraphs */
p {
    font-family: var(--font-montserrat);
    font-size: 20px;
    line-height: 26px;
    font-weight: 400;
}

.p2 {
    font-family: var(--font-montserrat);
    font-size: 16px;
    line-height: 16px;
    font-weight: 700;
    /* Bold */
}

.p2-regular {
    font-family: var(--font-montserrat);
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    /* Regular */
}

/* Caption */
.caption-text {
    font-family: var(--font-montserrat);
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    /* Regular */
}

/* Buttons */
.btn{
    font-family: var(--font-bebas);
}

/* Infinite Marquee Animation for Sliders */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.animate-marquee-awards {
    width: max-content;
    animation: marquee 12s linear infinite;
}

@keyframes marquee-clients {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.animate-marquee-clients {
    width: max-content;
    animation: marquee-clients 12s linear infinite;
}

.slider-gradient-mask {
    background: linear-gradient(270deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 32.21%, rgba(255, 255, 255, 0) 71.17%, #FFFFFF 100%);
}

/* ==========================================================================
   Elearning Page Styles
   ========================================================================== */

/* Hide scrollbar for horizontal scrolling sections */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Prevent any CSS transitions from firing on page load causing a bounce */
.preload-transitions * {
    transition: none !important;
}
/* ==========================================================================
   Our Story Page Styles
   ========================================================================== */
.hero-slide-left, .hero-slide-right {
    opacity: 1;
    transform: none;
}
@media (min-width: 1024px) {
    @keyframes slideInLeft {
        0% { opacity: 0; transform: translateX(-350px); }
        100% { opacity: 1; transform: translateX(0); }
    }
    @keyframes slideInRight {
        0% { opacity: 0; transform: translateX(350px); }
        100% { opacity: 1; transform: translateX(0); }
    }
    .hero-slide-left {
        animation: slideInLeft 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
        opacity: 0;
    }
    .hero-slide-right {
        animation: slideInRight 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
        opacity: 0;
        animation-delay: 0.1s; /* slight stagger for effect */
    }
}

.team-scrollbar::-webkit-scrollbar {
    width: 6px;
}
.team-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}
.team-scrollbar::-webkit-scrollbar-thumb {
    background: #FFF200;
    border-radius: 10px;
}
