/*
Theme Name: Lawlor Theme V2
Author: Your Name
Description: A custom theme for the Lawlor Corporation website with a responsive header.
Version: 2.1
*/

/* --- General Body & Font Styles --- */
body {
    font-family: 'Inter', sans-serif;
    background-color: #F9FAFB;
    color: #1F2937;
    padding-top: 80px; /* Space for the fixed header */
}

/* --- Main Header Container --- */
.site-header {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding: 0 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-weight: 600;
    color: #374151;
}

.header-left .logo {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
}

.header-left .tagline {
    font-size: 0.85rem;
    color: #4B5563;
    display: none; /* Hidden by default */
}

/* --- Desktop Navigation --- */
.main-navigation {
    display: none; /* Hidden on mobile */
}

.main-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
}

.main-navigation a {
    text-decoration: none;
    color: #4B5563;
    font-weight: 500;
    transition: color 0.2s ease-in-out;
}

.main-navigation a:hover {
    color: #1D4ED8;
}

/* --- Mobile Menu Button --- */
.mobile-menu-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-button svg {
    width: 24px;
    height: 24px;
    stroke: #374151;
}

.mobile-menu-button .icon-close {
    display: none;
}

/* --- Mobile Menu Panel --- */
.mobile-menu {
    display: none; /* Hidden by default */
    background-color: #F9FAFB;
    border-top: 1px solid #e5e7eb;
}

.mobile-menu.is-open {
    display: block; /* Shown when active */
}

.mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 1rem 0;
}

.mobile-menu li a {
    display: block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    color: #374151;
    font-weight: 500;
}

.mobile-menu li a:hover {
    background-color: #F3F4F6;
}

/* --- Responsive Media Queries --- */

/* Medium screens (tablets) */
@media (min-width: 768px) {
    .header-left .tagline {
        display: block;
    }
}

/* Large screens (desktops) */
@media (min-width: 1024px) {
    .main-navigation {
        display: block; /* Show desktop nav */
    }
    .mobile-menu-button {
        display: none; /* Hide hamburger button */
    }
}

/* --- Gallery Styles (Unchanged) --- */
.gallery { position: relative; overflow: hidden; }
.gallery-container { display: flex; transition: transform 0.5s ease-in-out; }
.gallery-item { min-width: 100%; box-sizing: border-box; }
.gallery-nav { position: absolute; top: 50%; transform: translateY(-50%); background-color: rgba(0, 0, 0, 0.5); color: white; border: none; padding: 0.5rem; cursor: pointer; z-index: 10; border-radius: 9999px; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; }
.gallery-nav.prev { left: 10px; }
.gallery-nav.next { right: 10px; }
