
/* General Styles */
body {
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #f4f4f9;
  color: #333;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}
.cute-title {
	  font-family: "duckie", sans-serif;
	  font-weight: 400;
	  font-style: normal;
      font-size: 45px; 
      color: #356096;
	  margin-top: 10px;
      text-align: center; 
      text-shadow: 2px 2px 4px rgba(255, 165, 0, 0.5); 
      display: inline-block; 
}
	
/* Navbar Styles */
.navbar {
  background-color: beige;
  padding: 16px 32px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-weight: bold;
  color: #213E60;
}

.navbar-brand:hover {
  color: #213E60;
}

.nav-link {
  font-family: "Andale Mono";
  font-weight: 500;
  color: #E68C3A;
  padding: 12px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #213E60;
}

/* Jumbotron */
.jumbotron {
  color: #213E60;
  padding: 80px 32px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.jumbotron h1 {
  font-size: 48px;
  font-weight: 700;
}

.jumbotron p {
  font-size: 19px;
  margin-top: 25px;
}

.carousel-item {
	height: 500px;
	background: no-repeat center center;
	background-size: cover;
}

.btn-primary {
  background-color: #213E60;
  border-radius: 50px;
  padding: 12px 32px;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #E68C3A;
  color: white;
}

.carousel-caption {
  width: 100%;
  bottom: 0;
  left: 0; 
  right: 0;
  background: rgba(0, 0, 0, 0.2); 
  padding: 20px; 
  text-align: center;
  position: absolute; 
}

/*EMAIL SUBSCRIPTION FORM*/
   .input-group {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      border-radius: 50px;
      overflow: hidden;
    }

    .subscription-section {
      height: 60vh; 
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
	  background-image: url("../img/banner1.jpg");
	  opacity: 90%;
      background-size: cover; 
      background-position: center; 
      background-repeat: no-repeat;
      padding: 20px;
      color: #213E60; 
      position: relative
    }

/* Card Styles */
.recipes-container {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: #f9f9f9;
}

.recipe-section {
  margin-bottom: 40px; 
}

.recipe-section img {
  width: 100%; 
  border-radius: 10px;
}

.recipe-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.view-recipe-btn {
display: inline-flex;
align-items: center;
background-color: #213E60;
color: white;
border: none;
border-radius: 5px;
padding: 8px 12px;
text-decoration: none;
transition: background-color 0.3s, transform 0.2s;
}

.view-recipe-btn:hover {
 background-color: #E68C3A;
transform: scale(1.05);
 }

.view-recipe-btn i {
margin-right: 5px;
}

.card {
  height: 100%;
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border-radius: 10px;
  margin-bottom: 32px;
}

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

.card-img-top {
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

.card-body {
  display: flex;
  flex-direction: column;
  padding: 24px;
  text-align: center;
  margin-bottom: 30px;
}

.card-title {
  font-weight: bold;
  font-size: 23px;
  margin-bottom: 16px;
}

.card-text {
  color: #666;
  font-size: 16px;
  width: 250px; /* Set a fixed width */
  height: 100px; /* Set a fixed height */
  overflow: hidden; /* Crop any excess text */
  text-align: center;
  margin: 0 auto; /* Center the text box */
}

 .banner-image {
      width: 100%; 
      height: auto; 
    }
.hidden {
   display: none;
 }
.message {
margin-top: 20px;
color: green;
font-weight: bold;
}
	


/* Footer */
.footer {
  background-color:#f9f9f9 ;
  color: orange;
  padding: 40px 0;
}

.footer-title {
  font-family: "Andale Mono";
  font-size: 18px;
  font-weight: bold;
  color: #E68C3A;
  margin-bottom: 20px;
}

.footer p {
  color: #E68C3A;
  font-size: 15px;
  line-height: 1.8;	
}

.footer a {
  color: darkblue;
  font-size: 15px;
  transition: color 0.3s ease;
  text-decoration: none;
}

.footer a:hover {
  color: #E68C3A;
  text-decoration: none;
}

.footer .social-links a {
  display: inline-block;
  margin-bottom: 10px;
}

.footer-bottom {
  background-color: #1b2f4b;
  color: #ddd;
  padding: 15px 0;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
}
/* Form Styles */
form {
  background-color: white;
  padding: 32px;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  margin-top: 32px;
}

.form-control {
  border-radius: 50px;
  padding: 16px;
  border: 1px solid #ddd;
}

button[type="submit"] {
  background-color: #213E60;
  border-radius: 50px;
  padding: 12px 32px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
}

button[type="submit"]:hover {
  background-color: #E68C3A;
}

/* Responsive Grid */
.container .row {
  display: flex;
  flex-wrap: wrap;
}

.col-sm, .col-md, .col-lg, .col-xl {
  margin-bottom: 24px;
}

/* Custom media queries */
@media (max-width: 575px) {
  /* Extra small devices */
  .card-title {
    font-size: 20px;
  }

  .jumbotron h1 {
    font-size: 24px;
  }

.card {
    margin-bottom: 16px;
  }

}

@media (min-width: 576px) and (max-width: 767px) {
  /* Small devices */
  .card-title {
    font-size: 23px;
  }

  .jumbotron h1 {
    font-size: 32px;
  }

.btn-primary {
    font-size: 14px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* Medium devices (tablets) */
  .card-title {
    font-size: 25px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* Large devices (desktops) */
  .card-title {
    font-size: 28px;
  }
}

@media (min-width: 1200px) {
  /* Extra large devices (large desktops) */
  .card-title {
    font-size: 32px;
  }
}