* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
    background: #fff;
    line-height: 1.6;
}

/* NAVBAR */
img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

header {
    background: #111;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .menu-icon {
    color: white;
    font-size: 20px;
    display: none;
}

#menu-toggle {
    display: none;
}

.navbar {
    max-width: 1200px;
    margin: auto;
    padding: 18px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #f4a261;
    font-size: 28px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: white;
    font-size: 16px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #f4a261;
}

/* HERO/BANNER */
.hero {
    height: 90vh;
    background:
        linear-gradient(rgba(0, 0, 0, 0.65),
            rgba(0, 0, 0, 0.65)),
        url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 700px;
    padding: 20px;
}

.small-title,
.section-title {
    color: #f4a261;
    font-weight: bold;
    letter-spacing: 3px;
}

.hero h2 {
    font-size: 70px;
    margin: 10px 0;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background: #f4a261;
    color: #111;
    padding: 13px 28px;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background: #e76f51;
    color: white;
}

/* ABOUT */
.about {
    max-width: 1100px;
    margin: auto;
    padding: 100px 30px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-image,
.about-text {
    width: 50%;
}

.about-image img {
    height: 450px;
    object-fit: cover;
    border-radius: 10px;
}

.about-text h2 {
    font-size: 42px;
    margin: 10px 0 20px;
    color: #222;
}

.about-text p {
    margin-bottom: 20px;
}

/* MENU */
.menu {
    background: #f7f3ef;
    padding: 100px 30px;
    text-align: center;
}

.menu h2 {
    font-size: 42px;
    margin-bottom: 50px;
}

.menu-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.menu-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.menu-card:hover {
    transform: translateY(-15px);
}

.menu-card img {
    height: 220px;
    object-fit: cover;
}

.menu-info {
    padding: 25px;
}

.menu-info h3 {
    font-size: 23px;
    margin-bottom: 10px;
}

.menu-info p {
    color: #666;
    margin-bottom: 15px;
}

.menu-info span {
    color: #e76f51;
    font-size: 20px;
    font-weight: bold;
}

/* OFFER */
.offer {
    padding: 100px 30px;
    background:
        linear-gradient(rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.7)),
        url("https://images.unsplash.com/photo-1515003197210-e0cd71810b5f");
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.offer div {
    max-width: 700px;
    margin: auto;
}

.offer h2 {
    font-size: 42px;
    margin: 15px 0;
}

.offer p {
    margin-bottom: 25px;
}

/* CONTACT */
.contact {
    padding: 100px 30px;
    text-align: center;
}

.contact h2 {
    font-size: 42px;
    margin: 10px 0 50px;
}

.contact-container {
    max-width: 1000px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.contact-box {
    flex: 1;
    padding: 30px;
    background: #f7f3ef;
    border-radius: 8px;
}

.contact-box h3 {
    margin-bottom: 10px;
    color: #e76f51;
}

/* FOOTER-PART */
footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 50px 20px;
}

footer h2 {
    color: #f4a261;
    margin-bottom: 10px;
}

.copyright {
    margin-top: 25px;
    color: #aaa;
    font-size: 14px;
}

/* RESERVATION-FORM */
.reservation {
    background: #f7f3ef;
    padding: 100px 30px;
}

.form-container {
    max-width: 800px;
    margin: auto;
    /* background: white; */
    background-color: #111;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-heading {
    text-align: center;
    margin-bottom: 40px;
}

.form-heading h2 {
    font-size: 40px;
    margin: 10px 0;
    color: #fff;
}

.form-heading p:last-child {
    color: #fff;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #fff;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: Arial, sans-serif;
    font-size: 15px;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #f4a261;
    box-shadow: 0 0 5px rgba(244, 162, 97, 0.3);
}

.form-group textarea {
    resize: vertical;
}

.form-button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 6px;
    background: #f4a261;
    color: #111;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.form-button:hover {
    background: #e76f51;
    color: white;
}

/* RESPONSIVE */
@media (max-width: 600px) {

    .form-container {
        padding: 30px 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-heading h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {

    .navbar {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links li a {
        gap: 15px;
        font-size: 18px;
    }

    .hero h2 {
        font-size: 45px;
    }

    .hero p {
        font-size: 17px;
    }

    .about {
        flex-direction: column;
    }

    .about-image,
    .about-text {
        width: 100%;
    }

    .about-image img {
        height: 350px;
    }

    .menu-container {
        grid-template-columns: 1fr;
    }

    .contact-container {
        flex-direction: column;
    }

    .offer h2,
    .contact h2,
    .menu h2,
    .about-text h2 {
        font-size: 32px;
    }

    .navbar .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
    }

    .navbar .nav-links li a {
        text-align: center;
        display: block;
        text-transform: uppercase;
        background-color: #f4a261;
    }

    .navbar .nav-links li a:hover {
        color: #111;
    }

    .navbar .menu-icon {
        display: block;
        margin-right: 20px;
    }

    #menu-toggle:checked~.menu-icon~.nav-links {
        display: flex;
    }
}