@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600&display=swap');

body {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    background-color: #2b0e0e;
    background-image: url("https://www.transparenttextures.com/patterns/dark-brick-wall.png");/* This is mostly intended for prototyping; please download the pattern and re-host for production environments. Thank you! */
    color: #FFF4E6; /* Creamy Beige for contrast */
}
span {
    font-size: 20px;
    color: #F5A623; /* Golden Yellow */
}

.sect1 {
    background-image: url('https://static.vecteezy.com/system/resources/previews/027/671/366/large_2x/pepperoni-pizza-on-the-wooden-board-with-dark-lighting-and-black-background-food-and-delivery-concept-generative-ai-free-photo.jpg'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Makes the image fixed when scrolling */
    background-repeat: no-repeat;
    color: #FFF4E6; /* Creamy Beige for readability */
    padding: 80px 20px;
    text-align: center;
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: center;
    border-radius: 5px;
}

.sect1 h2 {
    font-family: 'Nunito', sans-serif;
    font-size: 36px;
    color: #F5A623; /* Tomato Red */
}

.wisecat{
    max-width: 250px;
    max-height: 250px;
}

.sect1 h1 {
    font-family: 'Pacifico', cursive; /* Unique and inviting font */
    font-size: 100px;
    color: #ffffffe8;
    text-shadow:
    0 0 2px #f0500c,
    0 0 4px #f0500c,
    0 0 6px #f0500c,
    0 0 8px #f0500c,
    0 0 10px #f0500c,
    0 0 12px #f0500c,
    0 0 14px #f0500c,
    0 0 16px #f0500c;
    margin-block-start: 40px;
    margin-block-end: 40px;
}
.sect1 form {
    display: flex;
    flex-direction: row;
    gap: 10px; /* Adds space between input and button */
    width: 100%;
    max-width: 500px; /* Limits the form's width */
}

.sect1 form input[type="text"] {
    flex: 1;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #8BAA68; /* Olive Green border */
    border-radius: 5px;
    outline: none;
    font-family: 'Nunito', sans-serif;
}

.sect1 .location {
    padding: 12px 20px;
    font-size: 16px;
    font-family:'Nunito', sans-serif;
    background-color: #8BAA68; /* Golden Yellow */
    color: #FFF4E6; /* Creamy Beige */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.sect1 .location:hover {
    background-color: #F5A623; /* Olive Green  */
    color: #D94141;
    transform: scale(1.05); /* Slight grow effect */
}

.sect2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px; /* Adds spacing between elements */
    color: #FFF4E6; /* Creamy Beige */ 
    background-color: rgba(255, 255, 255, 0.1); /* 10% opacity */
    padding: 50px;
    border-radius: 10px; /* Rounded corners for a softer look */
}

.sect2 h2 {
    font-family: 'Nunito', sans-serif;
    font-size: 36px;
    color: #F5A623; /* Olive Green */
    margin: 0;
}
.sect2 .discover, .order{
    padding: 12px 20px;
    font-size: 16px;
    font-family: 'Nunito', sans-serif;
    background-color: #8BAA68; /* Golden Yellow */
    color: #FFF4E6; /* Creamy Beige */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.sect2 .discover:hover, .order:hover{
    background-color: #F5A623; 
    color: #D94141;
    transform: scale(1.05); /* Slight grow effect */
}

.sect3 h2 {
    font-family: 'Nunito', sans-serif;
    font-size: 36px;
    color: #F5A623; 

}
/* Main Navigation Styling */
.nav-menu {
    background-color: #D94141; /* Tomato Red */
    padding: 7px 10px;
    display: flex;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 15px;
    padding: 0;
    margin: 0;
}

.nav-menu li {
    display: inline-block;
}

/* Text Links */
.nav-menu a.text {
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #FFF4E6; /* Creamy Beige */
    padding: 10px 15px;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 5px;
}

/* Icon Links */
.nav-menu a.icon {
    color: #FFF4E6;
    font-size: 20px;
    padding: 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 5px;
}

.nav-menu a:hover {
    background-color: #F5A623; /* Golden Yellow */
    color: #D94141; /* Tomato Red for hover effect */
}

/* Responsive Search Bar */
.search-bar {
    display: none;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background-color: #3B1E1E; /* Dark shade */
    border-radius: 10px;
    margin: 10px auto;
    max-width: 90%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.search-bar input {
    padding: 8px;
    border: none;
    border-radius: 5px 0 0 5px;
    outline: none;
    width: 200px;
    max-width: 60%;
    background-color: #FFF4E6;
    color: #2C1B18;
}

.search-bar button {
    padding: 8px 12px;
    background-color: #F5A623;
    color: #2C1B18;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-bar button:hover {
    background-color: #FFCC66;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .search-bar input {
        width: 100%;
    }
}

.nav2 {
    background-color: #D94141; /* Tomato Red */
    padding: 7px 10px;
    display: flex;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

 .nav2 a {
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #FFF4E6; /* Creamy Beige for contrast */
    padding: 10px 15px;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 5px; /* Slight rounding for links */
}


 .nav2 a:hover {
    background-color: #F5A623; /* Golden Yellow */
    color: #D94141; /* Tomato Red for hover effect */
}

.text {
    text-decoration: none;
    font-size: 20px;
    font-family: 'Nunito', sans-serif;
    color: #8BAA68; /* Olive Green */
}

.container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1); /* 10% opacity */
    border-radius: 10px; /* Rounded corners for a softer look */
    row-gap: 20px;
    column-gap: 20px;
    padding: 50px 20px;
}

.apps, .pizza, .pasta, .salads, .dessert, .drinks {
    max-width: 25%;
    max-height: 100%;
    border-radius: 5px;
}

.footer {
    background-color: #D94141; /* Tomato Red */
    color: #FFF4E6; /* Creamy Beige text */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    padding: 30px 20px;
    border-radius: 5px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0px -4px 6px rgba(0, 0, 0, 0.1); /* Subtle top shadow */
}

.footer address {
    font-style: normal;
    margin-bottom: 15px;
}

.footer a {
    color: #F5A623; /* Golden Yellow */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

/*OLD, DEPRECATED CODE*/
/*h1 {
    font-size: 70px;
    font-family: 'Lora', serif;
    color: #D94141; 
}

/*.nav1 {
    border: 50px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.nav2 {
    border: 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}*/

/*.sect1 {
    display: block; 
    justify-items: center;
    padding: 30px;
}*/