

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

body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    min-height: 100%;
    font-family: "Facit", Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;
}

/*
=======
Home
=======
*/

/* Banner main for parallax */
.banner_main {
    position: relative;
    height: 100vh; /* Full viewport height */
    overflow: hidden;
}

.slideshowContainer {
    position: fixed; /* Keep it in place */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Push it to the back */
}

.slideshowContainer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.imageSlides {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: -1;
}

.visible {
  opacity: 1;
}

.slideshowArrow {
  font-size: 5em;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: opacity 0.2s ease-in-out;
}

.slideshowArrow:hover {
  opacity: 0.75;
}

#leftArrow {
  position: absolute;
  left: 4%;
  top: 50%;
  transform: translate(-40%, -40%);
}

#rightArrow {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translate(40%, -40%);
}

.slideshowCircles {
  position: absolute;
  bottom: 3%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.circle {
  display: inline-block;
  margin-left: 3px;
  margin-right: 3px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: solid 2px rgba(255, 255, 255, 0.5);
  transition: 1s ease-in-out;
}

.dot {
  background-color: rgba(255, 255, 255, 0.7);
  border: solid 2px rgba(255, 255, 255, 0.5);
}

.main-content {
    flex: 1; 
}


.main a.btn {
  color: #f8e100;
  font-family: "Facit", Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;
  text-transform: uppercase;
  transition: linear 1s;
  letter-spacing: 3px;
  font-size: 1rem;
  cursor: pointer;
  text-align: center; 
  padding: 10px;
  border: solid 2px;
  border-radius: 4px;
  box-shadow: 0px 0px 10px rgb(7 9 5 / 5%);
  background-color: #FD6F76;
  text-decoration: none;
}

.main a:hover.btn {
  color: #40D1F2;
  text-decoration: none;
  background-color: #f8e100;
  border: solid 2px #40D1F2;
}


/*

=========
Clearfix
=========
*/

.group: before,
.group: after {
	content: "";
	display: table;
}
.group: after {
	clear: both;
}
.group {
	clear: both;
	*zoom: 1;
}

/*
==============
Custom Styles
==============
*/

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Full viewport height */
    background-color: #fffef9;
    margin: 0;
}

h2,h3{
	color: #0FAED2;
}

h2 {
	font-size: 24px;
	line-height: 44px;
	color: #0FAED2;
}

h3 {
	font-size: 21px;
}

h4 {
	font-size: 18px;
	color: blue;
	line-height: 25px;
}

h5 {
	color: #385640;
	font-size: 14px;
	font-weight: 400;
	text-transform: uppercase;
}

strong {
	font-weight: 400;
}

.centered {
	text-align:center;
}

p {
    color: #606060;
}

/*
=======
Header
=======
*/

.navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  padding: 3px 20px;
  background: none; /* Remove any background to show the banner */
  z-index: 10; /* Ensure it is above the banner but below other content */
}

.navigation-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.5; /* Default opacity */
    transition: opacity 0.3s ease; /* Smooth opacity transition */
}

.navigation-banner img {
  width: 100%; /* Ensure the banner image fills the width */
  height: 100%; /* Adjusts to the height of the navigation */
  /* object-fit: cover; Ensures proper scaling and cropping */
}

.logo {
  width: 160px;
  height: auto;
  margin: 5px 0px 0px 5px;
  z-index: 2; /* Keeps it above the banner */
}

.primary-nav {
  display: flex;
  flex-direction: row;
  gap: 15px;
  list-style: none;
  font-family: "Facit", Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;
  letter-spacing: 2.0px;
  z-index: 4; /* Keeps it above the banner */
  position: relative; /* Enables z-index to take effect */
  transition: linear 1s;
}


.primary-nav a {
  text-decoration: none;
  background-color:#40D1F2;
  color: #fffef9;
  padding: 10px 15px;
  border-radius: 4px;
  transition: linear 1s;
  z-index: 4; /* Ensures it stays above the banner */
}

.primary-nav a:hover {
  background-color: #f8e100;
    color: #40D1F2;
}

.burger-menu {
  display: none; /* Hidden on larger screens */
  background: none;
  border: none;
  font-size: 2rem;
  color: #f8e100;
  cursor: pointer;
  position: absolute;
  padding: 10px;
  top: 30px;
  right: 15px;
  z-index: 20;
}

.primary-header a:hover {
  background-color: #fdeb01;
  color: #46d2f2;
}


/**************** Gifts for All Section *****************/
#gifts {
    position: relative;
    padding: 50px 20px;
    text-align: center;
    z-index: 2; 
    background-color: #fffef9;
}

.gifts-section {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.9); /* Light background for contrast */
    padding: 50px 20px;
    text-align: center;
}

.gifts-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #0FAED2;
}

.gifts-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 70px;
    justify-content: center;
}

.gifts-grid div {
    flex: 1 1 calc(33.333% - 20px);
    max-width: 300px;
    padding: 15px;
    transition: transform 0.3s ease;
}

.gifts-grid div:hover {
    transform: translateY(-5px);
}

.gifts-grid img {
    border-radius: 8px;
}

.gifts-grid h3 {
    color: #46d2f2;
    margin: 15px 0;
}

.gifts-grid .cta {
    text-decoration: none;
    background-color:#40D1F2;
    padding: 10px 20px;
    display: inline-block;
    margin: 15px;
    box-shadow: 0px 0px 10px rgb(7 9 5 / 5%);
    border-radius: 0px;
    color: #fffef9;
    transition: linear 1s;
    letter-spacing: 3px;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    padding: 15px;
}


.gifts-grid .cta:hover {
    background-color: #f8e100;
    color: #40D1F2;
}
    
 .gifts-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Keep this line */
    background-size: cover;
    background-position: center;
 } 
 
 
 /********************* CATEGORIES Section *********************/

#categories {
    padding: 40px 50px;
    text-align: center;
    height: 100%;
    background-color: #fffef9;
}

#categories h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #0FAED2;
}



/****************** End Categories ********************/

/**************** Most Popular Section *****************/
.most-ordered {
    display:flex;
    flex-direction: column;
    background-color: #fff;
    padding: 30px;
    overflow: hidden;
    position: relative;
}

.most-ordered-banner {
    display:flex;
    flex-direction: row;
    align-items: center;
    padding: 20px;
    margin: 20px;
    animation: slide 10s linear infinite;
}
.most-ordered-banner:hover {
            animation-play-state: paused;
}

.image-holder {
    width: 20%;
    padding: 20px;
    flex-shrink: 0;
    text-align: center;
}

.image-holder p{
    font-family: "Facit", Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;
    font-size: 1rem;
    letter-spacing: 2.0px;
    color: black;
}

@keyframes slide {
            from { transform: translateX(-30%); }
            to { transform: translateX(0); }
        }


/**************** End Most Popular Section *****************/

/****************** Unique Products Section ********************/
.unique-products {
    position: relative;
    overflow: hidden;
}

.carousel.background-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel.background-carousel .carousel-inner {
    width: 100%;
    height: 100%;
    display: flex;
}

.carousel.background-carousel .carousel-item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.unique-banner .info {
    position: relative;
    z-index: 2;
    padding: 20px;
    border-radius: 0px;
    text-align: center;
}

.unique-products {
    padding: 50px 20px;
    background-color: #f7f7f7;
}

.unique-banner {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 50vh;
}

.carousel {
    width: 50%;
    position: relative;
}

.carousel-inner {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 0px;
}

.carousel-item {
    width: 100%;
    height: 100%;
    display: none;
}

.carousel-item.active {
    display: block;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.info {
    width: 50%;
    text-align: center;
}

.info h2 {
    margin-bottom: 10px;
}

.info p {
    color: #666;
    margin-bottom: 20px;
}

.info .cta {
    text-decoration: none;
    background-color:#40D1F2;
    color: #fffef9;
    padding: 10px 20px;
    display: inline-block;
    margin: 15px;
    border-radius: 4px;
    transition: linear 1s;
    letter-spacing: 3px;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    padding: 10px 20px;
}

.info .cta:hover {
    background-color: #f8e100;
    color: #40D1F2;
}

.text-over {
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    width: 50%; 
    max-width: 100%;
}

/****************** End Unique Products Section ********************/

/****************** Start footer ********************/
            
            footer {
              display: flex;
              flex-wrap: wrap;
              background-color:#40D1F2;
              color: #fffef9;
              padding: 70px 40px;
              justify-content: space-between;
              align-items: center;
              font-family: "Facit", Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;
              letter-spacing: 2.0px;
              flex-direction: row;
            }
            
            footer a {
              font-size: 1em; 
              line-height: 1.8; 
              letter-spacing: 1px; 
              text-transform: uppercase;
              text-decoration: none;
              color: #f8e100;
              font-weight: 600;
            }
            
            footer a:hover {
              color: #f8e100;
              opacity: .8;
            }
            
            footer #left-footer {
              flex-wrap: wrap;
              display: flex;
              flex-direction: column;
            }
            
            footer #left-footer ul {
              list-style: none;
              line-height: 1.5;
            }
            
            footer #left-footer ul a:hover {
              color:#f8e100;
            }
            
            #social-media-footer ul {
                display: flex;
                flex-direction: row;
                text-align: center;
                font-size: 25px;
                list-style: none;
            }
            
            #social-media-footer li {
                padding: 0px 20px 10px 0px;
            }
            
            
            .bottom-footer{
            font-family: "Facit", Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;
            letter-spacing: 2.0px;
            background-color: #0FAED2;
            height: 10%;
            width: 100%;
            padding: 15px;
            text-align: center;
            font-size: 12px;
            }
            
/************* End Footer ******************/
 



/*.ribbon {
  --s: 50px; /* the ribbon size */
  --d: 20px; /* the depth */
  --c: 20px; /* the cutout part */
  
 /* padding: 0 calc(var(--s) + var(--d)) var(--d); /* we need some padding so the text doesn't overlap the ribbon part */
  /*background:
    conic-gradient(at left  var(--s) bottom var(--d),
     #0000 25%,#0008 0 37.5%,#0004 0) 0   /50% no-repeat,
    conic-gradient(at right var(--s) bottom var(--d),
     #0004 62.5%,#0008 0 75%,#0000 0) 100%/50% no-repeat;
  clip-path: polygon(0 var(--d), var(--s) var(--d),var(--s) 0,calc(100% - var(--s)) 0,calc(100% - var(--s)) var(--d),100% var(--d),calc(100% - var(--c)) calc(50% + var(--d)/2),100% 100%,calc(100% - var(--s) - var(--d)) 100%,calc(100% - var(--s) - var(--d)) calc(100% - var(--d)),calc(var(--s) + var(--d)) calc(100% - var(--d)),calc(var(--s) + var(--d)) 100%,0 100%,var(--c) calc(50% + var(--d)/2));
  background-color: #46d2f2; /* the main color */
  width: fit-content;
}*/



/*==============
  Media Query
==============*/


/* ============== Mobile ============== */


@media screen and (max-width: 320px) {
    .main a.btn {
        font-size: 2rem;
    }
    
    
    .logo img{
        width: 100px;
        height: auto;
        border-radius: 4px;
    }
    
    .primary-nav {
        display: none; /* Hide the nav */
        padding: 40px 60px 40px 20px;
        flex-direction: column;
        background-color: #40D1F2; /* Optional: Dropdown background */
        position: absolute;
        height:25%;
        top: 100px; /* Adjust to your header height */
        right: 0;
        width: 100%;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 10;
    }

    .primary-nav.show {
        display: flex;
        background-color:#46D2F2;
        height: 25%;
    }

    .burger-menu {
        display: block; 
    }
    
     /*  .imageSlides {
        min-width: 100%;
        height: 100vh;
        max-width: 100%;
      }*/
    

}


@media screen and (min-width: 321px) and (max-width: 767px) {
    
        .slideshowCircles {
        bottom: 3%;
    }
    
     .logo img{
        width: 100px;
        height: auto;
    }
    
    .primary-nav {
        display: none; /* Hide the nav */
        flex-direction: column;
        background-color: #40D1F2; /* Optional: Dropdown background */
        position: absolute;
        padding:40px 60px 40px 20px;
        top: 110px; /* Adjust to your header height */
        right: 0;
        width: 100%;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 10;
    }

    .primary-nav.show {
        display: flex; 
    }

    .burger-menu {
        display: block; 
    }

 /* .imageSlides {
        min-width: 100%;
        height: 100vh;
        max-width: 100%;
      }*/
    
}

/* ============== Tablet ============== */

@media screen and (min-width: 768px) and (max-width: 1025px) {
 
    
    .logo img {
        width: 100px;
        height: auto;
    }
    
    
    .primary-nav {
        display: none; /* Hide the nav */
        flex-direction: column;
        background-color: #40D1F2; /* Optional: Dropdown background */
        position: absolute;
        padding:40px 60px 40px 20px;
        top: 110px; /* Adjust to your header height */
        right: 0;
        width: 100%;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 10;
    }
    
    .primary-nav.show {
        display: flex; 
    }

    .burger-menu {
        display: block; 
    }
    
 
}
 
/*============== Laptop ==============*/

@media screen and (min-width: 1026px) and (max-width: 1400px)  {
    .logo img {
        width: 100px;
        height: auto;
    }

}
 
@media screen and (min-width: 1401px) and (max-width: 1656px) {
     .logo img{
        width: 120px;
        height: auto;
    }
    
}

/*============== Desktop ==============*/

@media screen and (min-width: 1657px) and (max-width: 2143px) {
    
     .logo img{
        width: 120px;
        height: auto;
    }
 
}

@media screen and (min-width: 2144px){
   .logo img{
        width: 120px;
        height: auto;
    }
}


















































