/* GLOBAL SETTINGS */
:root {
    --brand-blue: #004a99;
    --brand-gold: #d4af37;
}

* { box-sizing: border-box; }

body, html {
    margin: 0; padding: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* BLUE TOP BAR + TAB-STYLE LINKS */
.top-bar {
    background: var(--brand-blue);
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrap img {
    width: 80px;
    height: auto;
    display: block;
}

.nav-menu {
    display: flex;
    gap: 12px;
}

.nav-menu a {
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 6px;
    transition: all 0.3s;
    font-size: 1.05rem;
}

.nav-menu a:hover {
    background: var(--brand-gold);
    color: var(--brand-blue);
    transform: translateY(-2px);
}

.nav-menu a.active {
    background: var(--brand-gold) !important;
    color: var(--brand-blue) !important;
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.4);
}

/* REVEAL SLIDER */
.reveal-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
    height: 340px;
}

.reveal-wrapper.hero {
    height: 60vh;
}

.history-base, .history-reveal {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.history-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    clip-path: inset(0 50% 0 0);
}

.history-stripe {
    position: absolute;
    top: 0; bottom: 0;
    width: 6px;
    background: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    z-index: 10;
}

.history-logo {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 160px;
    z-index: 20;
    pointer-events: none;
}

/* GALLERY & STATIC GRID */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; padding: 40px 5%; max-width: 1200px; margin: 0 auto; }
.gallery-item h2 { color: var(--brand-blue); margin-bottom: 15px; text-align: center; }

.static-gallery { padding: 60px 5%; max-width: 1200px; margin: 0 auto; background: #f8f8f8; }
.static-gallery h2 { text-align: center; color: var(--brand-blue); margin-bottom: 30px; }
.static-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
.static-item img { width: 100%; max-height: 260px; border-radius: 8px; box-shadow: 0 8px 20px rgba(0,0,0,0.1); cursor: pointer; transition: transform 0.3s; }
.static-item img:hover { transform: scale(1.03); }

/* LIGHTBOX */
.lightbox { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.92); z-index: 10000; align-items: center; justify-content: center; padding: 20px; cursor: zoom-out; }
.lightbox img { max-width: 95%; max-height: 95vh; border-radius: 8px; box-shadow: 0 10px 40px rgba(0,0,0,0.6); }

/* CONTACT FORM */
.contact-container { max-width: 720px; margin: 60px auto; padding: 60px 50px; background: #fff; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.contact-container label { display: block; margin: 28px 0 10px; font-weight: bold; color: var(--brand-blue); font-size: 1.15rem; }
.contact-container input, .contact-container textarea { width: 100%; padding: 18px; border: 2px solid #ddd; border-radius: 8px; font-size: 1.1rem; }
.contact-container textarea { min-height: 240px; }

/* CTA, FLOATING CALL, BACK TO TOP, BLUE FOOTER */
.cta-button { display: inline-block; background: var(--brand-gold); color: #fff; font-weight: bold; font-size: 1.25rem; padding: 16px 36px; border-radius: 8px; text-decoration: none; margin: 30px auto; transition: all 0.3s; box-shadow: 0 6px 15px rgba(212, 175, 55, 0.3); }
.cta-button:hover { background: white; color: var(--brand-blue); transform: translateY(-4px); }

.floating-call { position: fixed; bottom: 25px; right: 25px; background: var(--brand-gold); color: #fff; padding: 16px 24px; border-radius: 50px; font-weight: bold; font-size: 1.1rem; text-decoration: none; box-shadow: 0 8px 25px rgba(0,0,0,0.3); z-index: 9999; display: flex; align-items: center; gap: 8px; }
.floating-call:hover { transform: scale(1.08); background: white; color: var(--brand-blue); }

.back-to-top { position: fixed; bottom: 90px; right: 25px; background: var(--brand-blue); color: white; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; box-shadow: 0 6px 20px rgba(0,0,0,0.3); z-index: 9998; opacity: 0; visibility: hidden; transition: all 0.3s; }
.back-to-top.show { opacity: 1; visibility: visible; }

.footer-blue {
    background: var(--brand-blue) !important;
    color: white;
    padding: 40px 5%;
    text-align: center;
    margin-top: auto;
}
.footer-info { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-bottom: 20px; }
.footer-info a { color: white; text-decoration: none; }
.footer-info a:hover { color: var(--brand-gold); }
.copyright { font-size: 0.95rem; opacity: 0.9; }