/*Importing Google fonts */
 @import url('https://fonts.googleapis.com/css2?family=Miniver&family=Poppins:ital,wght@0,400;0,500,0,600;0,700;1,400&display=swap');
  

 *{
	 margin: 0;
	 padding: 0;
	 box-sizing: borde-box;
	 font-family: "Poppins", sans-serif;
	
 }
 :root{
	 
 }

 html {
	scroll-behavior: smooth;
 }
 /* stylings for whole site */
 ul{
	 list-style: none;
 }
 a {
	 text-decoration: none;
 }
 button {
	 cursor: pointer;
	 border: none;
	 background: none;
 }
 img {
	 width: 100%;
	 
 }
 
 .section-content {
	 margin: 0 auto;
	 padding: 0 80px;
	 max-width: var(--site-max-width);
 }
 
 .section-title {
	text-align: center;
	padding: 60px 0 100px;
	text-transform: uppercase;
	font-size: var(--font-size-xl);
 }

 .section-title::after{
	content: "";
	width: 80px;
	height: 5px;
	display: block;
	margin: 10px auto 0;
	border-radius: var(--border-radius-s);
	background: orange;
 }
 /* navbar styling */

 header{
	 position:fixed;
	 width: 100%;
	 top: 0;
	 z-index: 5;
	 background: Darkblue;
 }

 
 header .navbar {
	 display: flex;
	 padding: 30px;
	 align-items: center;
	 justify-content: space-between;
 }


 .navbar .nav-logo .logo-text {
	 color: gold;
	 font-size: 35px;
	 font-weight: 35px;
	 font-family: bodoni;
	 background: Darkblue ;
 }
 .navbar .nav-menu{
	 display: flex;
	 gap: 10px;
 }
 
 .navbar .nav-menu .nav-link {
	 padding: 10px 20px;
	 color: white;
	 font-size: var(--font-size-m);	 
	 border-radius: 10px; 
	 transition: 0.3s ease;
 }

 .navbar.openSearch .navbar-links a{
	opacity: 0;
	pointer-events: none;
	transition: all 0.2s linear;
}
.navbar  .nabar-links a{
transition: all 0.2s linear;
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    font-size: 24px;
    cursor: pointer;
    margin-right: 10px; /* Space between icon and potentially appearing bar */
}

.search-bar-wrapper {
    display: none; /* Initially hidden */
    align-items: center;
    gap: 10px; /* Space between input, select, and button */
}

.search-bar-wrapper.active {
    display: flex; /* Show when active */
}

#recipeSearchInput {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    flex-grow: 1; /* Allows input to take available space */
}

#languageToggle, #searchButton {
    padding: 8px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    background-color: #28a745;
    color: white;
}

#searchButton:hover {
    background-color: #218838;
}
 .navbar .nav-menu .nav-link:hover{
	 color: purple;
	 background: orange;
 }

 .navbar :where(#menu-close-button, #menu-open-button) {
	display: none;
 }
 /* responsive */
@media screen and (max-width: 1160px) {
	.navbar {
		padding: 15px 100px;

	}
.nabar .search-box {
	right: 150px;
}
}
@media screen and (max-width: 950px) {
	.navbar {
		padding: 15px 50px;

	}
.nabar .search-box {
	right: 100px;
	max-width: 400px;
}
}
@media screen and (max-width: 768px) {
	.navbar .search-box {
		top: calc(100% + 10px);
		max-width: calc(100% - 20px);
		right: 50%;
		transform: translateX(50%);
		box-shadow: 0 2px 10px black;
	}
}


  
 /* Hero section styling */
 

 .hero-section {
	 min-height: 100vh;
	 background: purple;
 }
.hero-section .section-content {
	 display: flex;
	 align-items: center;
	 min-height: 120vh;
	 color: var(--white-color);
	 justify-content: space-between;
 }
 .hero-section .hero-details .title {
	 font-size: var(--font-size-xxl);
	 color: orange;
	 font-family: "Miniver", sans-serif;
 }
 .hero-section .hero-details .subtitle{
	 margin-top: 20px;
	 max-width: 50%;
	 font-size: var(--font-size-m);
	 font-weight: 700;
	  color: white;
 }
 .hero-section .hero-details .description {
	 max-width: 70%;
	 margin: 30px 0 50px;
	 font-size: var(--font-size-m);
	 color: white;
 }

 .hero-section .hero-details .buttons {
	 display: flex;
	 gap: 23px;
 }

 .hero-section .hero-details .button {
	 padding: 10px 26px;
	 border: 2px solid transparent;
	 color: #410200;
	 border-radius: 20px;
	 background: orange;
	 font-weight: 20px;
	 transition: 0.3s ease;
 }

 .hero-section .hero-details .button:hover,
 .hero-section .hero-details .contact-us {
	 color: white;
	 border-color: white;
	 background: transparent;
 }

 .hero-section .hero-details .contact-us:hover{
	 color: #410200;
	 border-color: orange;
	 background: orange;
 }
 
 .hero-section .hero-image-wrapper {
	 max-width: 500px;
	 margin-right: 30px;
 }

 /* About section styling */
 .about-section {
	padding: 10px 0;
	background: white;
}

.about-section .section-content {
	display: flex;
	gap: 50px;
	align-items: center;
	justify-content: space-between;
}

.about-section .about-image-wrapper .about-image {
	width: 400px;
	height: 400px;
	object-fit: cover;
	border-radius: 500px;
}
.about-section .about-details .section-title {
	padding: 0;
}

.about-section .about-details {
	max-width: 50%;
}

.about-section .about-details .text {
	line-height: 20px;
	margin: 50px 0 20px;
	text-align: center;
	font-size: medium;
}

.about-section .social-link-list {
	display: flex;
	gap: 25px;
	justify-content: center;
}

.about-section .social-link-list .social-link {
	color: purple;
	font-size: large;
	transition: 0.2s ease;
	line-height: 60px;
}

.about-section .social-link-list .social-link:hover {
	color: orange;
}
/* Recipes section styling */

.recipes-section {
color: white;
background: darkslategrey;
padding: 50px 0 100px;
}
.recipes-section .section-title {
	font-size: 2em;
	margin-bottom: 30px;
	color: white;
	text-align: center;
}

.recipes-section .recipes-list {
	display: flex;
	flex-wrap: wrap;
	gap: 110px;
	align-items: center;
	justify-content: space-between;
}

.recipes-section .recipes-list .recipes-item {
	display: flex;
	align-items: center;
	flex-direction: column;
	text-align: center;
	justify-content: space-between;
	width: calc(100% / 3 - 110px);
}
.recipes-section .recipes-list .recipes-item .recipes-image {
	max-width: 83%;
	aspect-ratio: 1;
	margin-bottom: 15px;
	object-fit: contain;
}

 
 /* Smoothies section styling */

  
.smoothies-section {
	padding: 40px  20px;
	background: white;
	text-align: center;
}
.smoothies-section .section-title {
	font-size: 2em;
	margin-bottom: 30px;
	color: black;
	text-align: center;
}
.smoothies-section .section-content{
	max-width: 1200px;
	margin: 0 auto;
	 	
}
.smoothies-list {
	list-style: none;
    padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}


.smoothies-item {
	background-color: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	align-self: flex-start;
	
}
.smoothies-image-wrapper {
	width: 83%;
	aspect-ratio: 1;
	overflow: hidden;
	margin-bottom: 15px;
	object-fit: contain;
}
.smoothies-image {
	display: block;
	width: 100%;
	height: auto;
	transition: transform 0.3s ease-in-out;
	
}
.smoothies-image:hover {
	transform: scale(1.05);

}
.smoothies-details {
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex-grow: 1;
}

.smoothies-details .name {
	font-size: 1.8em;
	margin-bottom: 10px;
	color: #333;
}
.smoothies-details .text {
	
	color: rebeccapurple;
	line-height: 1.6;
	margin-bottom: 15px;
}

.smoothies-details .read-more-btn {
	background-color:#a20025;
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 5px;
	cursor: pointer;
	font-size: 1em;
	align-self: flex-start;
	transition: backgroud-color 0.3s ease;
}
.smoothies-details
	.read-more-btn:hover {
		background-color: #4cae4c;

	}
	.smoothies-details .more-content {
		display: none;
		margin-top: 15px;
		color: black;
		font-size: 0.9em;
		line-height: 1.6;
	}
	

	.smoothies-details 
	.more-content h4,
	.more-content h5,
	.more-content h3 {
		margin-bottom: 10px;
		color: #6a00ff;
	} 
		
	
	  .load-more-btn {
		background-color: #0050EF;
		display: block;
		margin: 30px auto;
		padding: 12px 25px;
		color: #fff;
		border: none;
		border-radius: 5px;
		cursor: pointer;
		font-size: 1.1em;
		transition: background-coor 0.3s ease;
	}
   .load-more-btn:hover {
	background-color: #1e7e34;
 }
 
 /* Responsive media query code for max width 768px */
@media (max-width: 768px) {
	  .smoothies-list {
		grid-template-columns: 1fr;
	}
	  .smoothies-title {
		font-size: 2em;
		margin-bottom: 20px;
	  }
	  .smoothies-section .smoothies-item {
		margin-bottom: 20px;
	  }
	
	 
	  .smoothies-details .read-more-btn {
		padding: 8px 12px;
		font-size: 0.9em;
	  }
	
	  .smoothies-details .more-content {
		font-size: 0.8em;
		margin-top: 10px;
	  }
	
	  .smoothies-section .load-more-btn {
		padding: 10px 20px;
		font-size: 1em;
	  }
	}
 

/* Blog section styling */
.blog-section {
	padding: 50px 0 100px;
	background: darkgreen;
	color: white;
}
.blog-section .section-title {
	font-size: 2em;
	margin-bottom: 30px;
	color: white;
	text-align: center;
}


.blog-section .blog {
	user-select: none;
	display: flex;
	padding: 35px;
	text-align: center;
	flex-direction: column;
	align-items: center;
}

.blog-section .slider-wrapper {
	overflow: hidden;
	margin: 0 60px 50px;
}

.blog-section .blog .blog-image {
	width: 180px;
	height: 180px;
	object-fit: cover;
	margin-bottom: 50px;
	border-radius: 500px;
}

.blog-section .blog .name {
	margin-bottom: 16px;
	font-size: medium;

}
.blog-section .blog .blogfeedback {
	line-height: 25px;
	 
}
.blog-section .swiper-pagination-bullet {
	width: 15px;
	height: 15px;
	opacity: 1;
	background: orange;
}

.blog-section .swiper-slide-button {
	margin-top: -50px;
	color: orange;
	transition: 0.3s ease;
}

.blog-section .swiper-slide-button:hover {
	color:darkmagenta;
}

/* Contact us section styling */
.contact-section {
	padding: 50px 0 100px;
	background: lightpink;
}
.contact-section .section-title {
	font-size: 2em;
	margin-bottom: 30px;
	color: black;
	text-align: center;
}


.contact-section .section-content {
	display: flex;
	gap: 48px;
	align-items: flex-start;
	justify-content: space-between;
}

.contact-section .contact-info-list .contact-info {
	display: flex;
	gap: 20px;
	margin: 20px 0;
	align-items: center;
}

.contact-section .contact-info-list .contact-info i {
	font-size: var(--font-size-m);
}

.contact-section .contact-form .form-input {
	width: 100%;
	height: 30px;
	padding: 0 12px;
	outline: none;
	margin-bottom: 16px;
	background: white;
	border-radius: 15px;
	border: 1px solid medium gray;
}

.contact-section .contact-form {
	max-width: 50%;
}

.contact-section .contact-form .form-input:focus {
	border-color:orangered;
}

.contact-section .contact-form textarea.form-input {
	height: 100%;
	padding: 12px;
	resize: vertical;
}

.contact-section .contact-form .submit-button {
	padding: 10px 26px;
	margin-top: 10px;
	color: white;
	font-size: var(--border-radius-m);
	font-weight: var(--font-weight-medium);
	background: #410200;
	border-radius: 15px;
	border: 1px solid #410200;
	transition: 0.3s ease;
}
.contact-section .contact-form .submit-button:hover {
	color: #410200;
	background: transparent;
}

/* Footer section styling */

/* Footer section styling */

		/* Footer Styling */
footer {
    background-color: #0693e3 ;
    color: #fff;
    padding: 10px 0 10px;
    font-size: 15px;
    line-height: 2;
    margin-top: 20px; /* Add some space above the footer */
    width: 100%; /* Ensure footer spans full width */
	 
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 2000px;
    margin: 0 auto;
    padding: 0 10px;
	
}

.footer-section {
    flex: 1;
    min-width: 400px;
    margin-bottom: 10px;
}

.footer-section h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
	margin-right: 40px;
}

.footer-section p {
    color: white;
    margin-bottom: 15px;
	
}

.footer-section .contact-info span {
    display: block;
    margin-bottom: 10px;
    color: white;
	 
}

.footer-section .contact-info i {
    margin-right: 40px;
    color: #f39c12;
}

.footer-section.links ul {
    list-style: none;
    padding: 0;
}

.footer-section.links ul li {
    margin-bottom: 10px;
	
}

.footer-section.links ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
	
}

.footer-section.links ul li a:hover {
    color: #f39c12;
	
}

.footer-section.social .social-links {
    display: flex;
    gap: 15px;
}

.footer-section.social .social-links a {
    color: white;
    font-size: 24px;
    transition: color 0.3s ease;
}

.footer-section.social .social-links a:hover {
    color: #f39c12;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}
.footer-bottom   padding: 10px 0; text-align: center; font-family: Arial, sans-serif; font-size: 15px; color: white; border-top: 1px solid #e0e0e0; } .footer-bottom p { margin: 5px 0; } .footer-bottom a { color: white; text-decoration: none; margin: 0 5px; } .footer-bottom a:hover { text-decoration: underline; }  


/* Responsive media query code for max width 1024px */
@media screen and (max-width:1024px) {
.recipes-section .recipes-list {
	gap: 60px;
}

.recipes-section .recipes-list .recipes-item .name {
	margin: 12px 0;
	font-size: large;
	font-weight: semibold;
}

.recipes-section .recipes-list .recipes-item .text {
	font-size: medium;
}



.recipes-section .recipes-list .recipes-item {
	width: calc(100% / 3 - 60px);
}

 /* Responsive media query code for max width 900px */
@media screen and (max-width:900px) {

	:root {
		--font-size-m: 1rem;
		--font-size-l: 1.3rem;
		--font-size-xl: 1.5rem;
		--font-size-xxl: 1.8rem;
	}

	body.show-mobile-menu header::before {
		content: ;
		position: fixed;
		left: 0;
		top: 0;
		height: 100%;
		width: 100%;
		backdrop-filter: blur(5px);
		background: rgba(0, 0, 0, 0.2);
	}

	.navbar :where(#menu-close-button, #       menu-open-button) {
		display: block;
		font-size: large;
	}

	.navbar #menu-close-button {
		position: absolute;
		right: 30px;
		top: 30px;
	}

	.navbar #menu-open-button {
		color: white;
	}

	.navbar .nav-menu {
		display: block;
		position: fixed;
		left: -300px;
		top: 0;
		width: 300px;
		height: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		padding-top: 100px;
		background: white;
		
	}
	body.show-mobile-menu .navbar .nav-menu {
		left: 0;
	}

	.navbar .nav-menu .nav-link {
		color: darkcyan;
		display: block;
		margin-top: 17px;
		font-size: var(--font-size-l);
	}

	.hero-section .section-content {
		gap: 50px;
		text-align: center;
		padding: 30px 20px 20px;
		flex-direction: column-reverse;
		justify-content: center;
	   }

	   .hero-section .hero-details :is(.subtitle, .
	   description) {
	
		max-width: 100%;
	
	   }
	
	   .hero-section .hero-details .buttons {
		justify-content: center;
	   }
	
	   .hero-section .hero-image-wrapper {
		max-width: 400px;
		margin-right: 300px;
	   }
	   

	.hero-section .section-content {
	   gap: 10px;
	   text-align: center;
	   padding: 30px 10px 10px;
	   flex-direction: column-reverse;
	   justify-content: center;
	}
	
	.hero-section .hero-details :is(.subtitle,
	description), .about-section .about-details, .contact-section .contact-form {
	
	   max-width: 100%;
	}
	
	.hero-section .hero-image-wrapper {
	   max-width: 270px;
	   margin-right: 0;
	}
	.about-section .section-content {
		gap: 70px;
		flex-direction: column-reverse;
	}
	
	.about-section .about-image-wrapper .about-image {
		width: 100%;
		height: 100%;
		max-width: 250px;
		aspect-ratio: 1;
	}
	
	.recipes-section .recipes-list {
		gap: 30px;
	}
	.recipes-section .recipes-list .recipes-item {
		width: calc(100% / 2 - 30px);
	}
	
	.recipes-section .recipes-list .recipes-item .recipes-image {
		max-width: 200px;
	}
	.contact-section .section-content {
		align-items: center;
		flex-direction: column-reverse;
	}

	/* Responsive media query code for max width 640px */
@media  screen and (max-width: 640px) {
	.recipes-section .recipes-list {
		gap: 60px;
	}

	.recipes-section .recipes-list .recipes-item {
		width: 100%;
	}

	.blog-section .slider-wrapper {
		margin: 0 0 30px;
	}
	
	.blog-section .swiper-slide-button {
		display: none;
	}

	.footer-section .section-content {
		flex-direction: column;
		gap: 20px;
	}