body {
    font-family: Arial, sans-serif;
    margin:00;
    padding: 0;
    box-sizing: border-box;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
}

header .logo img {
    width: 50px;
}

header nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

header nav ul li {
    display: inline;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

#hero {
    background-image: url('images/sunset-beach.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

#hero .cta-button {
    background-color: #ff6347;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    cursor: pointer;
    margin-top: 20px;
    border-radius: 5px;
}

#hero .cta-button:hover {
    background-color: #e5533d;
}

#featured-dish {
    text-align: center;
    padding: 50px 20px;
}

#featured-dish img {
    width: 300px;
    border-radius: 10px;
}

#about-us {
    background-color: #f4f4f4;
    padding: 50px 20px;
    text-align: center;
}

#gallery {
    padding: 50px 20px;
    text-align: center;
}

.gallery-slider {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
}

.gallery-slider img {
    width: 100%;
    display: none;
}

.gallery-slider .active {
    display: block;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

#contact {
    padding: 50px 20px;
    text-align: center;
}

.contact-info, .contact-form {
    margin-bottom: 20px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
}

.contact-form form input, .contact-form form textarea, .contact-form form button {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form form button {
    background-color: #ff6347;
    color: #fff;
    border: none;
    cursor: pointer;
}

.contact-form form button:hover {
    background-color: #e5533d;
}

#back-to-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #ff6347;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
}

#back-to-top:hover {
    background-color: #e5533d;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

footer .social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

footer .social-icons img {
    width: 30px;
}
