@font-face {
  font-family: 'Mike Abbink';
  src: url('fonts/MikeAbbink.woff2') format('woff2'),
       url('fonts/MikeAbbink.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Bold Monday';
  src: url('fonts/BoldMonday.woff2') format('woff2'),
       url('fonts/BoldMonday.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  background: #1b4332;
  overflow-x: hidden;
}
.main-header {
  padding: 10px 0px;
  background-color: #f5e6d3;
  width: 98%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 32px;
  padding-left: 140px;
}
.navbar-left {
  display: flex;
  align-items: center;
}
.icon {
  font-size: 28px;
  color: #444;
  margin-right: 16px;
}
.icon img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}


.nav-menu {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
}
.nav-menu li a {
  color: #2d6a4f;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: color 0.5s;
}
.nav-menu li a:hover {
  color: #d4a373;
}
.subscribe-btn {
  background: #2d6a4f;
  color: #F5E6D3;
  font-weight: bold;
  border: none;
  border-radius: 20px;
  padding: 15px 40px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.5s, color 0.2s;
  text-decoration: none;
  display: inline-block;
}
.subscribe-btn:hover {
  background: #f5e6d3;
  color: #2d6a4f;
}

body, .nav-menu li a, .subscribe-btn {
  font-family: 'Mike Abbink', 'Bold Monday', Arial, sans-serif;
}

.logo-text {
  color: #2d6a4f;
  font-size: 32px;
  font-weight: 600;
  margin-left: -10px;
  margin-right: 80px;
  font-family: 'Mike Abbink', 'Bold Monday', Arial, sans-serif;
  letter-spacing: 1px;
}

.background {
  position: relative;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 98%;
  height: 60vh;
  align-items: center;
  z-index: -1;
  background-color: #F5E6D3;
  border-radius: 30px;
}

.welcome-text {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
}

.welcome-text h1 {
  color: #2d6a4f;
  font-size: 58px;
  font-weight: bold;
  font-family: 'Mike Abbink', 'Bold Monday', Arial, sans-serif;
  text-shadow: 2px 2px 2px rgba(89, 89, 89, 0.5);
  margin: 0;
}

.welcome-text p {
  color: #1b4332;
  font-size: 24px;
  font-family: 'Mike Abbink', 'Bold Monday', Arial, sans-serif;
  text-shadow: 1px 1px 2px rgba(89, 89, 89, 0.5);
  margin-top: 10px;
}

.join-btn {
  background: #2d6a4f;
  color: #F5E6D3;
  font-weight: 600;
  border: none;
  border-radius: 24px;
  padding: 20px 30px;
  font-size: 16px ;
  cursor: pointer;
  margin-top: 25px;
  transition: background 0.5s, color 0.2s;
  font-family: 'Mike Abbink', 'Bold Monday', Arial, sans-serif;
  text-decoration: none;
  display: inline-block;
}

.join-btn:hover {
  background: #F5E6D3;
  color: #2d6a4f;
}



.video-box {
  position: relative;
  width: 98%;
  height: auto;
  background-color: #f5e6d3;
  border-radius: 30px;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  padding: 20px;
  box-sizing: border-box;
}

.videos-heading {
  color: #2d6a4f;
  font-size: 32px;
  font-weight: bold;
  margin: 20px;
  font-family: 'Mike Abbink', 'Bold Monday', Arial, sans-serif;
}

.videos-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 20px;
  justify-content: center;
}

.cook-card {
  background-color: #ffffff;
  border-radius: 32px;
  overflow: hidden;
  width: 450px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease-in-out;
  position: relative;
  top: 0;
  left: 0;
}

.cook-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.cook-card img {
  width: 100%;
  height: auto;
  display: block;
}

.card-content {
  padding: 15px;
}

.card-content h2 {
  font-size: 18px;
  font-weight: bold;
  color: #2d6a4f;
  margin-top: 0;
  margin-bottom: 5px;
  font-family: 'Mike Abbink', 'Bold Monday', Arial, sans-serif;
}

.card-content p {
  font-size: 14px;
  color: #1b4332;
  margin-top: 0;
  margin-bottom: 0;
  font-family: 'Mike Abbink', 'Bold Monday', Arial, sans-serif;
}



.cook-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}


.card-link {
  text-decoration: none !important;
  color: inherit;
  display: block;
}






.reversed-box {
  padding: 80px 0px;
  background-color: #f5e6d3;
  width: 98%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  margin-top: 100px; 
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 800px;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 0;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  line-height: 20px;
  text-align: left;
}

.footer-logo {
  margin-top: 0;
}

.footer-logo img {
  width: 150px;
  height: auto;
  border-radius: 50%;
}

.footer-divider {
  width: 90%;
  max-width: 800px;
  border: 0;
  height: 2px;
  background-color: #2d6a4f;
  margin: 5px 0;
}

.copyright {
  color: #1b4332;
  font-size: 14px;
  gap: 5px;
  margin-top: 15px;
  font-family: 'Mike Abbink', 'Bold Monday', Arial, sans-serif;
}

.cook-card2 {
  background-color: #ffffff;
  border-radius: 32px;
  overflow: hidden;
  width: 450px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease-in-out;
  position: relative;
  top: 0;
  left: 0;
}

.cook-card2:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.cook-card2 img {
  width: 100%;
  height: auto;
  display: block;
}

.card-content2 {
  padding: 15px;
}

.card-content2 h2 {
  font-size: 18px;
  font-weight: bold;
  color: #2d6a4f;
  margin-top: 0;
  margin-bottom: 5px;
  font-family: 'Mike Abbink', 'Bold Monday', Arial, sans-serif;
}

.card-content2 p {
  font-size: 14px;
  color: #1b4332;
  margin-top: 0;
  margin-bottom: 0;
  font-family: 'Mike Abbink', 'Bold Monday', Arial, sans-serif;
}



.cook-card3 {
  background-color: #ffffff;
  border-radius: 32px;
  overflow: hidden;
  width: 450px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease-in-out;
  position: relative;
  top: 0;
  left: 0;
}

.cook-card3:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.cook-card3 img {
  width: 100%;
  height: auto;
  display: block;
}

.card-content3 {
  padding: 15px;
}

.card-content3 h2 {
  font-size: 18px;
  font-weight: bold;
  color: #2d6a4f;
  margin-top: 0;
  margin-bottom: 5px;
  font-family: 'Mike Abbink', 'Bold Monday', Arial, sans-serif;
}

.card-content3 p {
  font-size: 14px;
  color: #1b4332;
  margin-top: 0;
  margin-bottom: 0;
  font-family: 'Mike Abbink', 'Bold Monday', Arial, sans-serif;
}

.stats-container {
  display: flex;
  justify-content: center;
  gap: 40px; /* Space between stat items */
  margin-top: 30px; /* Space above the stats container */
  margin-bottom: 30px; /* Space below the stats container */
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 36px;
  font-weight: bold;
  color: #2d6a4f; /* Dark green color */
  font-family: 'Mike Abbink', 'Bold Monday', Arial, sans-serif;
  display: block; /* Make it a block element to take full width */
  margin-bottom: 5px; /* Space between number and label */
  text-align: center;
}

.stat-label {
  font-size: 18px;
  color: #1b4332; /* Darker green color */
  font-family: 'Mike Abbink', 'Bold Monday', Arial, sans-serif;
  display: block; /* Make it a block element */
}

.footer-links a {
  color: #2d6a4f; /* Orange color from the image */
  text-decoration: none; /* Remove underline */
  font-family: 'Mike Abbink', 'Bold Monday', Arial, sans-serif;
  transition: color 0.5s;
}

.footer-links a:hover {
      color: #d4a373;
      
}



.nav-menu li a[href="#about"] {
  scroll-behavior: smooth;
}



@media (min-width: 576px) { /* mobile wide */
  .main-header {
    padding: 5px 0px;
    width: 98%;
  }

  .nav-menu {
    display: none;
  }

  .navbar-left {
    position: relative;
    right: 40px;
  }

  .icon {
    position: relative;
    right: 50px;
  }

  .logo-text {
    position: relative;
    right: 40px;
  }

  
}






@media (min-width: 1680px) { /* wide desktop */
  .nav-menu {
    display: flex;
  } 

}