*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: "Lato" ,sans-serif;
    padding-top: 5rem;
    background-color: #292677;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ===== navbar ===== */
.navbar {
    background-color: #292677;
    color: white;
    padding: 15px 6%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar .logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.navbar .nav-items {
    list-style: none;
    display: flex;
    gap: 25px;
}

.navbar .nav-items a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.navbar .nav-items a:hover {
    color: #0847c0;
}

.navbar .nav-items a.active {
    color: #0847c0;
    border-bottom: 2px solid #0847c0;
    padding-bottom: 2px;
}

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("images/background.jpg");
    background-size: cover;
    background-position: center;
    color: white;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}
.hero-img{
    width: 100%;
    height: 100%;
    position: center;
}
.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.hero-content .btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #0847c0;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.hero-content .btn:hover {
    background-color: #06358e;
}

/* ===== Menu Section ===== */
.menu {
    padding: 60px 6%;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: white;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.menu-item {
    background-color: #1e1b62;
    color: white;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.menu-item img {
    width: 100%;
    height: 200px;
    border-radius: 5px;
    margin-bottom: 15px;
    object-fit: cover;
}

.menu-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #0847c0;
}

.menu-item p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.menu-item .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0847c0;
}

/* ===== Gallery Section ===== */
.gallery {
    padding: 60px 6%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

/* ===== Reservation Section ===== */
.reserve {
    padding: 60px 6%;
}

.reservation-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #1e1b62;
    padding: 30px;
    border-radius: 8px;
}

.reservation-form label {
    display: block;
    margin: 15px 0 5px;
    color: white;
}

.reservation-form input,
.reservation-form select {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    margin-bottom: 10px;
}

.reservation-form button {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #0847c0;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.4s ease;
}

.reservation-form button:hover {
    background-color: #06358e;
}

/* ===== Contact Section ===== */
.contact {
    padding: 60px 6%;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #1e1b62;
    padding: 30px;
    border-radius: 8px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: white;
}

.contact-info p {
    margin: 10px 0;
}

.contact-info a {
    color: #0847c0;
    text-decoration: none;
}

.contact-form label {
    display: block;
    margin: 15px 0 5px;
    color: white;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    margin-bottom: 10px;
}

.contact-form button {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #0847c0;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background-color: #06358e;
}

/* ===== Footer ===== */
.footer {
    background: #100a62;
    color: white;
    margin-top: 50px;
    padding-top: 40px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    padding: 20px 40px;
}

.footer-box h3 {
    margin-bottom: 15px;
    color:  #f5f9fd;
}

.footer-box ul {
    list-style: none;
}

.footer-box ul li {
    margin-bottom: 8px;
}

.footer-box a {
    color: white;
    text-decoration: none;
}

.footer-box a:hover {
    color:  #0c234e;
}

.footer-bottom {
    text-align: center;
    padding: 15px;
    background:  #1e1b62;
    margin-top: 20px;
    font-size: 14px;
}
