/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
  }
  
  body {
    background: #f7f7f7;
    line-height: 1.6;
    font-size: 16px;
    color: #333;
  }




.out-of-stock-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
  color: white; /* Blue color */
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2; /* Ensure it sits above the product image */
  text-transform: uppercase; /* Optional: Makes the text uppercase */
  font-weight: bolder; /* Make text bold */
}


.product-card {
  position: relative;
  border: 1px solid #ddd;
  text-align: center;
  border-radius: 10px;
}
  
  /* Utility Classes */
  .container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 10px;
  }
  
  /* Header Styles */
  .site-header {
    background: #fff;
    border-bottom: 1px solid #ddd;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
  }
  
  .site-nav {
    display: flex;
    align-items: center;
    justify-content:space-between;
    padding: 20px;
  }
  
  .site-nav ul {
    list-style-type: none;
    display: flex;
    gap: 45px;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
  
  
  }
  
  
  .site-nav a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .site-nav a:hover {
    color: #007bff;
  }
  
  .logo {
    display: flex;
    align-items: center;
    border: seashell;
    display: none;
  }
  
  .logo img {
    height: 50px;
  }
  .main-content {
    padding-top: 20px; /* Offset for fixed header */
  }
  
  /* Section Styles */
  .home-section {
    background: #fff;
    padding: 60px 0;
    margin-top: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  
  .content-section {
    padding: 60px 0;
  }
  
  /* Typography */
  h2, h3, h4, h5, h6 {
    color: #333;
    margin-bottom: 20px;
    font-size: 18px;
    text-align: center;
  }
  h1{
    text-align: left;
    color: #333;
    margin-bottom: 20px;
    font-size: 18px;
  }

  
  .lead {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }
  
/* Monetization Info Styles */
.monetization-info {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 5px;
  margin-top: 80px;

}

.money-image{
  max-width: 30%;
  height: 30%;
}

.info-text {
  max-width: 600px;
  text-align: left;

}
/* Existing Button and Footer Styles */

/* Responsive Styles */
@media (max-width: 768px) {


  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    margin-right: 200px;

  }

  .site-nav li {
    margin-bottom: 10px;
  }

  .monetization-info {
  font-size: 16px;
  }

  .overlay-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    height: 100vh;
    background-color: rgba(235, 235, 235, 0.96); /* semi-transparent black background */

    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1001; /* above other content */
    margin-top: 75px;
}

.overlay-menu a {
  display: block;
  padding: 10px;
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-size: 20px;
  text-align: left;
}



}
  /* Buttons */

  @keyframes flashing {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
  }
  


  .btn {
    margin-top: 20px;
    display: inline-block;
    background: #007bff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    animation: flashing 1s infinite;
  }

  

.overlay-menu ul {
    list-style-type: none;
    text-align: center;
}




.hamburger {
  display: none;
  font-size: 30px;
  cursor: pointer;
}

/* Exit Icon Style */
.exit {
  font-size: 10px;
  cursor: pointer;
  color: rgb(0, 0, 0);
  position: absolute;
  top: 20px;
  left:20px;
}


@media (max-width: 768px) {
  .container {
    padding: 0 20px;}
  
  

    .money-image{
      max-width: 40%;
      height: 50%;
      margin-top: 100px;
      overflow: hidden;
    }

  
  }



/* Hide the menu (ul) on mobile */
@media (max-width: 768px) {
  .site-nav ul {
    display: none;
  }

  .hamburger {
    display: block;
  }
}

/* Exit Icon Style */
.exit {
  display: none;
  font-size: 30px;
  cursor: pointer;
}



  .events-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    padding: 1rem;
  }
  
  .event-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  .event-image:hover {
    transform: scale(1.05);
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .events-gallery {
      grid-template-columns: 1fr;
    }
  }
/* Contact Section Styles */
.contact-section {
    background: #FFFFFF;
    padding: 4rem 0;
    text-align: center;
  }
  
  .contact-section h2 {
    color: #333;
    margin-bottom: 2rem;
    font-size: 2rem;
  }
  
  .contact-section .lead {
    margin-bottom: 2rem;
    color: #666;
  }
  
  .contact-details {
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
  }
  
  .contact-method h3 {
    margin-bottom: 0.5rem;
  }
  
  .social-media {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .social-media a {
    font-size: 2rem;
    margin: 0 10px;
    color: #333;
    transition: color 0.3s ease;
  }
  
  .social-media a:hover {
    color: #007bff;
  }
  
  .contact-form {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
  }
  
  .contact-form button {
    width: 100%;
    padding: 15px;
    margin-top: 10px;
    border: none;
    border-radius: 4px;
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
  }
  
  .contact-form button:hover {
    background-color: #0056b3;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .contact-details {
      grid-template-columns: 1fr;
    }
  
    .contact-method, .social-media {
      margin-bottom: 1rem;
    }
  
    .contact-form {
      width: 90%;
    }
  }

  .instructions-section {
  background-color: #4891ff; /* A subtle blue gradient background, similar to Facebook's color scheme */
  padding: 5rem 1rem;
  text-align: center;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; /* Font similar to Facebook's */
}

.instructions-section h2 {
  color: #1C1E21; /* Facebook's primary text color */
  margin-bottom: 3rem;
  font-size: 2.5rem;
  font-weight: 700; /* Heavier font weight for the title */
}

.instruction-list {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  text-align: center; /* Center align to keep consistent with modern design */
}

.instruction-list li {
  counter-increment: step-counter;
  margin-bottom: 2.5rem;
  background-color: #fff; /* Background for list items */
  border-radius: 10px; /* Rounded corners for list items */
  padding: 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.instruction-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 50%;
  transform: translateX(-50%); /* Center horizontally */
  top: -30px; /* Position above the list item */
  background-color: #1877f2; /* Facebook's button color */
  color: #fff;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff; /* Make it stand out against the background */
}

.instruction-list h3 {
  font-size: 1.5rem;
  color: #1877f2; /* Facebook's button color */
  margin-bottom: 1rem;
}

.instruction-list p {
  font-size: 1rem;
  color: #4b4f56; /* A softer color for readability */
  line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .instructions-section {
    padding: 3rem 1rem;
  }

  .instruction-list li {
    padding: 2rem 1rem;
  }

  .instruction-list li::before {
    top: -20px;
    width: 2rem;
    height: 2rem;
  }
}

 
  
  .about-section {
    background-color: #ffffff;
    padding: 5rem 0;
    text-align: center;
    color: #444;
  }
  
  .about-section h2 {
    font-size: 2.8rem;
    color: #222;
    margin-bottom: 3rem;
  }
  
  .about-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem;
    align-items: center;
  }
  
  .about-text {
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.8;
    padding: 0 1.5rem;
  }
  
  .about-image {
    text-align: center;
    padding: 0 1.5rem;
  }
  
  .about-image img {
    image-resolution: 10px;
    width: 100%;
    max-width: 400px;
    height: auto;
  }
  
  
  /* Responsive adjustments */
  @media (max-width: 992px) {
    .about-content {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .about-text, .about-image {
      padding: 0;
    }
  
    .about-image img {
      max-width: 80%;
    }
  }
  
  @media (max-width: 768px) {
    .about-section h2 {
      font-size: 2.2rem;
    }
  
    .about-image img {
      max-width: 60%;
    }
  }
  
  @media (max-width: 480px) {
    .about-section {
      padding: 4rem 0;
    }
  
    .about-section h2 {
      font-size: 1.8rem;
      margin-bottom: 2rem;
    }
  
    .about-text {
      font-size: 1rem;
    }
  }

.testimonial-section {
  text-align: center;
  padding: 20px;

}

.testimonial-container {
  width: 100%;
  overflow: hidden;
  
}

.testimonial-slide {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;}
  

.testimonial {
  width: 45%; /* This works well for larger screens */
  margin: 10px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 15px;
  background-color: #ffffff;;
  border-radius: 10px;
  margin-top: 70px;

}

.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 10px;
  border: 7px solid;
  background: #007bff;
  margin-top: -50px;
  border-color: #ffffff;;
}

.name-tab {
  font-weight: bold;
  margin-bottom: 5px;
}

.testimonial-nav {
  margin-top: 20px;
}

.hidden {
  display: none;
}

/* Responsive styles for mobile devices */
@media screen and (max-width: 768px) {
  .testimonial {
    width: 100%; /* Full width for smaller screens */
    margin: 10px 0; /* Adjust margin for better spacing */
    border-radius: 10px;
    margin-top: 70px;
  
    
      
  }

  .testimonial-img {
    width: 60px; /* Slightly smaller images for mobile */
    height: 60px;
  }

  .testimonial-slide {
    display: block; /* Stack testimonials on top of each other */
    display: grid;
      grid-template-columns: repeat(2, 1fr);
      border-radius: 10px;
      gap: 10px;
  }
  .hidden {
    display: none;
  }
}

/* Additional styling as needed */


.payment-methods {
  text-align: center;
}

.icons {
  font-size: 24px; /* Adjust the size as needed */
}

.icons i {
  margin: 0 10px;
}

/* Styles for the promotion section */
.promo-section {
  padding: 20px;
  justify-content: center;
  margin-top: 20px;
}

/* Title styling */
.platforms-title {
  color: #333;
  margin-bottom: 50px;
}

/* Facebook account section styling */
.facebook-account {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); /* Responsive grid layout */
  gap: 20px; /* Spacing between Facebook plugins */
  justify-content: center; /* Center the grid items */
  padding: 20px;
}

/* Individual Facebook page plugin styling */
.fb-page {
  border-radius: 10px; /* Rounded corners */
  overflow: hidden; /* Ensures no content spills out */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
  max-width: 100%; /* Ensure it doesn't overflow its container */

}
.packages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px; /* Space between cards */
  justify-content: center; /* Center grid items */
  padding: 20px; /* Padding inside the grid */
}

.package-card {
  background-color: #ffffff; /* White background for each card */
  text-align: center;
  justify-content: center;
  border: 1px solid #ddd; /* Border for the card */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  padding: 20px; /* Padding inside each card */
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* Smooth transition for hover effects */

}

.package-card img {
  width: 30%; /* Full width images */
  height: auto; /* Maintain aspect ratio */
  border-radius: 10px; /* Rounded corners for the image */
  margin-bottom: 15px; /* Space between the image and the text */

}

.package-card h2 {
  color: #333; /* Dark text for readability */
  font-size: 1.2rem; /* Medium size font for the title */
  margin-bottom: 10px; /* Space between the title and the description */

}

.package-card p {
  color: #666; /* Slightly lighter text for the description */
  font-size: 1rem; /* Standard font size for the description */

}

.package-card button {
  background-color: #007bff; /* Primary color for the button */
  color: white; /* White text for the button */
  border: none; /* Remove default border */
  padding: 10px 15px; /* Padding inside the button */
  border-radius: 5px; /* Rounded corners for the button */
  cursor: pointer; /* Cursor change to indicate clickability */
  transition: background-color 0.3s ease; /* Transition for hover effect */

}

.package-card button:hover {
  background-color: #0056b3; /* Darker shade on hover */
}

/* Hover effects for the card */
.package-card:hover {
  transform: translateY(-5px); /* Slight lift */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Enhanced shadow */
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .packages {
    grid-template-columns: repeat(1, 1fr);
  }
}



/* Responsive Design */
@media (max-width: 992px) {
  .facebook-account{
      grid-template-columns: repeat(2, 1fr);
  }
}


footer{
  text-align: center;
  font-size: small;
}



.cart-icon-container {
  position: relative;
  cursor: pointer;
}

#cart-count {
  position: absolute;
  top: -5px;
  right: -10px;
  background-color:#1877f2; /* Facebook's button color */

  color: white;
  border-radius: 50%;
  padding: 2px 5px;
  font-size: 0.75rem;
}
button{
  background-color:#1877f2;
  color: #f3f3f3;
  padding: 10px;
  border-radius: 8px;
  margin-top: 10px;
  font-size: 0.5rem;
}


/* Product Section Styles */
.products-section {
  text-align: center;
}

.products-grid {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
  border-radius: 10px;
}
.carousel {
  position: relative;
}


.product-image {
  width: 250px; /* Set a fixed width */
  height: 300px; /* Set a fixed height */
  object-fit: cover; /* This helps to maintain aspect ratio within the set dimensions */
  margin: auto;
  display: block;
  border-radius: 10px;
  border: 1px solid #ddd;
}


.product-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.product-price {
  font-size: 16px;
  color: #333;
  margin-bottom: 15px;
}

.product-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.quantity-selector {
  margin-bottom: 20px;
}

.quantity-selector input {
  width: 60px;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

button {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 16px;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #007bff;
}

button.prev, button.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: rgb(255, 255, 255);
  border: none;
  cursor: pointer;
  padding: 10px;
}

button.prev {
  left: 10px;
}

button.next {
  right: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on medium devices */
  }

  .product-image {
    width: 170px; /* Full width on smaller screens */
    height: 200px; /* Adjust height automatically */
  }

  .monetization-info{
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
  }

  .money-image{
    margin-top: -50px;

  

  }
  .logo img {
    height: 40px;
  }


}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 2fr; /* 1 column on small devices */
  }
}

#cart-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%; /* Adjust as per your preference */
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  overflow-y: auto;
  display: none; /* Hidden by default */
  padding: 20px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;

  width: 80%;
  height: 100vh;
  background-color: rgba(235, 235, 235, 0.96); /* semi-transparent black background */
  margin-top: 75px;


}

.close-cart {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 20px;
  cursor: pointer;
  background: none;
  border: none;
  font-weight: bold;
  color: #000000;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 0.01px solid #000000;
  padding: 10px 0;
}

.cart-item .remove-item {
  background-color: #ff6a6a;
  color: white;
  padding: 5px 10px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-size: 0.2em;
}

.cart-item .remove-item:hover {
  background-color: #e60000;
}

.cart-total {
  font-size: 1.2em;
  font-weight: bold;
  text-align: right;
  margin-top: 20px;
}

.checkout-button {
  display: block;
  width: 100%;
  background-color: #007bff;
  color: white;
  padding: 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
  text-transform: uppercase;
}

.checkout-button:hover {
  background-color: #3f4eae;
}

@media (max-width: 480px) {
  #cart-overlay {
      width: 100%;
  }
}

/* Add additional styles as needed */

.cart-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.cart-item-image {
  width: 50px; /* Adjust size as needed */
  height: 50px;
  object-fit: cover;
  margin-right: 10px;
  border-radius: 4px;
}

.out-of-stock-overlay {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .out-of-stock-overlay {
      font-size: 18px; /* Slightly smaller font size for smaller screens */
      padding: 5px; /* Adjust padding to fit smaller screens better */
  }
}

.size-selection {
  margin-top: 10px;
}

.size-selection label {
  font-weight: bold;
  margin-right: 10px;
}

.size-selection select {
  padding: 5px;
  font-size: 16px;
}

