:root {
    --primary: #2D3748;
    --secondary: #4A5568;
    --accent: #ED8936;
    --bg: #FAFAFA;
    --text: #1A202C;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    background-color: var(--bg);
    color: var(--text);
}

.font-display {
    font-family: 'Inter', sans-serif;
}

.font-mono {
    font-family: 'JetBrains Mono', monospace;
}



.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-8px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background: var(--accent);
    color: white;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #DD6B20;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(237, 137, 54, 0.3);
}

.nav-blur {
    background: rgba(250, 250, 250, 0.95);
    backdrop-filter: blur(10px);
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.counter {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
}

.particle-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.content-overlay {
    position: relative;
    z-index: 2;
}

.hero-bg {
    position: relative;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-overlay {
    position: absolute;
    inset: 0;

    background: #000;

    opacity: 0.65;

    z-index: 1;
}

.content-overlay {
    position: relative;
    z-index: 2;
}

#hero-carousel{
    overflow:hidden;
    border-radius:1rem;
}

#hero-carousel img{
    width:100%;
    height:100%;
    object-fit:cover;
    aspect-ratio:4/3;
    display:block;
}

/* Optional: Make arrows slightly transparent */
#hero-carousel .splide__arrow{
    background:rgba(0,0,0,.45);
}

#hero-carousel .splide__arrow svg{
    fill:white;
}

.mobile-pt-20 {
    padding-top: 20px;
}

@media (min-width: 1024px) {
    .mobile-pt-20 {
        padding-top: 0;
    }
}