/* Global */
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    color: #1a1a1a;
    background: #f5f5f7;
    line-height: 1.6;
}

/* Hero Section */
.hero {
    padding: 140px 20px;
    text-align: center;
    background: linear-gradient(180deg, #000 0%, #1c1c1e 100%);
    color: #fff;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: -2px;
    margin: 0;
}

.subtitle {
    margin-top: 20px;
    font-size: 1.4rem;
    opacity: 0.75;
}

/* Sections */
.section {
    padding: 80px 30px;
    max-width: 1000px;
    margin: auto;
}

.section h2 {
    font-size: 2.4rem;
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: -1px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    background: #d1d1d6;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 45px rgba(0,0,0,0.2);
}

/* Glass Panel Style */
.glass {
    background: rgba(255,255,255,0.45);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 20px;
    background: #000;
    color: #fff;
    font-size: 0.9rem;
}
/* Popup Overlay */
.popup-window {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 999999; /* EXTREME PRIORITY */
}

.popup-window.show {
    opacity: 1;
    pointer-events: auto;
}

/* Popup Inner Box */
.popup-inner {
    position: relative;
    background: #ffffff20;
    backdrop-filter: blur(25px);
    padding: 20px;
    border-radius: 20px;
    max-width: 90vw;
    max-height: 90vh;
    animation: popScale 0.25s ease;
}

@keyframes popScale {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.popup-inner img {
    max-width: 85vw;
    max-height: 85vh;
    border-radius: 12px;
}

/* Close Button (X) */
.popup-close {
    position: absolute;
    top: -12px;
    right: -12px;
    background: white;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    text-align: center;
    font-size: 26px;
    line-height: 36px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    font-weight: bold;
}
.two-column-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.two-column-images img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.two-column-images img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 45px rgba(0,0,0,0.18);
}

/* Responsive collapse to 1 column on small screens */
@media (max-width: 700px) {
    .two-column-images {
        grid-template-columns: 1fr;
    }
}
.video-wrapper {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

video {
    width: 100%;
    max-width: 800px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    overflow: hidden;
}

.audio-wrapper {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

audio {
    width: 100%;
    max-width: 400px;
    filter: drop-shadow(0 6px 20px rgba(0,0,0,0.15));
    border-radius: 12px;
}
.home-button {
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 999999; /* stronger than hero */

    padding: 10px 20px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    color: #fff;

    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-button:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}
