* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

/* Header */
.header {
    background: #353535;
    color: #fff;
    padding: 10px 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.header .logo img {
    max-width: 100px;
}

.navbar ul {
    list-style: none;
    float: right;
}

.navbar ul li {
    display: inline-block;
    margin-right: 20px;
}

.navbar ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.navbar ul li a:hover {
    color: #f4b41a;
}
/* Hero Section Styles */
.hero-section {
    text-align: center;
    padding: 50px 0;
    background-color: white;
}

.hero-section .food-image {
    width: 300px;
    border-radius: 10px;
}

.hero-section h1 {
    margin: 20px 0;
    font-size: 2.5rem;
}

.hero-section p {
    font-size: 1.2rem;
    color: #666;
}

/* Restaurant Description Section */
.restaurant-description {
    background-color: #fafafa;
    padding: 40px 0;
}

.restaurant-description h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.restaurant-description p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

/* Restaurant Details Section */
.restaurant-details {
    background-color: white;
    padding: 40px 0;
    text-align: center;
}

.restaurant-details h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.restaurant-details p {
    font-size: 1rem;
    color: #555;
}

.menu-buttons .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-right: 10px;
}

.menu-buttons .btn:hover {
    background-color: #555;
}

/* Icons Section */
.icons-section {
    background-color: #f4f4f4;
    padding: 40px 0;
}

.icons-list {
    display: flex;
    justify-content: space-between;
    list-style-type: none;
    padding: 0;
}

.icons-list li {
    text-align: center;
    width: 22%;
}

.icons-list img {
    width: 50px;
    height: auto;
    margin-bottom: 10px;
}

.icons-list p {
    font-size: 1.1rem;
    color: #333;
}

/* Reservation Form Section */
.reservation-form {
    background-color: #fff;
    padding: 40px 0;
    text-align: center;
}

.reservation-form h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.reservation-form form {
    max-width: 500px;
    margin: 0 auto;
}

.reservation-form label {
    display: block;
    text-align: left;
    margin-bottom: 5px;
    font-weight: bold;
}

.reservation-form input, .reservation-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.reservation-form .btn-submit {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    border-radius: 5px;
}

.reservation-form .btn-submit:hover {
    background-color: #555;
}

/* Footer Styles */
.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}

/* Image Slider Styles */
.image-slider {
    width: 600px; /* Size of the square */
    height: 300px;
    margin: 50px auto; /* Center the square horizontally */
    position: relative;
    overflow: hidden;
    border: 2px solid #333;
    border-radius: 10px;
}

.image-slider img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out; /* Smooth transition for the images */
}

.image-slider img.active {
    opacity: 1;
}
.side-menu {
    position: fixed;
    top: 0;
    right: -35%;
    width: 35%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    transition: right 0.3s ease;
    z-index: 1001;
    padding: 20px;
}

.side-menu ul {
    list-style: none;
    padding: 0;
}

.side-menu ul li {
    margin: 15px 0;
}

.side-menu ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
}

.side-menu.active {
    right: 0;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
}

.overlay.active {
    display: block;
}


.hamburger {
display: none; 
text-align: center;
font-size: 24px;
color: #fff;
margin-top: 10px; 
}

@media (max-width: 768px) {
.hamburger {
    display: block; 
}

.logo {
    text-align: center; 
}
}

.footer p {
    margin: 0;
}
.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 0px;
    margin-bottom: 0px;
}