/* =============================================================
   gallery.css — Bulbmeister Image Gallery
   Scoped overrides for header, nav, and footer only.
   Matches bulbmeister.com sizing exactly so navigation
   between sites feels seamless.
   Does NOT affect PhotoPost body content.
   ============================================================= */

/* ----- Header ----- */
header {
    padding: 1rem 0;
}

.logo {
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.tagline {
    font-size: 1.1rem;
    opacity: 0.9;
    font-style: italic;
}

.address-section {
    padding: 0 1rem;
    text-align: right;
    font-size: 0.9rem;
    background: none;
    margin: 0;
    border-radius: 0;
    color: white;
}

/* ----- Desktop Navigation ----- */
nav {
    padding: 1rem 0;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.4rem 0.8rem;
}

/* ----- Hamburger Button ----- */
.hamburger-menu {
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    padding: 0.6rem;
}

/* ----- Mobile Menu ----- */
.mobile-menu-logo {
    font-size: 1.5rem;
}

.close-menu {
    font-size: 1.5rem;
    padding: 0.5rem;
}

.mobile-nav-links a {
    padding: 1rem 1.5rem;
    font-size: 1rem;
}

/* ----- Footer ----- */
footer {
    background: #2d5016;
    color: white;
    padding: 3rem 0 1rem;
    text-align: center;
    font-size: 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section p {
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.footer-section a {
    color: #a0d468;
    text-decoration: none;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #4a7c29;
    padding-top: 1rem;
    margin-top: 2rem;
    font-size: 0.85rem;
}

.footer-home-link {
    color: #a0d468;
    text-decoration: none;
}

.footer-home-link:hover {
    color: white;
}

/* ----- Responsive: Tablet ----- */
@media (max-width: 768px) {
    .logo {
        font-size: 1.8rem;
    }

    .tagline {
        font-size: 0.95rem;
    }

    .address-section {
        text-align: center;
        font-size: 0.85rem;
        padding: 0;
    }
}

/* ----- Responsive: Mobile ----- */
@media (max-width: 480px) {
    .logo {
        font-size: 1.6rem;
    }

    .tagline {
        font-size: 0.85rem;
    }
}
