/* breakfast */
body {
  font-family: Arial, sans-serif;
  background-color: #fff8f0;
  padding: 20px;
  text-align: center;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #f79696;
  font-weight: bold;
  
}



.card {
  background-color: #ffffff;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 16px;
  margin: 20px auto;
  width: 80%;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
}

.card img {
  width: 100%;
  max-width: 300px;
  border-radius: 5px;
}


/* Dessert */
/* General Styles */
body {
  font-family: Arial, sans-serif;
  background-color: #f5b2df;
  margin: 0;
  padding: 20px;
}

/* Heading */
h1 {
  text-align: center;
  color: #6b4f4f;
  margin-bottom: 30px;
}

/* Navigation Menu



/* dinner */
/* General Page Styling */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f3d0a8;
  margin: 0;
  padding: 20px;
}

/* Page Heading */
h1 {
  text-align: center;
  color: #fffdfd;
  font-size: 36px;
  margin-bottom: 30px;
}

/* Recipe Card Layout */
.recipe-card {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  transition: transform 0.2s ease-in-out;
}

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

/* Recipe Image */
.recipe-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 15px;
}

/* Recipe Titles */
.recipe-card h2 {
  color: #b23b3b;
  margin-bottom: 10px;
}

.recipe-card h3 {
  color: #555;
  margin-top: 15px;
  margin-bottom: 5px;
}

/* Ingredients List */
.recipe-card ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

/* Instructions */
.recipe-card p {
  color: #444;
  line-height: 1.6;
}



/* index.html */
/* General Styling */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to right, #fef6e4, #f9e8d9);
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header */
header {
  background-color: #3b0c10;
  color: white;
  padding: 20px 0;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 36px;
}

/* Navigation Buttons Section */
.main-content {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  gap: 20px;
}

/* Buttons for each recipe category */
.category-button {
  background-color: #fff;
  border: 2px solid #b23b3b;
  color: #b23b3b;
  padding: 20px 40px;
  font-size: 20px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.category-button:hover {
  background-color: #b23b3b;
  color: #fff;
}

/* Footer */
footer {
  background-color: #f82335;
  text-align: center;
  padding: 15px;
  font-size: 14px;
  color: #666;
}



/* lunch.html */
/* Base Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff8f0;
  margin: 0;
  padding: 0;
}

/* Header */
header {
  background-color: #3b0c10;
  color: white;
  text-align: center;
  padding: 20px;
}

header h1 {
  margin: 0;
  font-size: 36px;
}

/* Recipe Container */
.recipes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 30px;
  gap: 20px;
}

/* Individual Recipe Card */
.card {
  background-color: #fff;
  width: 300px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.03);
}

/* Recipe Image */
.card img {
  width: 100%;
  height: 100px;
  object-fit: scale-down;
}

/* Recipe Content */
.card-content {
  padding: 15px;
}

.card-content h3 {
  margin-top: 0;
  color: #f77f00;
}

/* Ingredients and Instructions */
.card-content ul,
.card-content ol {
  margin: 10px 0;
  padding-left: 20px;
}

/* Footer */
footer {
  background-color: #3b0c10;
  text-align: center;
  padding: 15px;
  color: #747474;
  margin-top: 30px;
}
