/* Homepage Styles - FEMAC Theme */

/* Import Google Fonts - Merriweather Extrabold */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700;900&display=swap');

/* Hero Title - Merriweather Extrabold Font */
.hero-title-main {
    font-family: 'Merriweather', serif !important;
    font-weight: 900 !important; /* Extrabold/Black weight */
    letter-spacing: -0.025em !important; /* Tight letter spacing for impact */
    line-height: 1.1 !important; /* Tight line height for better readability */
}

/* Hero subtitle styling */
.hero-subtitle-main {
    font-family: 'Merriweather', serif !important;
    font-weight: 400 !important; /* Regular weight for subtitle */
}

/* Brand Carousel Styles */

/* Infinite scroll animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.animate-scroll {
    animation: scroll 30s linear infinite;
    width: calc(200% + 4rem); /* Account for spacing */
}

/* Pause animation on hover */
.animate-scroll:hover {
    animation-play-state: paused;
}

/* Ensure smooth scrolling on different screen sizes */
@media (max-width: 768px) {
    .animate-scroll {
        animation-duration: 20s;
    }
    
    .animate-scroll > div {
        width: 24 !important; /* w-24 = 6rem = 96px */
        height: 16 !important; /* h-16 = 4rem = 64px */
    }
}

/* Additional brand logo styling */
.brand-logo-container {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-logo-container:hover {
    transform: translateY(-2px);
}