/*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: 20px;
	 align-items: center;
	 justify-content: space-between;
 }


 .navbar .nav-logo .logo-text {
	 color: gold;
	 font-size: 900;
	 font-weight: 900;
	 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;
}

 .navbar .search-icon {
	color: white;
	font-size: 20px;
	cursor: pointer;
}

.navbar .search-box {
	position: absolute;
	right: 2rem;
	height: 45px;
	max-width: 555px;
	width: 50%;
	opacity: 0;
	pointer-events: none;
	transition: all 0.2s linear;
	top: 110%;
	border-radius: .5rem;
	overflow: hidden;
	display: flex;
	align-items: center;
}

.navbar.openSearch .search-box {
	opacity: 1;
	pointer-events: auto;
}
.search-box .search-icon {
	position: absolute;
	left: 1px;
	top: 50%;
	color: black;
	transform: translateY(-50%);
	padding: 0 1.5rem;
	 
}
.search-box input {
	height: 100%;
	width: 100%;
	border: none;
	outline: none;
	border-radius: 6px;
	background-color: white;
	padding: 0 15px 0 45px;
	font-size: 1rem;
}


 .navbar .nav-menu .nav-link:hover{
	 color: purple;
	 background: orange;
 }

 .navbar :where(#menu-close-button, #menu-open-button) {
	display: none;
 }

  
/* 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: darkcyan;
	} 

 	/* Style the unordered list */
.smoothies-details ul {
    list-style-type: disc; /* Change the bullet to a square */
    padding-left: 20px; /* Add some left padding for the text */
	 
}

.smoothies-details .no-abullets {
    list-style-type: none; /* Remove bullets entirely */
    padding-left: 0;
}

.smoothies-details ul.custom-bullet {
    list-style-image: url('bullet.png'); /* Use an image as a bullet */
    padding-left: 25px; /* Adjust padding for the image size */
}
.smoothies-details ul li {
    margin-bottom: 5px; /* Add some spacing between list items */
}
		
	
	  .load-more-btn {
		background-color: #007bff;
		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;
	  }
	  .smoothies-details .read-more-btn:active {
		background-color: #bbb;
		color: #fff;
		box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
	}
	}
		   /* Page Title Section */
.sections {
    background-color: #f2f2f2;
    padding: 80px 0;
    text-align: center;
	
}

.sections .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 10px;
}

.sections .pages-title h1 {
    font-size: 48px;
    color: purple;
    margin-bottom: 20px;  
   
 }
.sections .pages-title p {
    font-size: 16px;
    color:purple;
}
 
.sections .pages-title p a {
    color: purple;
    text-decoration: none;
	
}
 

.sections .pages-title p a:hover {
    text-decoration: underline;
	
}
/* Footer section styling */

		/* Footer Styling */
footer {
    background-color: #0693e3 ;
    color: #fff;
    padding: 50px 0 30px;
    font-size: 15px;
    line-height: 2;
    margin-top: 50px; /* 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: 30px;
}

.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: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

 


/* Responsive media query code for max width 768px */
@media (max-width: 768px) {
     
    /* 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;
   transition: left 0.2s ease;
  }

  body.show-mobile-menu .navbar .nav-menu {
   left: 0;
  }

  .navbar .nav-menu .nav-link {
   color: rgb(33, 19, 233);
   font-size: large;
   display: block;
   margin-top: 17px;
   font-size: large;
  }

 
</style>
    </style>
</style>