
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    text-rendering: optimizeLegibility;
    color: #000000;
}


header {
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../assets/images/head/head.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-position: center;
}

#logo {
    width: 250px;
    display: flex;
    align-items: center;
}

#logo img {
    width: 100px;
}

#logo h4 {
    display: inline-block;
    color: white;
}

.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
}

nav {
    width: 100%;
    height: 80px;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 1.25em;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

nav ul li {
    margin: 0 20px;
    transition: translate 0.2s ease-in-out;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

nav li:hover,
nav li:active {
    transform: translateY(-3px);
}

nav li:hover a,
nav li:active a {
    color: rgb(191, 187, 187);
}

#quote {
    text-align: center;
    padding: 40px;
    width: 550px;
    height: 200px;
    color: rgb(255, 255, 255);
    font-weight: 600;
    transform: translate(20%, 120%);
}

#quote h1 {
    font-size: 3.5em;
    margin-bottom: 30px;
}

#quote a {
    text-decoration: none;
    color: white;
    padding: 10px 20px;
    font-size: 1.5em;
    border-radius: 25px;
    transition: all 0.3s ease-in-out;
    margin: 0 10px;
}

#me {
    background-color: rgb(69, 67, 67);
    border: 2px solid rgb(69, 67, 67);
}

#odr {
    border: 2px solid white;
}

#quote a:hover {
    background-color: rgb(149, 142, 142);
    color: black;
    transform: translateY(-3px);
    border: none;
}

#menu {
    width: 100%;
    min-height: 100vh;
    padding: 80px 20px;
    text-align: center;
    background: #f5f5f5;
}

#menu h1 {
    font-size: 3em;
    margin-bottom: 40px;
    color: #333;
}

.menu-box {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
    justify-items: center;
}

.menu-item {
    background: white;
    border-radius: 15px;
    width: 300px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2em;
    font-weight: bold;
}

.menu-item h3 {
    font-size: 1.5em;
    color: #333;
    margin: 15px 0 10px;
    padding: 0 20px;
}

.menu-item p {
    color: #666;
    line-height: 1.6;
    margin: 0 20px 15px;
    flex-grow: 1;
}

.menu-item h4 {
    font-size: 1.5em;
    color: #ff6b35;
    margin: 10px 20px;
    font-weight: bold;
}

.btn {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 25px;
    margin: 15px 20px 20px;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

#order {
    width: 100%;
    min-height: 100vh;
    padding: 80px 20px;
    text-align: center;
    background: #fff;
}

#order h1 {
    font-size: 3em;
    margin-bottom: 40px;
    color: #333;
}

#order p {
    max-width: 600px;
    margin: 0 auto 40px;
    color: #666;
    line-height: 1.6;
}

form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

form label {
    font-size: 1.1em;
    color: #555;
}

form input,
form select,
form textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    color: #333;
}

form input:focus,
form select:focus,
form textarea:focus {
    border-color: #ff6b35;
    outline: none;
}

form button {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 25px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

form button:hover {
    background: linear-gradient(45deg, #f7931e, #ff6b35);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

#about {
    width: 100%;
    min-height: 100vh;
    padding: 80px 20px;
    text-align: center;
    background: #f5f5f5;
}

#about h1 {
    font-size: 3em;
    margin-bottom: 40px;
    color: #333;
}

#about p {
    max-width: 800px;
    margin: 0 auto 40px;
    color: #666;
    line-height: 1.6;
    font-size: 1.2em;
}

.font-icon {
    font-size: 5rem;
    color: #ff6b35;
    margin-bottom: 15px;
}

.about-box {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 20px;
    justify-items: center;
}

.about-item {
    background: white;
    border-radius: 15px;
    width: 250px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    padding: 20px;
}

.about-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.about-item h3 {
    font-size: 1.5em;
    color: #333;
    margin: 15px 0 10px;
}

.about-item p {
    color: #666;
    line-height: 1.6;
    margin: 0 10px 15px;
}

#contact {
    width: 100%;
    min-height: 100vh;
    padding: 80px 20px;
    text-align: center;
    background: #fff;
}

#contact h1 {
    font-size: 3em;
    margin-bottom: 40px;
    color: #333;
}

#contact p {
    max-width: 600px;
    margin: 0 auto 40px;
    color: #666;
    line-height: 1.6;
}

.contact-info {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 20px;
    justify-items: center;
}   

.contact-item {
    background: white;
    border-radius: 15px;
    width: 250px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    padding: 20px;
}   

.contact-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}   

.contact-item h3 {
    font-size: 1.5em;
    color: #333;
    margin: 15px 0 10px;
}   

.contact-item p {
    color: #666;
    line-height: 1.6;
    margin: 0 10px 15px;
}

footer {
    width: 100%;
    background: #333;
    color: white;
    padding: 40px 20px;
    text-align: center;
}   

footer p {
    margin: 10px 0;
    font-size: 1em;
}

footer a {
    color: #ff6b35;
    text-decoration: none;
    font-size: 1.5em;
}

footer a:hover {
    color: #f7931e;
}


@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 20px;
    }

    #quote {
        width: 90%;
        transform: translate(10%, 120%);
    }

    .menu-box {
        grid-template-columns: 1fr;
    }

    .about-box {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }
}


/* For smaller screens */
@media screen and (max-width: 768px) {
    nav ul {
        position: absolute;
        right: 0;
        top: 80px;
        background-color: rgba(0, 0, 0, 0.9);
        width: 200px;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 20px;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }

    nav ul.show {
        transform: translateX(0);
    }

    .burger {
        display: flex;
    }
}



@media (max-width: 480px) {
    #logo img {
        width: 80px;
    }

    #logo h4 {
        font-size: 0.8em;
    }

    nav ul li {
        margin: 0 10px;
    }

    #quote h1 {
        font-size: 2.5em;
    }

    #quote a {
        font-size: 1.2em;
        padding: 8px 16px;
    }

    .menu-item h3,
    .menu-item h4 {
        font-size: 1.2em;
    }

    form button {
        font-size: 1em;
        padding: 10px;
    }
}

@media (max-width: 360px) {
    #logo img {
        width: 80px;
    }

    #logo h4 {
        font-size: 0.8em;
    }

    nav {
        font-size: 1em;
    }

    #quote {
        width: 100%;
        transform: translate(0, 120%);
        padding: 20px;
    }

    #quote h1 {
        font-size: 2em;
    }

    .menu-item {
        width: 100%;
    }

    .about-item,
    .contact-item {
        width: 100%;
    }
}

.burger.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}   

.burger.toggle .line2 {
    opacity: 0;
}

.burger.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

