 :root { --primary: #2d247f; --secondary: #52b6ec; --light: #ffffff; --dark: #333333; --gray: #666666; --light-gray: #f5f5f5; --border: #e0e0e0; }
		html { scrollbar-gutter: stable; }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { background-color: var(--light); color: var(--dark); line-height: 1.5; font-size: 16px; font-family: 'Source Sans Pro', sans-serif; }
        h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', sans-serif; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        header { background: var(--light); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
        .header-inner { display: flex; justify-content: center; align-items: center; padding: 20px 0; position: relative; height: 100px; }
        .logo { display: flex; align-items: center; text-decoration: none; }
        .logo img { height: 130px; width: auto; }
        
        nav { background: var(--primary); position: relative; }
        .nav-container { display: flex; justify-content: center; align-items: center; position: relative; height: 60px; }
        
        .desktop-menu { display: flex; list-style: none; justify-content: center; }
        .desktop-menu .menu-item { position: relative; }
        .desktop-menu .menu-item > a { display: block; padding: 18px 24px; color: white; text-decoration: none; font-weight: 500; text-align: center; font-family: 'Montserrat', sans-serif; font-size: 16px; }
        .desktop-menu .menu-item > a:hover { background: rgba(255,255,255,0.1); }
        .desktop-menu .dropdown { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); background: white; min-width: 200px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); display: none; z-index: 10; }
        .desktop-menu .menu-item:hover .dropdown { display: block; }
        .desktop-menu .dropdown a { display: block; padding: 12px 15px; color: var(--dark); text-decoration: none; border-bottom: 1px solid var(--border); text-align: center; font-family: 'Source Sans Pro', sans-serif; }
        .desktop-menu .dropdown a:hover { background: var(--light-gray); }
        
        .mobile-menu-btn { display: none; background: none; border: none; color: white; font-size: 24px; cursor: pointer; padding: 10px; position: absolute; left: 50%; transform: translateX(-50%); }
        
        .mobile-nav { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--primary); z-index: 1000; display: none; flex-direction: column; align-items: center; justify-content: flex-start; padding-top: 80px; overflow-y: auto; }
        .mobile-nav.active { display: flex; }
        .mobile-nav-close { position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 24px; color: white; cursor: pointer; z-index: 1001; }
        .mobile-menu { list-style: none; text-align: center; width: 100%; max-width: 500px; padding: 0 20px; }
        .mobile-menu .menu-item { margin-bottom: 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
        .mobile-menu .menu-item:last-child { border-bottom: none; }
        .mobile-menu .menu-item > a { display: flex; justify-content: space-between; align-items: center; padding: 18px 15px; color: white; text-decoration: none; font-size: 18px; font-weight: 600; font-family: 'Montserrat', sans-serif; }
        .mobile-menu .menu-item > a:hover { background: rgba(255,255,255,0.1); }
        .mobile-menu .dropdown { display: none; background: rgba(0,0,0,0.2); width: 100%; }
        .mobile-menu .dropdown.active { display: block; }
        .mobile-menu .dropdown a { display: block; padding: 15px; color: white; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 16px; font-family: 'Source Sans Pro', sans-serif; }
        .mobile-menu .dropdown a:last-child { border-bottom: none; }
        .mobile-menu .dropdown a:hover { background: rgba(255,255,255,0.1); }
        .mobile-menu .dropdown-toggle .fa-chevron-down { transition: transform 0.3s; }
        .mobile-menu .dropdown-toggle.active .fa-chevron-down { transform: rotate(180deg); }
        
        .hero { background: linear-gradient(rgba(45, 36, 127, 0.6), rgba(45, 36, 127, 0.6)), url('/images/fons.jpg'); background-size: cover; background-position: center; color: white; padding: 80px 0; text-align: center; }
        .hero h1 { font-size: 42px; margin-bottom: 20px; font-weight: 700; }
        .hero p { font-size: 20px; margin-bottom: 40px; max-width: 700px; margin-left: auto; margin-right: auto; }
        .btn { display: inline-block; padding: 14px 30px; background: var(--secondary); color: white; text-decoration: none; border-radius: 4px; font-weight: 600; font-size: 16px; text-align: center; font-family: 'Montserrat', sans-serif; }
        .btn:hover { background: #3aa0d8; }
		
		#saturs { max-width: 1200px; margin: 0 auto; padding: 40px 20px; }
		#saturs h2 { color: var(--primary); font-size: 28px; margin-bottom: 20px; font-weight: 700; }
		#saturs h3 { color: var(--primary); font-size: 22px; margin: 25px 0 15px; font-weight: 600; }
		#saturs a { color: black; }
		#saturs p { margin-bottom: 15px; line-height: 1.6; }
		#saturs ul, #saturs ol { margin: 15px 0 15px 20px; }
		#saturs li { margin-bottom: 8px; }
        
        .sports { padding: 80px 0; }
        .section-title { text-align: center; margin-bottom: 50px; }
        .section-title h2 { font-size: 32px; color: var(--primary); margin-bottom: 15px; font-weight: 700; }
        .section-title p { color: var(--gray); font-size: 18px; max-width: 600px; margin: 0 auto; }
        .sports-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        .sport-card { background: white; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; transition: transform 0.3s; text-align: center; }
        .sport-card:hover { transform: translateY(-5px); }
        .sport-image { height: 200px; background-size: cover; background-position: center; }
        .sport-image.rugby { background-image: url('/images/regbijs.jpg'); }
        .sport-image.football { background-image: url('images/futbols.jpg'); }
        .sport-image.petanque { background-image: url('/images/petanks.jpg'); }
        .sport-header { background: var(--primary); color: white; padding: 25px; }
        .sport-header h3 { font-size: 22px; font-weight: 600; }
        .sport-content { padding: 25px; }
        
        .info { background: var(--light-gray); padding: 80px 0; }
        .info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        .info-card { text-align: center; padding: 0 20px; }
        .info-icon { width: 70px; height: 70px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 28px; margin: 0 auto 20px; }
        .info-card h3 { font-size: 20px; margin-bottom: 15px; color: var(--primary); font-weight: 600; }
        
        footer { background: var(--dark); color: white; padding: 70px 0 30px; }
        .footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 50px; }
        .footer-column h3 { font-size: 18px; margin-bottom: 20px; color: var(--secondary); text-align: center; font-weight: 600; }
        .footer-links { list-style: none; text-align: center; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a { color: #ccc; text-decoration: none; }
        .footer-links a:hover { color: white; }
        .contact-details { list-style: none; text-align: center; }
        .contact-details li { margin-bottom: 15px; display: flex; align-items: center; justify-content: center; }
        .contact-details li i { margin-right: 10px; color: var(--secondary); }
        .social-links { display: flex; gap: 15px; margin-top: 20px; justify-content: center; }
        .social-links a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 4px; color: white; text-decoration: none; }
        .social-links a:hover { background: var(--secondary); }
        .copyright { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); color: #999; font-size: 14px; }
        
        .cookie-consent { position: fixed; bottom: 0; left: 0; right: 0; background: var(--dark); color: white; padding: 20px; z-index: 1000; display: none; }
        .cookie-content { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }
        .cookie-text { flex: 1; margin-right: 20px; text-align: center; }
        .cookie-btn { background: var(--secondary); color: white; border: none; padding: 10px 20px; border-radius: 4px; cursor: pointer; font-weight: 600; font-family: 'Montserrat', sans-serif; }
        
        @media (max-width: 1000px) {
            .desktop-menu { display: none; }
            .mobile-menu-btn { display: block; }
            .hero { padding: 80px 0; }
            .hero h1 { font-size: 28px; }
            .hero p { font-size: 18px; }
            .sports-grid, .info-grid, .footer-grid { grid-template-columns: 1fr; }
            .sports, .info { padding: 60px 0; }
            .cookie-content { flex-direction: column; text-align: center; }
            .cookie-text { margin-right: 0; margin-bottom: 15px; }
            .mobile-nav { padding-top: 60px; }
            .mobile-menu .menu-item > a { font-size: 18px; padding: 16px 15px; }
			.kolumn { flex: 1 1 100%; }
			.kontainers { flex-direction: column; }
			.sidebar, .bar { width: 100%; }
		}
		
		.kontainer { display: flex; justify-content: center; gap: 10px; max-width: 1200px; margin: 0 auto; flex-wrap: wrap; }
		.kolumn { flex: 1 1 45%; min-width: 300px; background-color: #f0f0f0; padding: 10px;  box-sizing: border-box; }
		
		.kontainers { display: flex; max-width: 1200px; margin: 0 auto; padding: 5px; flex-wrap: wrap; }
		.sidebar { width: 272px; background-color: #e0e0e0; padding: 10px; box-sizing: border-box; }
		.bar { flex: 1; background-color: #f5f5f5; padding: 10px; box-sizing: border-box; }





