/* Base Styles */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Montserrat', sans-serif; line-height: 1.6; color: #111; }

h1, h2, h3 { font-weight: 700; margin-bottom: 1rem; }
h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; text-align: center; margin-bottom: 2rem; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.bg-light { background-color: #f9f9f9; }

/* Buttons */
.btn-main { display: inline-block; background: #000; color: #fff; padding: 15px 35px; border-radius: 4px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; transition: 0.3s; border: none; cursor: pointer; }
.btn-main:hover { background: #333; transform: translateY(-2px); }
.btn-whatsapp { display: inline-block; background: #25D366; color: #fff; padding: 12px 25px; border-radius: 4px; font-weight: 600; margin-top: 20px; transition: 0.3s; }
.btn-whatsapp:hover { background: #1ebe57; }

/* Navigation */
nav { display: flex; justify-content: space-between; align-items: center; padding: 20px 5%; background: #fff; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.logo { font-size: 1.5rem; font-weight: 700; letter-spacing: 2px; }
.nav-links a { margin-left: 25px; font-weight: 500; font-size: 0.9rem; }
.btn-nav { border: 2px solid #000; padding: 8px 20px; border-radius: 4px; }
.btn-nav:hover { background: #000; color: #fff; }

/* Hero */
.hero { height: 80vh; display: flex; align-items: center; text-align: center; background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1557804506-669a67965ba0?auto=format&fit=crop&w=1500&q=80') center/cover; color: #fff; }
.hero p { font-size: 1.2rem; margin-bottom: 2rem; }

/* About & Reviews */
.content-box { max-width: 700px; margin: 0 auto; text-align: center; font-size: 1.1rem; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.review-card { background: #f4f4f4; padding: 30px; border-left: 4px solid #000; font-style: italic; }

/* FLASHER GALLERY & ANTI-THEFT CSS */
.gallery-slider { position: relative; max-width: 900px; margin: 0 auto; overflow: hidden; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.gallery-slide { display: none; width: 100%; }
.gallery-slide.active { display: block; animation: fade 1s ease-in-out; }

/* The Image Protection Setup */
.protected-image-container { position: relative; width: 100%; user-select: none; -webkit-user-drag: none; }
.protected-image-container img { width: 100%; height: 500px; object-fit: cover; display: block; pointer-events: none; /* Stops dragging */ }
.overlay-shield { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 10; background: transparent; }

/* Gallery Controls */
.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.5); color: #fff; border: none; padding: 15px; cursor: pointer; font-size: 1.5rem; transition: 0.3s; z-index: 20; }
.slider-btn:hover { background: rgba(0,0,0,0.8); }
.prev { left: 0; border-radius: 0 4px 4px 0; }
.next { right: 0; border-radius: 4px 0 0 4px; }
@keyframes fade { from { opacity: 0.6; } to { opacity: 1; } }

/* Contact Section */
.contact-wrapper { display: flex; flex-wrap: wrap; gap: 50px; justify-content: space-between; }
.contact-info { flex: 1; min-width: 300px; }
.contact-details { margin: 20px 0; padding: 20px; background: #fff; border: 1px solid #eee; border-radius: 4px; }
.contact-details p { margin-bottom: 10px; font-size: 0.95rem; }
.contact-form-container { flex: 1; min-width: 300px; background: #fff; padding: 30px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 5px; font-size: 0.9rem; }
.form-group input, .form-group textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px; font-family: inherit; }
.form-group input:focus, .form-group textarea:focus { border-color: #000; outline: none; }

footer { text-align: center; padding: 30px; background: #000; color: #fff; font-size: 0.9rem; }

/* Mobile Adaptations */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    nav { flex-direction: column; padding: 15px; }
    .nav-links { margin-top: 15px; }
    .nav-links a { margin: 0 10px; }
    .protected-image-container img { height: 300px; }
}