/*CSS*/
/*Fonts*/
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Exo+2:ital,wght@0,100..900;1,100..900&family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=League+Spartan:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}
body {
    background-color: #fff;
    line-height: 1.6;
    color: #241b19;
}

/*Header*/
#header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #f8c65b;
    text-transform: uppercase;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}
#header-img {
    width: 200px;
}
/*Hamburger*/
#menu-toggle {
    display: none;
}
.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.menu-icon .bar {
    width: 25px;
    height: 3px;
    background-color: #241b19;
    margin: 4px 0;
    transition: 0.4s;
}
/*Nav Menu*/
#nav-bar ul {
    list-style-type: none;
    display: flex;
    margin: 0;
    padding: 0;
}
#nav-bar ul li {
    margin-left: 40px;
}
.nav-link a {
    color: #241b19;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
}
.nav-link a:hover {
    color: #f8eacd;
}

/*Hero - Home*/
#home {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 20px;
    background-color: #f8c65b;
    text-transform: uppercase;
    margin-top: 70px;
    margin-bottom: 100px;
}
.intro {
    max-width: 50%;
    padding: 20px;
}
.slogan {
    font-size: 1rem;
    border: 3px dotted #241b19;
    border-radius: 10px;
    padding: 10px;
}
h1, h2 {
    font-family: "League Spartan", sans-serif;
    text-shadow: 2px 5px 2px #f8eacd;
}
h1 {
    font-size: 8em;
}
h2 {
    margin-top: -70px;
    font-size: 5em;
    margin-bottom: 20px;
}
.intro-img img {
    max-width: 100%;
    height: auto;
}

/*Embedded video*/
#video-ad {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    width: 80%;
    margin: 0 auto;
    margin-bottom: 50px;
    border-radius: 10px;
    background-color: #fff;
    text-transform: uppercase;
}
.video-container {
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    height: 400px;
}
#video-ad iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
.image-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.image-caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #241b19;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.side-image {
    width: 50%;
    height: auto;
    border-radius: 8px;
}
.caption {
    font-size: 1.5em;
    color: #f8eacd;
    font-weight: bold;
    margin-right: 10px;
}

/*Menu*/
#menu {
    text-align: center;
    margin: 0 auto;
    max-width: 80%;
    padding: 20px;
    margin-bottom: 100px;
    text-transform: uppercase;
}
#menu .menu-h3 {
    margin-bottom: 30px;
    display: inline-block;
    background-color: #f8c65b;
    padding: 20px;
    border-radius: 10px;
}
#menu h2 {
    margin-top: 10px;
}
.de-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.menu-item {
    width: 30%;
    margin: 20px;
    text-align: center;
}
.menu-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}
.menu-item h3 {
    margin-top: 10px;
}
.menu-item .p-smaller {
    margin-top: 5px;
    font-size: .8rem;
}
#menu button {
    background-color: #D71820;
    color: #f8eacd;
    border: 1px solid #D71820;
    padding: 10px;
    font-size: 1rem;
    margin-top: 10px;
    border-radius: 10px;
    cursor: pointer;
}
#menu button:hover {
    background-color: #f8eacd;
    border: 1px solid #f8eacd;
    color: #D71820;
}

/* Our Story*/
#our-story {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    width: 80%;
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 100px;
    border-radius: 10px;
    text-transform: uppercase;
}
.about-us {
    flex: 1;
    margin-right: 20px;
}
.about-us h3 {
    margin-bottom: 60px;
}
.about-us h2 {
    font-size: 3rem;
}
.image-wrapper {
    flex: 1;
}
.image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/*Contact Us*/
#contact-us {
    text-align: center;
    width: 60%;
    margin: 0 auto;
    padding: 20px;
}
#contact-us h3 {
    margin-bottom: 20px;
}
.form-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    width: 100%;
}
label {
    flex: 1;
    margin-right: 10px;
    
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="submit"],
textarea {
    flex: 2;
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}
input[type="submit"] {
    background-color: #D71820;
    color: #f8eacd;
    cursor: pointer;
    border: 1px solid #D71820;
    padding: 10px;
    transition: background-color 0.3s ease;
    font-size: 1rem;
}
input[type="submit"]:hover {
    background-color: #f8eacd;
    border: 1px solid #f8eacd;
    color: #D71820;
}
textarea {
    resize: vertical;
}

/*Footer*/
.footer {
    background-color: #f8c65b;
    color: #241b19;
    padding: 20px 0;
    text-align: center;
}
.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.footer p, .footer a {
    color: #241b19;
    text-decoration: none;
}
.footer a:hover {
    color: #f8eacd;
}

/* Media screen */
@media screen and (max-width: 1024px) {
    /* Home */
    h1 {
        font-size: 5em;
        margin-bottom: 30px;
    }
    h2 {
        margin-top: -70px;
        font-size: 3em;
    }

}

/* For devices up to 768px (Tablet) */
@media only screen and (max-width: 768px) {
    /*Header*/
    #header {
        padding: 10px;
    }
    #header-img {
        width: 150px;
    }
    .menu-icon {
        display: flex;
        justify-content: center;
    }
    .menu-icon .bar {
        background-color: #241b19;
    }
    #menu-toggle {
        display: none;
    }
    #nav-bar {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #f8c65b;
        z-index: 1000;
    }
    #menu-toggle:checked + .menu-icon ~ #nav-bar {
        display: block;
    }
    #nav-bar ul {
        flex-direction: column;
        align-items: center;
    }
    #nav-bar ul li {
        margin: 10px 0;
    }
    .nav-link a {
        color: #241b19;
        text-decoration: none;
        font-weight: bold;
        cursor: pointer;
    }
    .nav-link a:hover {
        color: #f8eacd;
    }
    .nav-link:not(:last-child) {
        border-bottom: 1px solid #241b19;
    }

    /* Home */
    #home {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 100px 20px;
        margin-top: 60px;
        margin-bottom: 50px;
    }
    .intro {
        max-width: 100%;
        text-align: center;
        order: 1;
    }
    .intro-img {
        order: 2;
    }
    .slogan {
        font-size: .8rem;
    }
    h1 {
        font-size: 5em;
        margin-bottom: 30px;
    }
    h2 {
        margin-top: -70px;
        font-size: 3em;
    }

    /* Video Section */
    #video-ad {
        flex-direction: column;
        align-items: center;
        padding: 20px;
        width: 80%;
        margin: 0 auto;
        margin-bottom: 50px;
        border-radius: 10px;
        background-color: #fff;
        text-transform: uppercase;
    } 
    .video-container {
        margin-bottom: 20px;
        width: 100%;
        height: auto;
    }
    .image-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    /*Menu Section*/
    #menu {
        text-align: center;
        margin: 0 auto;
        max-width: 80%;
        padding: 20px;
        margin-bottom: 100px;
        text-transform: uppercase;
    }
    #menu .menu-h3 {
        margin-bottom: 30px;
        display: inline-block;
        background-color: #f8c65b;
        padding: 20px;
        border-radius: 10px;
    }
    #menu h2 {
        margin-top: 10px;
    }
    .de-menu {
        display: flex;
        flex-direction: column;
        align-items: center; 
    }
    .menu-item {
        width: 100%; 
        margin: 20px 0;
        text-align: center;
    }
    .menu-item img {
        width: 80%; 
        height: auto;
        border-radius: 8px;
    }
    .menu-item h3 {
        margin-top: 10px;
    }
    .menu-item .p-smaller {
        margin-top: 5px;
        font-size: .8rem;
    }
    #menu button {
        margin-top: 10px;
    }

    /*Our Story*/
    #our-story {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        width: 80%;
        margin: 0 auto;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        margin-bottom: 100px;
        border-radius: 10px;
        text-transform: uppercase;
    }
    .about-us {
        margin-right: 0;
        margin-bottom: 20px;
        text-align: center;
    }
    .about-us h3 {
        margin-bottom: 70px;
    }
    .about-us h2 {
        font-size: 2.5rem;
    }
    .image-wrapper {
        width: 100%;
    }
    .image-wrapper img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }
}