@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhai+2:wght@400..800&family=Jersey+15&family=Poppins:wght@700&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&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&family=Varela+Round&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhai+2:wght@400..800&family=Jersey+15&family=Pacifico&family=Poppins:wght@700&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&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&family=Varela+Round&display=swap');
@import url('https://fonts.googleapis.com/css2?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;
}


html {
    scroll-behavior: smooth;
}

body {
    font-family: "Roboto", serif;
    line-height: 1.6;
    background-color: black;
    color: #f7db7c;
    max-width: 100vw;
    
}



nav.transparent-nav {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    /* padding: 15px 0; */
    background: transparent;
    align-items: center;

}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-font {
    font-family: "Pacifico", serif;
    /* color: #f7db7c; */
    font-size: 2.1rem;
    padding-right: 390px;
}

span a {
    list-style-type: none;
    color: #f7db7c;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 130px;
    justify-content: space-around;
    
}

nav ul li a {
    text-decoration: none;
    color: #f7db7c;
    font-size: 1.5rem;
    font-weight: bold;
    transition: color 0.3s;
    font-family: "Jersey 15", serif;


}

nav ul li a:hover {
    color: #f39c12;
}

/* Hero Section */
header.hero {
    height: 100vh;
    background: url('img/1.jpeg') no-repeat center center/cover;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    
}



.hero-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    max-width: 40%;
}



.hero h1 {
    font-size: 3.4em;
    margin-top: 5%;
    color: #f7db7c;
    font-family: "Pacifico", serif;
    font-weight: bold;


}

.fade-in {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.visible {
    opacity: 1;
}

.hero p {
    font-size: 1.7rem;
    margin-bottom: 25px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    color: #f7db7c;
    font-family: "Jersey 15", serif;
}

.search-container {
    display: flex;
    gap: 10px;

}

.search-container input {
    color: #fff;
    background-color: rgb(39, 37, 37);
    padding: 15px;
    font-size: 1.2rem;
    border: none;
    outline: none;
    border-radius: 5px 0 0 5px;
    width: 70%;
}

.search-container button {
    padding: 7px 15px;
    font-size: 1.6rem;
    font-weight: bold;
    background-color: rgb(39, 37, 37);
    color: #f7db7c;
    border: none;
    border-radius: 9px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: "Jersey 15", serif;
}



.search-container button:hover {
    background-color: #fcd75d;
    color: rgb(39, 37, 37);
}

.seperate {
    height: 4px;
    background-color: #fcd75d;
}


.menu-heading {
    font-size: 2.5em;
    list-style: underline;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #f7db7c;
    font-family: "Jersey 15", serif;
    display: flex;
    align-items: center;
    justify-content: center;

}

.menu-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-family: "Jersey 15", serif;
    margin-bottom: 100px;

}

.menu-item {
    background-color: black;
    border: 4px solid #f7db7c;
    border-radius: 10px;
    margin: 10px;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.menu-item:hover {
    transform: scale(1.05);
}

.menu-item img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    width: 100%;
    height: 250px;
}

.menu-item h2 {
    font-size: 1.9em;
    margin: 10px 10px;
    color: #f7db7c;
}

.menu-item p {
    margin: 10px;
    color: #f7db7c;
    font-size: 1.3em;
}

.price {
    font-size: 1.2em;
    color: #f7db7c;
    margin-bottom: 20px;
    font-family: "Roboto", serif;
    font-weight: bold;
}

.add-to-cart {
    background-color: #f7db7c;
    color: rgb(39, 37, 37);
    border: none;
    outline: none;
    padding: 10px 15px;
    font-size: 1.2em;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 20px;
    margin-left: 10px;
    transition: background-color 0.3s ease;
    font-family: "Jersey 15", serif;
    font-weight: bold;

}

.add-to-cart:hover {
    background-color: rgb(39, 37, 37);
    color: #f7db7c;

}


.about-us {
    background-color: black;
    padding: 50px 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 100px;
}

.about-heading {
    font-size: 2.8em;
    color: #f7db7c;
    margin-bottom: 20px;
    font-family: "Jersey 15", serif;
}

.about-heading span {
    font-family: "Pacifico", serif;
    padding-left: 10px;
}

.about-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.about-content img {
    max-width: 40%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-text {
    text-align: left;
    max-width: 55%;
}

.about-text p {
    font-size: 1.5em;
    color: #f7db7c;
    margin-bottom: 15px;
    line-height: 1.6;
    font-family: "Jersey 15", serif;
}

.menu-button {
    background-color: black;
    color: #f7db7c;
    border: 4px solid #f7db7c;
    outline: none;
    padding: 10px 20px;
    font-size: 1.6em;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 10px;
    font-family: "Jersey 15", serif;
    font-weight: bold;
}

.menu-button:hover {
    background-color: #f7db7c;
    color: rgb(39, 37, 37);
}


.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-info {
    flex: 1;
    padding-right: 20px;
    font-family: "Jersey 15", serif;
    padding-left: 50px;
}


.whatpic {
    margin-top: 4px;
}

.contact-info h2 {
    margin-bottom: 40px;
    font-size: 3em;
    font-weight: bold;
}

.contact-info p {
    margin: 10px 0;
    font-size: 25px;
    display: flex;
    gap: 10px
}



.contact-info div {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}


.contact-map {
    flex: 1;
    min-width: 300px;

}

.contact-map iframe {
    width: 100%;
    height: 300px;
    border: 0;
}

.social-media a {
    padding: 0 5px;
}


footer {
    background-color: #f7db7c;
    color: rgb(39, 37, 37);
    text-align: center;
    padding: 15px 0;
    margin-top: 20px;
    display: flex;
    font-family: "Jersey 15", serif;
    justify-content: center;


}

footer p {
    font-size: 1.4rem;
}

footer p a {
    color: rgb(39, 37, 37);
    text-decoration: none;
    font-family: "Jersey 15", serif;
}



@media (max-width: 1250px) {
    .logo-font {
        padding-right: 50px;
    }

   

    
    nav ul {
        gap: 40px;
        justify-content: center;
    }

    .hero-content {
        max-width: 60%;
    }

    .menu-item {
        width: 45%;
    }

    .about-content {
        flex-direction: column;
    }

    .about-content img {
        max-width: 70%;
        margin-bottom: 20px;
    }

    .about-text {
        max-width: 90%;
    }

    .contact-container {
        flex-direction: column;
    }

    .contact-info,
    .contact-map {
        width: 100%;
        padding: 10px;
    }
}

@media (max-width: 768px) {
    nav.transparent-nav{
        flex-direction: column;
    }

    
    nav ul {
        flex-direction: row;
        gap: 40px;
        justify-content: center;
    }

    .hero-content {
        max-width: 80%;
    }

    .hero h1 {
        font-size: 2.5em;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .search-container input {
        width: 60%;
    }

    .menu-item {
        width: 80%;
    }

    .about-content img {
        max-width: 100%;
    }

    .about-text {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .logo-font {
        font-size: 1.5rem;
        
    }

    nav.transparent-nav{
        flex-direction: column;
    }

    
    nav ul {
        flex-direction: row;
        gap: 40px;
        justify-content: center;
    }


    .hero-content {
        left: 5%;
        max-width: 90%;
    }

    .hero h1 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1.2rem;
        margin-top: 1vh;
    }

    .search-container {
        flex-direction: column;
        margin-top: 12vh;
    }

    .search-container input {
        width: 95%;
    }

    .search-container button {
        font-size: 1.5rem;
        width: 60%;
        padding: 10px 0;
        margin-left: 8vh;
        background-color: #f7db7c;
        color: rgb(39, 37, 37);
    }

    .menu-heading {
        font-size: 2em;
    }

    .menu-item {
        width: 80%;
    }

    .about-heading {
        font-size: 2em;
    }


    .contact-info p {
        font-size: 20px;
    }


    footer p {
        font-size: 1.1rem;
    }
}