/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
}

/* Header */
header {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.logo svg {
  width: 150px;
  height: auto;
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 20px;
  background-color: #fff;
}

.hero-content {
  flex: 1;
  max-width: 500px;
}

.hero-content h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
}

.hero-image svg {
  flex: 1;
  width: 100%;
  height: auto;
}

/* Recipe Cards */
.recipes {
  padding: 50px 20px;
  background-color: #fff;
  text-align: center;
}

.recipe-cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.recipe-card {
  flex: 1 1 300px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  margin: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.recipe-card:hover {
  transform: translateY(-5px);
}

.recipe-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.recipe-card p {
  font-size: 16px;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #FFC300;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #FFA500;
}

/* Tips Section */
.tips {
  padding: 50px 20px;
  background-color: #fff;
  text-align: center;
}

.tip-cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.tip-card {
  flex: 1 1 300px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  margin: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tip-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.tip-card p {
  font-size: 16px;
}

/* About Section */
.about {
  padding: 50px 20px;
  background-color: #fff;
  text-align: center;
}

.about p {
  font-size: 16px;
  line-height: 1.8;
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 20px;
}

footer p {
  margin: 0;
}
