                    /* WEBPAGE */
body {
    background-color: #fffaf0;
    display: flex;
    flex-direction: column;
    margin: 0;
    min-height: 100vh;
}
.page-container {
    flex: 1;
}

                    /* NAVIGATION BAR */
.nav-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0 0.5rem 0;
    border-bottom: 2px solid #de6b48;
    background-color: #fffaf0;
}

#heading,
#heading a {
    font-family: 'Titan One', cursive;
    font-size: 2rem;
    color: #1a515c;
    text-decoration: none;
    margin-bottom: 0.25rem;
}

.nav-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.nav-list a {
    color: #1a515c;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #de6b48;
    text-decoration: underline;
}


                    /* MAIN CONTAINTER */
.main-container {
    margin: 2rem auto;
    padding: 1rem;
    max-width: 900px;
    text-align: center;
}

/* Heading Styling */
#search-heading {
    color: #de6b48;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

/* Subtext/Overview Styling */
#main-overview {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 2rem;
    font-family: 'Raleway', sans-serif;
}

/* Search Bar Form */
#search-form-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

/* Input Field */
#search-bar{
    border: 1px solid #999;
    border-radius: 4px;
    box-sizing: border-box;
    flex: 1 1 300px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    padding: .5rem 1rem;
}

/* Button Styling */
#recipe-submit,
#random-recipe-shuffle {
    padding: 0.5rem 1.2rem;
    border: none;
    border-radius: 4px;
    background-color: #de6b48;
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#recipe-submit:hover,
#random-recipe-shuffle:hover {
    background-color: #c25538;
}


li {
    list-style: none;
}

.instructions {
    font-size: 1rem;
    white-space: pre-line;
}

.video-ingredients-wrapper {
    align-items: flex-start;
    display: flex;
    gap: 20px;
}

.ingredients-container, .video-wrapper {
    flex: 1;
}
.ingredients-container li {
    padding: 8px;
}

/* Embedded Video Design */
.video-wrapper iframe {
    border: none;
    border-radius: 8px;
    height: 300px;
    width: 100%;
}

#meals {
    width: 30%;
    height: 30%;
}

#title, 
#no-results-found {
    font-size: 1.8rem;
    color: #de6b48;
    margin-bottom: 1rem;
    font-weight: 600;
}

                    /* FOOTER STYLING */
#footer-container {
    background-color: #1a515c;
    color: #de6b48;
    text-align: center;
    padding: 1.5rem 1rem;
    border-top: 2px solid #de6b48;
    margin-top: 3rem;
}

#footer-heading {
    font-weight: 500;
    font-size: 1.1rem;
    border-bottom: 1px solid #de6b48;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer-icons a {
    margin: 0 0.5rem;
}

#footer-icons img {
    width: 32px;
    height: auto;
    transition: transform 0.3s ease;
}

#footer-icons img:hover {
    transform: scale(1.1);
}

#footer-text {
    margin-top: 1rem;
    font-size: 0.9rem;
    font-family: 'Raleway', sans-serif;
}

footer a {
    color: #de6b48;
    text-decoration: none;
}

footer a:hover {
    color: #fff;
}


