/* =======================================================
   GLOBAL BASE – required for header/footer
======================================================= */

body {
    background: #0d0d0d;
    color: #e8e8e8;
    font-family: 'Inter', sans-serif;
    line-height: 1.45;
    overflow-x: hidden;
    margin: 0;
}

/* =======================================================
   HEADER (global EngraveFill navbar)
======================================================= */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(15,15,15,0.75);
    border-bottom: 1px solid rgba(0,255,0,0.15);
    box-shadow: 0 0 22px rgba(0,255,100,0.12);
}

/* NAV WRAPPER */
.navbar {
    max-width: 1100px;
    margin: 0 auto;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

/* LOGO IMG (250×50 px) */
.logo-image img {
    width: 250px;
    height: 50px;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 10;
}

.logo-image {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-glow {
    position: absolute;
    width: 260px;
    height: 60px;
    background: radial-gradient(circle, rgba(0,255,140,0.25), transparent 80%);
    filter: blur(14px);
    top: 8px;
    left: 20px;
    z-index: 1;
    pointer-events: none;
}

/* NAV LINKS */
.nav-links {
    list-style: none;
    display: flex;
    gap: 22px;
}

.nav-links a {
    text-decoration: none;
    color: #e8e8e8;
    font-weight: 600;
    transition: .25s ease;
}

.nav-links a:hover {
    color: #00ff88;
    text-shadow: 0 0 12px rgba(0,255,100,0.45);
}

/* HAMBURGER */
#menu-toggle { display: none; }

.hamburger-menu {
    display: none;
    cursor: pointer;
}

.bars {
    width: 28px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bar {
    height: 3px;
    background: #00ff88;
    border-radius: 6px;
    box-shadow: 0 0 8px #00ff88;
    transition: 0.35s;
}

/* ACTIVE ANIMATION */
#menu-toggle:checked + .hamburger-menu .bar1 {
    transform: translateY(7px) rotate(45deg);
}
#menu-toggle:checked + .hamburger-menu .bar2 {
    opacity: 0;
}
#menu-toggle:checked + .hamburger-menu .bar3 {
    transform: translateY(-7px) rotate(-45deg);
}

/* MOBILE NAVIGATION */
@media (max-width: 820px) {
    .hamburger-menu {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 60px;
        right: 0;
        background: rgba(10,10,10,0.95);
        width: 220px;
        padding: 20px 10px;
        border-left: 1px solid rgba(0,255,0,0.15);
        border-bottom: 1px solid rgba(0,255,0,0.15);
        flex-direction: column;
        gap: 14px;
        display: none;
    }

    #menu-toggle:checked ~ .nav-links {
        display: flex;
    }

    .logo-image img {
        width: 180px;
        height: 36px;
    }
}

/* =======================================================
   FOOTER (unified global footer)
======================================================= */

footer {
    margin-top: 60px;
    padding: 25px 0;
    text-align: center;
    color: #aaa;
    border-top: 1px solid rgba(0,255,0,0.15);
    background: rgba(15,15,15,0.65);
    box-shadow: 0 -4px 18px rgba(0,255,100,0.08);
}

footer a {
    color: #00ff88;
    text-decoration: none;
}

footer a:hover {
    text-shadow: 0 0 12px rgba(0,255,100,0.45);
}

/* =======================================================
   GALLERY PAGE
======================================================= */

.gallery-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

.gallery-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #00ff88;
    text-shadow: 0 0 16px #00ff88;
    letter-spacing: 0.5px;
    text-align: center;
}

/* =======================================================
   IMAGE GRID
======================================================= */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 22px;
}

/* =======================================================
   IMAGE CARD
======================================================= */

.gallery-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(0,255,120,0.18);
    padding: 10px;
    border-radius: 14px;
    transition: 0.25s ease;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0,255,100,0.12);
    backdrop-filter: blur(6px);
}

.gallery-item:hover {
    border-color: #00ff88;
    transform: scale(1.04);
    box-shadow: 0 0 26px rgba(0,255,120,0.32);
}

.gallery-item img {
    width: 100%;
    border-radius: 10px;
    display: block;
    box-shadow: 0 0 20px rgba(0,255,120,0.22);
}

/* =======================================================
   MODAL ZOOM
======================================================= */

#zoomModal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(4px);
}

#zoomModal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 16px;
    border: 2px solid #00ff88;
    box-shadow: 0 0 40px rgba(0,255,120,0.45);
}
