body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #09090b;
    color: #e4e4e7;
}

html {
    scroll-behavior: smooth;
}

/* HERO */
.hero-bg {
    position: relative;
    background: #09090b;
    overflow: hidden;
}

.hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: url("attachments/DSCF0652 Edit.jpg");
    background-size: cover;
    background-position: center;

    opacity: 0.22;
    filter: grayscale(20%) blur(1px);

    transform: scale(1.05);
}

.hero-bg > * {
    position: relative;
    z-index: 2;
}

.heading-font {
    letter-spacing: -0.04em;
}

/* GALLERY / CONVEYOR */
.conveyor-container {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    padding: 10px 24px 24px;
    scrollbar-width: thin;
    scrollbar-color: #f59e0b #18181b;
}

.conveyor-container:active {
    cursor: grabbing;
}

.conveyor-container::-webkit-scrollbar {
    height: 10px;
}

.conveyor-container::-webkit-scrollbar-track {
    background: #18181b;
    border-radius: 999px;
}

.conveyor-container::-webkit-scrollbar-thumb {
    background: #f59e0b;
    border-radius: 999px;
}

.conveyor-track {
    display: inline-flex;
    gap: 15px;
    min-width: max-content;
}

.conveyor-img {
    height: 220px;
    width: auto;
    flex: 0 0 auto;
    border-radius: 12px;
    scroll-snap-align: start;
    user-select: none;
    -webkit-user-drag: none;
}

.menu-img {
    width: 100%;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-img:hover {
    transform: scale(1.01);
    opacity: 0.95;
}

/* LIGHTBOX */
#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 24px;
}

#lightbox img {
    max-width: 92vw;
    max-height: 90vh;
    border-radius: 12px;
    object-fit: contain;
    box-shadow: 0 20px 80px rgba(0,0,0,0.7);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 46px;
    line-height: 1;
    color: white;
    cursor: pointer;
    z-index: 10000;
}

.close-btn:hover {
    color: #f59e0b;
}

@media (max-width: 768px) {
    .conveyor-img {
        height: 170px;
    }

    #lightbox {
        padding: 12px;
    }

    .close-btn {
        top: 14px;
        right: 18px;
    }
}
