* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    cursor: crosshair;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    scroll-behavior: smooth;
    opacity: 0.9;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-container {
    min-height: 100vh;
    scroll-behavior: smooth;


}

/* Navbar styles handled by Shared/navbar.css */

/* GALLERY */
.gallery-section {
    padding: 80px 40px;
    text-align: center;
    color: #fff;
}

.gallery-section h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.gallery-section p {
    opacity: 0.85;
    margin-bottom: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.gallery-grid img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 14px;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* FOOTER */
.footer {
    margin-top: auto;
    padding: 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-size: 14px;
}