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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: #fefefe;
  box-shadow: 0 1px 5px rgba(0,0,0,0.1);
}

.logo-section {
  display: flex;
  align-items: center;
}

.logo {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  margin-right: 12px;
}

.text-brand h1 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2c2c2c;
}

.text-brand .highlight {
  color: #198F51;
}

.tagline {
  font-size: 0.7rem;
  color: #7d8b96;
  letter-spacing: 1px;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
}

.navbar a {
  text-decoration: none;
  font-size: 0.95rem;
  color: #062241;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #198F51;
}

.btn-contact {
  background: #198F51;
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: bold;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: right center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.content {
  color: #fff;
  max-width: 600px;
  margin-left: 50px;
}

.offer {
  font-size: 1.4rem;
  font-style: italic;
  color: ##198F51;
  margin-bottom: 10px;
}

h2 {
  font-size: 3.5rem;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 20px;
}

.desc {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 30px;
}

.btn-order {
  background-color: ##198F51;
  padding: 10px 20px;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.btn-order:hover {
  background-color: ##198F51;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  background: ##198F51;
  border-radius: 50%;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.3s;
}

.slider-dots .dot.active {
  opacity: 1;
}
.features {
  padding: 80px 20px;
  background: #f9fdfb;
  text-align: center;
}

.features-title {
  font-size: 2.5rem;
  color: #198F51;
  font-weight: 700;
  margin-bottom: 10px;
}

.features-subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 50px;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 30px 20px;
  transition: transform 0.3s ease;
}

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

.feature-card .icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.feature-card h3 {
  color: #198F51;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.feature-card p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f9fa;
  margin: 0;
  padding: 20px;
  color: #333;
}

.title {
  text-align: center;
  font-size: 2.5rem;
  color: #723c2d;
}

.subtitle {
  text-align: center;
  color: #5f5f5f;
  margin-bottom: 40px;
}

.categories, .recipes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card, .recipe-card {
  background: white;
  padding: 20px;
  width: 300px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card h2, .recipe-card h3 {
  color: #3b5998;
  margin-bottom: 10px;
}

.card p, .recipe-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 8px;
}

.card span, .recipe-card span {
  font-size: 0.85rem;
  color: #198F51;
  margin-bottom: 15px;
  display: block;
}

.card a, .recipe-card a, .back-btn {
  background: #198F51;
  color: white;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.card a:hover, .recipe-card a:hover, .back-btn:hover {
  background: #198F51;
}

.back-btn {
  display: inline-block;
  margin-bottom: 20px;
}

.categories-title {
  font-size: 2rem;
  color: #000000; /* Ensure it's the desired green */
  margin-bottom: 20px;
  text-align: center; /* This line centers the title */
}

.categories {
  padding: 20px;
  text-align: center;
}

.category-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns */
  gap: 20px; /* Space between cards */
  max-width: 1100px; /* Optional: Limits the max width of the grid */
  margin: 0 auto; /* Centers the grid section */
  padding: 20px; /* Add some padding around the grid */
}

.card {
  background: #fff;
  border-radius: 12px; /* Rounded corners */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); /* Deeper shadow */
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s; /* Add transition for shadow */
}

.card img {
  width: 100%;
  height: 180px; /* Fixed height for a uniform look */
  object-fit: cover; /* Ensures the image covers the card nicely */
  border-radius: 12px; /* Add radius to match the card's corners */
}

.card h3 {
  font-size: 1.2rem;
  color: #333;
  margin: 10px 0;
}

.btn-see-recipe {
  display: inline-block;
  background: #198F51;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s; /* Add transition for button */
}

.btn-see-recipe:hover {
  background: #0e6b39;
  transform: scale(1.05); /* Slightly increase button size on hover */
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2); /* Increase shadow on hover */
}


.footer-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.footer-container a {
  color: #ffffff; /* White color for email link */
  text-decoration: underline; /* Optional: underlines the email link */
}

.footer-container p {
  margin: 5px 0;
}