/* Reset and Base Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}


/* Hero Section */
#hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    
    background-image: url('img/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(70%);
}

#hero_content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
}

#hero_content h2 {
    margin-top: 1rem;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-style: italic;
    color: white;
}

#hero_content a {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    text-decoration: none;
    border: 2px solid orange;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: background 0.3s ease, color 0.3s ease;
}

#hero_content a:hover {
    background: orange;
    color: #fff;
}

/* Header Section */
#header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
}

#navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    height: 70px;
}

#navbar h1 {
    color: orange;
    font-size: 1.8rem;
    text-shadow: 2px 2px 2px #000;
    font-family: cursive;
}

#navbar ul {
    display: flex;
    gap: 15px;
    list-style: none;
}

#navbar ul li {
    list-style: none;
}

#navbar ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

#navbar ul li a:hover {
    color: orange;
}
/* Responsive Menu */
#menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

#nav-links {
    display: flex;
}
/* Logo Styling */
#logo img {
    height: 50px; 
    width: auto;  
    display: block;
}

#logo {
    text-decoration: none;
    margin-right: 20px; 
}


/* Menu Section */
#menu {
    padding: 50px 20px;
    background: #f9f9f9;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.menu_row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.menu_col {
    flex: 1 1 calc(33.333% - 20px);
    background: #fff;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.menu_col h2 {
    background-color: orange;
    color: #fff;
    padding: 10px;
    font-size: 1.5rem;
    border-radius: 5px;
    margin-bottom: 15px;
}

.menu_col:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.menu_col img {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 15px;
    border-radius: 8px;
    object-fit: cover;
}
/* Chef Section */
#chef {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

#chef .section-title {
    margin-bottom: 30px;
    font-size: 2rem;
    color: #333;
}

.chef-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.chef-image img {
    width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.chef-info {
    max-width: 500px;
    text-align: left;
}

.chef-info h2 {
    font-size: 1.8rem;
    color: orange;
    margin-bottom: 10px;
}

.chef-info p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

.chef-socials {
    margin-top: 20px;
    list-style: none;
    display: flex;
    gap: 10px;
}

.chef-socials li a {
    font-size: 1.5rem;
    color: #555;
    transition: color 0.3s ease;
}

.chef-socials li a:hover {
    color: orange;
}
/* About Section */
#about {
    padding: 25px 0 25px 0;
    text-align: center;
}

#about_row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.about_col {
    flex: 1;
}

.about_img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    margin: auto;
}

.about_img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: fill;
}
.about_col h1{
    text-align: justify;
    font-weight: bold;
}
.about_col p{
    text-align: justify;
    font-weight: bold;
}




/* Contact Section */
#contact {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
}

#contact .section-title {
    margin-bottom: 30px;
    font-size: 2rem;
    color: #333;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.contact-info {
    max-width: 400px;
    text-align: left;
}

.contact-info h2 {
    font-size: 1.8rem;
    color: orange;
    margin-bottom: 10px;
}

.contact-info p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info ul li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #555;
}

.contact-info ul li i {
    margin-right: 10px;
    color: orange;
}

.contact-form {
    max-width: 400px;
    width: 100%;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form button {
    padding: 10px;
    background-color: orange;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: darkorange;
}


/* Footer */
#footer {
    text-align: center;
    padding: 20px;
    background: #333;
    color: #fff;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    #hero_content h1 {
        font-size: 2.5rem;
    }

    .menu_col {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    #navbar ul {
        flex-direction: column;
        gap: 10px;
    }

    .menu_col {
        flex: 1 1 100%;
    }
}
@media (max-width: 768px) {
    #menu-toggle {
        display: block;
    }

    #nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 0;
        background-color: rgba(0, 0, 0, 0.9);
        width: 100%;
        text-align: center;
    }

    #nav-links.show {
        display: flex;
    }

    #nav-links li {
        margin: 10px 0;
    }
}