    
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #F4DAD7; 
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}
.logo {
    font-size: 18px;
    font-weight: bold;
    color: black;
}
.hero {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    padding-top: 3em;
    padding-bottom: 2em;
}
.hero img {
    width: 40%;
    display: block;
    margin: auto;
    
}
.overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #F4DAD7;
    text-align: center;
    padding: 40px 0;
}

.overlay h1 {
    font-size: 16vw;
    width: 100%; 
    font-weight: bold;
    color: black;
    margin: 0;
    position: absolute;
    top: -200px; /* Moves text up to overlap image */
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}


.button {
    display: inline-block;
    padding: 20px;
    background: #3B1E1A;
    color: #B23626;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    position: absolute;
    top: -30%;
    left: 85%; 
    transform: translate(-50%, -50%); 
    z-index: 2; 
}

.recent-eats {
 
    text-align: center;
    padding-top: 5em; 
    padding-bottom: 5em;
}

.recent-eats h2 {
    font-size: 3rem;
    color: #3B1E1A; 
    margin-bottom: 20px;
    text-decoration: none;
}

.food-gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.food-item {
    width: 300px;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
    text-decoration: none;
}

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

.food-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    overflow: hidden;
}

.food-info {
    margin-top: 10px;
    color: black;
}

a:link {
  text-decoration: none;
}

.food-info p {
    font-size: 0.9em;
    color: #3B1E1A;
   
}

.footer {
    background-color: #F4DAD7;
    padding: 20px 5%;
    text-align: center;
    margin-top: 50px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin: 20px;
}

h3 {
    font-size: 2rem;
    color: #3B1E1A;
    margin-bottom: 10px;
}

.footer-column:first-child {
    text-align: left;
    margin-left: 0; 
}

.footer-column:nth-child(3){
    text-align: right;
    margin-left: 0; 
}

.footer-column a {
    display: block;
    color: #3B1E1A;
    text-decoration: none;
    font-size: 1rem;
    margin: 5px;
}

.footer-column p {
    font-size: 1rem;
    color: #3B1E1A;
}

.footer-button {
    background: none;
    border: 2px solid #B23626;
    color: #B23626;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 30px;
    margin-top: 10px;
}

.footer-button:hover {
    background: #B23626;
    color: white;
}
.social-icons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.social-icons img {
    width: 40px;
    margin: 0px;
    display: block;
}

.recipe-recommendation {
    text-align: center;
    padding: 50px 5%;
    background-color: #F4DAD7;
    color: #3B1E1A;
}

.bowl-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

#mixing-bowl {
    width: 450px;
    transition: opacity 0.5s ease-in-out;
}
#recipe-box {
    display: none;
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 10px;
}

/* Navigation Bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #F4DAD7;
    padding: 15px 5%;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    float: right;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    color: #3B1E1A;
    font-weight: bold;
}

.nav-links .active {
    text-decoration: underline;
}





/*recipe page*/
.recipes-container {
    text-align: left;
    padding: 50px 5%;
    background-color: #F4DAD7;
    color: #3B1E1A;
}
.recipe-gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.recipe-card {
    width: 250px;
    background: white;
    padding: 15px;
    border-radius: 2px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
    text-decoration: none;
    text-align: center;
}

.recipe-card:hover {
    transform: scale(1.05);
}

.recipe-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    overflow: hidden;
}

.recipe-card h3 {
    font-size: 1rem;
    color: #3B1E1A;
    margin-top: 10px;
}



/* Recommendations Page */
.recommendations-container {
    text-align: center;
    padding: 50px;
    background-color: #F4DAD7;
    color: #3B1E1A;
}

.recommendation-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.recommendation-card {
    width: 50%;
    text-decoration: none;
    text-align: center;
    position: relative;
}

.recommendation-card h3 {
    font-size: 2rem;
    color: white;
}

.recommendation-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.recommendation-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
}

.recommendation-card:hover .recommendation-info {
    opacity: 1;
}

.recommendation-info p {
    margin: 5px 0;
}

.profile-img { 
    width: 30%;
    height: 300px;
    object-fit: cover;
    overflow: hidden;
    border-radius: 50%;
}

/* Recipe Page Styling */
.recipe-container {
    text-align: center;
    padding: 50px 5%;
    background-color: #F4DAD7;
    color: #3B1E1A;
}
.recipe-main-image {
    width: 300px;
    height: 300px;
    object-fit: cover;
    overflow: hidden;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    border-radius: 10px;
}

.recipe-details {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.ingredients-list, .recipe-steps {
    text-align: left;
    max-width: 600px;
    margin: auto;
    font-size: 1rem;
    line-height: 1.5;
}

.ingredients-list li {
    list-style: none;
    margin-bottom: 5px;
}

.recipe-steps li {
    margin-bottom: 10px;
}

