/* Import czcionek */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

/* Ogólne ustawienia strony */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
}

/* Hero Section */
.hero-bg { 
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1516533075015-a3838414c3ca?auto=format&fit=crop&q=80&w=1920'); 
    background-size: cover; 
    background-position: center; 
}

/* Animacja Paska Sponsorów */
@keyframes marquee {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
}

.animate-marquee {
    animation: marquee 30s linear infinite;
}

/* Zatrzymanie animacji po najechaniu myszką */
.group:hover .animate-marquee {
    animation-play-state: paused;
}

/* Dodatkowe efekty wizualne */
.fb-container { 
    height: 500px; 
    overflow-y: auto; 
}