/* ==========================
   BASIC RESET & TYPOGRAPHY
========================== */

html {
    overflow-x: hidden;
}
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #f3f4f6; /* Light gray background */
    color: #1f2937; /* Text gray-800 */
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ==========================
   HERO SECTION
========================== */
.hero-section {
    height: 200px;
    background-image:
        linear-gradient(45deg, rgba(44, 49, 57, 0.685), rgba(29, 31, 33, 0.826)),
        url('/Images/hero-section-photo.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 60px;
}

.hero-section h1 {
    font-size: 2rem;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.breadcrumb {
    margin: 10px 0 0;
    font-size: 1rem; 
    font-weight: 400;
    letter-spacing: 1px;
    color: white;
}

.Home-link {
    color: white;
    text-decoration: none;
}
.aboutUs-link {
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); 
}
.Home-link:hover, .aboutUs-link:hover {
    color: #007BFF;
}

/* ==========================
   LAYOUT CONTAINER
========================== */
.container {
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================
   HEADINGS & TEXT
========================== */
h1 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* ==========================
   INTRO SECTION
========================== */
.intro-section {
    text-align: center;
    margin-bottom: 3rem;
}

.intro-section p {
    max-width: 800px;
    margin: 0.5rem auto 0 auto;
    line-height: 1.6;
    color: #6c757d;
    font-size: 1.1rem;
}

/* ==========================
   IMAGE GALLERY GRID
========================== */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr; /* 1 column for mobile */
    gap: 1.5rem;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
                0 2px 4px -2px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease-in-out;
    cursor: pointer;
    object-fit: cover;
}

.gallery-item img:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
                0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

/* ==========================
   GET IN TOUCH SECTION
========================== */
.getin-touch-section {
    background-color: #F4F4F4;
    color: #333;
    text-align: center;
    padding: 3rem 1rem;
    margin-top: 3rem;
}

.getin-touch-section p {
    color: #333;
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 42rem;
    padding-top: 50px;
    margin-left: auto;
    line-height: 1.6;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: #020101e4;
    color: #ffffff;
    font-weight: 700;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #0d0e0eb9;
}

/* ==========================
   MODAL (LIGHTBOX) - FIXED
========================== */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-content {
    max-width: 95%;
    max-height: 90%;
    border-radius: 0.5rem;
    animation: zoom 0.4s ease;
    object-fit: contain;
}

@keyframes zoom {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Close Button */
.close {
    position: fixed;
    top: 20px;
    right: 30px;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.close:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ff4b4b;
}

/* Navigation Arrows */
.prev, .next {
    cursor: pointer;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    border: none;
    z-index: 10000;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.5);
    transition: background-color 0.3s ease;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.75);
}

.prev { left: 20px; }
.next { right: 20px; }

/* ==========================
   RESPONSIVE DESIGN
========================== */
@media (min-width: 768px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .main-content {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .banner {
        grid-column: span 2 / span 2;
    }
}

@media (max-width: 480px) {
    .close, .prev, .next {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .hero-section {
        height: 140px;
    }

    .hero-section h1 {
        font-size: 1rem;
    }
}
