body {
    position: relative;
    width: 100%;
    background-color: rgb(0, 0, 0);
    font-family: sans-serif;
    color: rgb(191, 191, 191);
}

a {
    text-decoration: none; /* Removes the underline */
    color: #dd4458;        /* Sets the default link color (matching your header pink) */
    transition: color 0.2s ease; /* Makes the color change smooth instead of an instant snap */
    padding: 4px;
}

a:hover {
    color: #ffffff;        /* Changes the color to white on hover */
    text-decoration: none; /* Ensures the underline stays gone on hover */
}

.container {
    margin-left: 30px;
    margin-right: 20px;
}

.gray {
    color: rgb(191, 191, 191);
}

#logo {
    width: 200px;
    height: auto;
}

.logo_wrap {
    position: absolute;
    top: 20px;
    left: 5%;
    z-index: 13;
    pointer-events: auto; /* Restores click/tap states on the logo asset */
}

.menu_holder {
    position: absolute;
    right: 20px;
    padding-top: 40px;
    padding-right: 30px;
    z-index: 13;
    pointer-events: auto; /* Restores text-link interactivity */
}

.header {
    color: rgba(221, 68, 88);
    font-size: 18pt;
    margin-bottom: 10px;
}

.menu_top {
    position: absolute; /* Pulls it out of page flow so the carousel slides behind it */
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100px;
    z-index: 12;        /* Forces it to hover higher than the carousel and arrows */
    pointer-events: none; /* Allows slider touch interactions to pass through blank spaces */
}

.menu_top_2 {
    position: relative; /* Pulls it out of page flow so the carousel slides behind it */
    width: 100%;
    min-height: 100px;
    z-index: 12;        /* Forces it to hover higher than the carousel and arrows */
    pointer-events: none; /* Allows slider touch interactions to pass through blank spaces */
}

.subheader {
    color: rgba(221, 68, 88);
    font-size: 12pt;
    margin-top: 20px;
    margin-bottom: 5px;
}

.space {
    padding: 24px;
}

/* LIGHTBOX IMAGE STRIP RULES */
.lightbox {
    display: flex;
    width: 100%;
    height: 100px; /* Force container height */
    box-sizing: border-box;
    overflow: hidden;
    background-color: #111; /* fallback visibility */
}

.lightbox img {
    height: 100px;
    flex: 1;
    min-width: 0;
    object-fit: cover;
    border: 1px solid #000; /* Subtle spacer between pictures */
}

p.gray {
    margin-bottom: 15px;
    line-height: 1.5;
}


/* ==========================================================================
   ADDED: NATIVE CSS CAROUSEL RULES (This fixes the layout issue)
   ========================================================================== */

.carousel-container {
    position: relative;
    width: 100%;
    height: 70vh; /* Limits the carousel to 70% of the screen height */
    overflow: hidden;
    background: #000;
}

/* Flexbox forces the images to stay in a single row side-by-side */
.carousel {
    display: flex;
    width: 100%;
    height: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory; /* Makes images snap perfectly into focus */
    scrollbar-width: none;         /* Hides native scrollbar on Firefox */
}

/* Hides scrollbars on Chrome, Safari, and Opera */
.carousel::-webkit-scrollbar {
    display: none;
}

/* Forces each image to scale uniformly without stretching or overflowing */
.carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;        /* Fills the container box smoothly like a background banner */
    flex-shrink: 0;           /* Prevents the browser from squeezing the image widths */
    scroll-snap-align: start; /* Alignment anchor for mobile touch snapping */
}

/* ARROW BUTTON DESIGN */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border: none;
    cursor: pointer;
    z-index: 11;
    font-size: 24px;
    padding: 16px 20px;
    transition: background 0.2s ease, color 0.2s ease;
}

.arrow:hover {
    background: rgba(221, 68, 88, 0.8); /* Highlights pink on hover to match layout */
}

.prev { left: 0; }
.next { right: 0; }