/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    overflow-x: hidden;
}

/* Header Styles */
header {
    width: 100%;
    padding: 6px 2px;
    background-color: #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.text-container {
    margin-left: 10px;
}

.company-name, .white-text {
    color: white;
}

.logo img {
    width: 90px;
    height: auto;
}

/* Navigation Menu */
nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

nav ul li {
    margin: 5px 10px;
}

nav ul li a {
    padding: 5px 10px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
}

nav ul li a:hover {
    background-color: lightgrey;
    color: #000;
}

.phone-number, .fax-number {
    color: #fff;
    font-weight: 500;
    text-align: center;
}

/* Slideshow Container */
.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
    height: 80vh;
    border-top: 5px solid #ccc;
}

.mySlides {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mySlides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Navigation Buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    background: rgba(0, 0, 0, 0.5);
    transition: 0.6s ease;
    user-select: none;
    z-index: 1000;
}

.prev {
    left: 0;
    border-radius: 0 3px 3px 0;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Footer */
footer {
    background-color: #000;
    color: #fff;
    padding: 20px;
    text-align: center;
    position: relative;
}

/* Popup Styling */
#ageVerificationPopup {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

#ageVerificationPopup .popup-content {
    background-color: #75F94D;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
}

#ageVerificationPopup h2 {
    margin-bottom: 20px;
}

#ageVerificationPopup button {
    margin: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

#underageMessage {
    color: white;
    background-color: red;
    padding: 20px;
    border-radius: 5px;
    display: none;
    text-align: center;
    position: fixed;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1100;
}
/* Desktop */
@media only screen and (min-width: 769px) {
    .slide-overlay {
        position: absolute; /* overlay on top of image */
        top: 10%;
        left: 50%;
        transform: translateX(-50%);
        color: white;
        text-align: center;
        width: 90%;
        text-shadow: 2px 2px 6px black;
    }

    .card-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 10px;
        margin-top: 20px;
    }

    .card-container .card {
        background: rgba(0,0,0,0.5);
        color: #fff;
        padding: 8px;
        border-radius: 6px;
        text-align: center;
    }
}
/* Mobile-specific Styles */
@media only screen and (max-width: 768px) {
    /* Header Layout */
    header {
        flex-direction: column;
        align-items: center;
        padding: 10px 5px;
    }

    .logo {
        justify-content: center;
    }

    /* Hide the navigation bar by default on mobile */
    nav ul {
        display: none;
        flex-direction: column;
        align-items: center;
        margin-top: 10px;
    }

    nav ul li {
        margin-bottom: 10px;
    }

    /* Toggle Menu Button */
    .menu-toggle {
        display: block;
        background-color: #222;
        color: white;
        padding: 10px;
        font-size: 18px;
        cursor: pointer;
        border: none;
    }
.slideshow-container {
    position: relative;
    width: 100%;
    height: auto; /* allow height to adjust */
}

.mySlides {
    position: relative; /* not absolute */
    display: none;      /* controlled by JS */
    width: 100%;
}

.mySlides img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.slide-overlay {
    position: relative;
    width: 90%;
    margin: 10px auto;
    color: white;
    text-align: center;
    text-shadow: 2px 2px 6px black;
}

.sticky-header {
    position: sticky;
    top: 0;
    background: rgba(0,0,0,0.6);
    padding: 10px 0;
    font-size: 18px;
    z-index: 10;
    border-radius: 6px 6px 0 0;
}

.card-container-scroll {
    max-height: 55vh; /* height for scrollable cards */
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 5px;
}

.card-container-scroll .card {
    background: rgba(0,0,0,0.5);
    color: #fff;
    padding: 8px;
    border-radius: 6px;
    font-size: 14px;
    text-align: center;
}

.price-note {
    margin-top: 10px;
    font-size: 14px;
    font-weight: bold;
}

    /* Footer */
    footer {
        position: static;
        margin-top: 2px;
    }

    /* Phone & Fax Numbers */
    .phone-number, .fax-number {
        margin-top: 10px;
        text-align: center;
    }
}

@media only screen and (min-width: 769px) {

    .menu-toggle {
        display: none; /* Hide the toggle button */
    }

    nav ul {
        display: flex; /* Ensure the navigation menu is displayed */
    }
                .modal {
                    display: none;
                    position: fixed;
                    z-index: 1000;
                    left: 0;
                    top: 0;
                    width: 100%;
                    height: 100%;
                    background-color: rgba(0, 0, 0, 0.8);
                    justify-content: center;
                    align-items: center;
                }


.modal-image-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background-color: white;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-image-content img {
    max-width: 100%;
    max-height: 100%;
    border: 5px solid black;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: red;
}


}