/* General Styles */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', sans-serif; }
body { color: #333; line-height: 1.6; scroll-behavior: smooth; }
.container { max-width: 1100px; margin: auto; padding: 2rem; }
.bg-light { background: #f9f9f9; padding: 4rem 0; }

/* Navigation */
header { background: #000; color: #fff; padding: 1rem 0; position: fixed; width: 100%; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.5); }
header .container { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 2rem; }
.logo { font-size: 1.5rem; font-weight: bold; letter-spacing: 2px; }
.logo span { color: #d4af37; }
nav a { color: #fff; text-decoration: none; margin-left: 1.5rem; font-size: 0.9rem; transition: 0.3s; }
nav a:hover { color: #d4af37; }
.btn-contact { background: #d4af37; padding: 0.5rem 1rem; border-radius: 5px; color: #000 !important; font-weight: bold; }

/* Hero Section */
.hero { height: 85vh; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; }
.hero-content h1 { font-size: 4rem; margin-bottom: 0.5rem; text-transform: uppercase; }
.hero-content p { font-size: 1.5rem; margin-bottom: 2rem; opacity: 0.9; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; }

.cta-button { padding: 1rem 2rem; text-decoration: none; font-size: 1.1rem; border-radius: 5px; font-weight: bold; transition: 0.3s; color: #fff; }
.wa { background: #25d366; }
.call { background: #d4af37; color: #000; }
.cta-button:hover { transform: translateY(-3px); opacity: 0.9; }

/* Section Titles */
.section-title { text-align: center; margin-bottom: 3.5rem; font-size: 2.5rem; position: relative; }
.section-title::after { content: ''; background: #d4af37; height: 3px; width: 60px; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); }

/* Services Grid */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.service-card { text-align: center; padding: 3rem 2rem; background: #fff; border-radius: 10px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
.service-card i { font-size: 3rem; color: #d4af37; margin-bottom: 1.5rem; }

/* Contact Wrapper */
.contact-wrapper { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 4rem; margin-top: 2rem; }
.contact-info h3 { margin-bottom: 1.5rem; font-size: 1.8rem; color: #000; }
.contact-info p { margin-bottom: 1rem; font-size: 1.1rem; }
.contact-info a { color: #d4af37; text-decoration: none; font-weight: bold; }
.contact-info i { width: 30px; color: #d4af37; }

/* Contact Form */
.contact-form-container { background: #fff; padding: 2.5rem; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
form input, form textarea { width: 100%; padding: 1rem; margin-bottom: 1rem; border: 1px solid #ddd; border-radius: 5px; font-size: 1rem; }
.submit-btn { width: 100%; background: #000; color: #d4af37; padding: 1rem; border: none; border-radius: 5px; font-size: 1.1rem; font-weight: bold; cursor: pointer; transition: 0.3s; }
.submit-btn:hover { background: #d4af37; color: #000; }

/* Footer */
footer { background: #000; color: #fff; text-align: center; padding: 3rem 0; border-top: 3px solid #d4af37; }
.copy { margin-top: 2rem; font-size: 0.8rem; opacity: 0.5; }

/* --- PHOTO GALLERY STYLES --- */

.photo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 images per row on Desktop */
    gap: 1rem;
    margin-top: 2rem;
}

.photo-item {
    aspect-ratio: 1 / 1; /* Makes perfect squares */
    overflow: hidden; /* This cuts off the zoomed part of the image */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    cursor: pointer; /* Optional: shows a hand icon so people know they can interact */
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Prevents stretching */
    transition: transform 0.4s ease; /* Smooth slow zoom */
    display: block;
}

/* THE ZOOM EFFECT */
/* When hovering the BOX, zoom the IMAGE */
.photo-item:hover img {
    transform: scale(1.1);
}
/* --- MOBILE RESPONSIVE --- */
/* This must come LAST to override the desktop settings */
@media (max-width: 768px) {
    .photo-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 images per row on Mobile */
    }
    
    .hero-content h1 {
        font-size: 2.5rem; /* Adjusting hero text for mobile */
    }
}