* {
    margin: 0;
    padding: 0;
    font-family: Helvetica;
}

body {
    background-image: url('images/bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    image-rendering: auto;

}
.container {
            width: 90%;
            margin: 0 auto;
        }
        @media (min-width: 768px) {
            .container {
                width: 750px;
            }
        }
        @media (min-width: 992px) {
            .container {
                width: 970px;
            }
        }
        @media (min-width: 1200px) {
            .container {
                width: 1170px;
            }
        }
.menu h1 {
    font-size: 90px; 
    color: white;
    padding: 10px;
}

.menu {
    display: flex;
    flex-direction: column;
}

.head {
    letter-spacing: 10px;
    text-align: center;
    margin-top: -50px;
    padding: 20px;
    padding-top: 100px;
}

.head h1 {
    text-align: center;
    text-shadow: 5px 3px black;
    color: white;
}

.mframe {
    display: flex;
    justify-content: center;
    color: white;
}

.eframe, .ncframe, .dcframe {
    background-color: rgba(0,0,0,.6);
    margin: 0 20px;
    padding: 20px;
    border: 3px solid #b99377;
    border-radius: 5px;
    width: 30%;
}

.eframehead, .ncframehead, .dcframehead {
    background-color: #b99377;
    color: black;
    padding: 10px;
    margin-bottom: 10px;
    text-align: center;
}

.eframe table, .ncframe table, .dcframe table {
    width: 100%;
    border-collapse: collapse;
    background-color: rgba(0, 0, 0, 0.6); /* Black background with 60% opacity */
    color: white; /* White text color for readability */
    border-radius: 5px;
    overflow: hidden;
}

.eframe th, .ncframe th, .dcframe th, .eframe td, .ncframe td, .dcframe td {
    padding: 10px;
    text-align: left;
}

.eframe tr:nth-child(even), .ncframe tr:nth-child(even), .dcframe tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.1); /* White background with 10% opacity for even rows */
}

.description {
    font-size: 15px;	
    color: #ccc; /* Lighter color for descriptions */
    margin-top: 5px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000; /* Ensure the navbar is above other content */
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #333;
    padding: 10px;
}

.navbar a {
    color: white;
    text-decoration: none;
    padding: 14px 20px;
    display: inline-block;
}

.navbar strong a:hover, .navbar a:hover {
    background-color: #ddd;
    color: black;
}

.navbar .dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.menu-item {
    position: relative;
    min-height: 60px; /* Set a minimum height to prevent layout shifts */
    padding: 10px 0;
}

.menu-image {
    width: 70px; /* Adjust the size as needed */
    height: 70px;
    margin-right: 10px;
    vertical-align: middle;
    border-radius: 5px;
    transition: opacity 0.3s ease-in-out; /* Smooth transition for visibility */
}

.hidden {
    opacity: 0; /* Hide the image by changing opacity */
    visibility: hidden;
    position: absolute;
}


/* Cart! */ 
.cart-modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
    padding-top: 60px;
}
.cart-modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
    max-width: 50%;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.cart-modal-content button {
    background-color: #b99377;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    border-radius: 4px;
    cursor: pointer;
}
.cart-modal-content button:hover {
    background-color: #633f2b;
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.cart-item img {
    width: 90px;
    height: 90px;
    margin-right: 20px;
}

.cart-item span {
    width: 100px;
    text-align: right;
}

.quantity-controls {
    display: flex;
    align-items: center;
}

.quantity-controls button {
    background-color: #b99377;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    border-radius: 4px;
    cursor: pointer;
}

.quantity-controls span {
    margin: 0 10px;
}

.cart-item div {
    flex: 1;
    text-align: left; /* Align text to the left */
}

.cart-item .quantity-controls {
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-controls button {
    background-color: #b99377;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}

.quantity-controls span {
    margin: 0 10px;
}
.cart-total {
    display: flex;
    justify-content: flex-end;
    padding: 10px 0;
    border-top: 1px solid #ddd;
    margin-top: 10px;
    font-size: 18px;
}

/* Size Quantity Modal */
.size-quantity-modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

.size-quantity-modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
    max-width: 400px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.size-quantity-modal-content button {
    background-color: #b99377;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    border-radius: 4px;
    cursor: pointer;
}
.size-quantity-modal-content button.selected {
    background-color: #633f2b;
    color: white;
}
.size-quantity-modal-content button:hover {
    background-color: #633f2b;
}

/* Quantity Modal Container */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Modal Content Box */
.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
    max-width: 400px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}



/* Quantity Modal Content */
.quantity-modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quantity-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
}

.quantity-controls button {
    background-color: #b99377;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    border-radius: 4px;
    cursor: pointer;
}

.quantity-controls span {
    margin: 0 10px;
    font-size: 18px;
}

.quantity-modal-content button {
    background-color: #b99377;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin-top: 10px;
    border-radius: 4px;
    cursor: pointer;
}

.quantity-modal-content button:hover {
    background-color: #633f2b;
}



/* Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
/* Styles for checkout modal */
.modal {
    display: none; /* Hide checkout modal by default */
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 8px;
    position: relative;
}

.modal-content h2 {
    text-align: center;
}

.modal-content form {
    display: flex;
    flex-direction: column;
}

.modal-content label {
    margin-bottom: 8px;
}

.modal-content input[type="text"] {
    padding: 8px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.modal-content button[type="submit"] {
    padding: 10px;
    margin-top: 10px;
    background-color: #b99377;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.modal-content button[type="submit"]:hover {
    background-color: #633f2b;
}

.modal-content .close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 30px;
    color: #aaa;
    cursor: pointer;
}