/* General styles */ body { font-family: Arial, sans-serif; margin: 0; padding: 0; background-color: #111; color: #fff; } h1, h2, h3, .navbar a { font-family: 'Algerian', sans-serif; color: #fff; } /* Navbar */ .navbar ul { list-style-type: none; display: flex; justify-content: center; padding: 10px; background: rgba(0, 0, 0, 0.8); } .navbar ul li { margin: 0 15px; } .navbar ul li a { color: white; text-decoration: none; } /* Hero Section */ .hero-section { background-image: url('../images/home-background.jpg'); background-size: cover; height: 100vh; display: flex; align-items: center; justify-content: center; flex-direction: column; } /* Club Section */ .club-section { background-image: url('../images/club-background.jpg'); padding: 50px; text-align: center; } /* Gallery Section */ .gallery-section { background-image: url('../images/gallery-background.jpg'); padding: 50px; } .gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; } .gallery-item { width: 100%; height: auto; cursor: pointer; transition: transform 0.3s ease, box-shadow 0.3s ease; border-radius: 5px; } .gallery-item:hover { transform: scale(1.03); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); } /* Lightbox styling */ .lightbox { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.95); justify-content: center; align-items: center; animation: fadeIn 0.5s ease; } .lightbox-content { max-width: 80%; max-height: 80%; border: 5px solid #fff; border-radius: 10px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); } .close { position: absolute; top: 20px; right: 30px; color: white; font-size: 40px; font-weight: bold; cursor: pointer; transition: color 0.3s ease; } .close:hover { color: #f00; } @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } /* Footer styling */ .footer { background: rgba(0, 0, 0, 0.85); color: #ddd; text-align: center; padding: 20px; position: fixed; bottom: 0; width: 100%; }

Kontakta oss

Hör av dig till oss via e-post för allmänna frågor eller medlemskap. För varor i butiken, kontakta oss direkt.

1:a Exempelgatan, Exempelstad, Exempelland

+1 234 567 8910

ali@jammali.se

Söndag: stängt, Måndag-fredag: 8:00-18:00, Lördag: 10:00-16:00

Boka våra tjänster nu!

Fyll i formuläret nedan för att boka våra exklusiva tjänster snabbt och enkelt.
Name E-mail Message I agree to the Terms & Conditions and Privacy Policy Submit
// Open lightbox with selected image function openLightbox(imageSrc) { const lightbox = document.getElementById("lightbox"); const lightboxImg = document.getElementById("lightbox-img"); lightbox.style.display = "flex"; lightboxImg.src = imageSrc; } // Close lightbox function closeLightbox() { const lightbox = document.getElementById("lightbox"); lightbox.style.display = "none"; }