@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600&family=Playfair+Display:ital,wght@0,300;0,400;0,500;1,400&family=Space+Mono:wght@400&display=swap');

body {
    font-family: 'Manrope', sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
}

h1, h2, h3, h4 {
    font-family: 'Manrope', sans-serif; /* Switched to Manrope for Industrial look, kept Serif for italics */
}

.serif-italic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 4px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background-color: #cbd5e1;
    border-radius: 20px;
}

/* Hide scrollbar */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Comparison Slider */
.comparison-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.comparison-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.comparison-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #ffffff;
    cursor: col-resize;
    z-index: 10;
}
.comparison-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    color: #14532d;
    transition: transform 0.2s ease;
}
.comparison-handle:hover .comparison-circle {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Observer Animation */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Glass & Utilities */
.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}
.glass-panel-dark {
    background: rgba(20, 83, 45, 0.05); /* Forest Green tint */
    backdrop-filter: blur(12px);
    border: 1px solid rgba(20, 83, 45, 0.1);
}

.hover-lift {
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
}
.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.05);
}

/* Logo Scroll Animation */
@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logo-scroll-container {
    display: flex;
    animation: scrollLogos 20s linear infinite;
    will-change: transform;
}

.logo-scroll-container:hover {
    animation-play-state: paused;
}

