/* Basic reset for styling consistency */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
/* Body styling */
/* add a styling to the body */

/* Header styling */
header {
    width: 100%;
    overflow: hidden;
}

/* Upper Header Styling */
.upper-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background-color: antiquewhite;
  position: relative;
}

/* Logo Container */
.logo-container {
  display: flex;
  align-items: center;
  cursor: pointer;
}

/* Circle Container */
.logo-circle {
  width: 100px;
  height: 100px;
  background-color: #ffffff;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: transform 0.3s ease;
}

.logo-circle:hover {
  transform: scale(1.1); /* Hover effect */
}

/* Logo Image */
.sankofa-logo {
  width: 80%;
  height: auto;
}

/* Logo Text Styling */

.logo-name {
  font-size: 24px;
  font-weight: bold;
  color: #333333;
  letter-spacing: 2px;
  display: flex;
  flex-direction: column; /* Stack vertically */
  align-items: center;    /* Center align the items */
  animation: colorChange 20s infinite;
}

/* Divider Line Beneath "KENTE" */
.divider {
  height: 2px;
  width: 60px; /* Adjust as needed to fit under "KENTE" */
  background-color: #ff5722; /* Adjust color if needed */
  margin: 5px 0; /* Add space above and below the line */
}

/* Color Change Animation */
@keyframes colorChange {
  0%, 100% {
      color: #333333; /* Original color */
  }
  33% {
      color: #ff5722; /* Orange */
  }
  66% {
      color: #ffd700; /* Gold */
  }
  90% {
      color: #0073e6; /* Blue */
  }
}
/* Icons Section */
.header-icons {
  display: flex;
  align-items: center;
  gap: 15px; /* Adjusts spacing between icons */
  position: absolute;
  top: 30px; /* Adjust vertical positioning as needed */
  right: 15px; /* Aligns to the right side of the header */
}

/* Icons Styling */
.header-icon {
  width: 30px; /* Icon size */
  height: 30px;
  cursor: pointer;
  position: relative;
  transition: transform 0.2s ease;
}

.header-icon:hover {
  transform: scale(1.1); /* Enlarge slightly on hover */
}

/* Tooltip Styling */
.icon-link[data-tooltip]:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: -25px; /* Adjust position below the icon */
  background-color: #333;
  color: #fff;
  padding: 5px 8px;
  font-size: 12px;
  border-radius: 5px;
  white-space: nowrap;
  opacity: 0;
  animation: fadeIn 0.3s forwards;
  transform: translateX(-50%);
}

/* Position Tooltip for Each Icon */
.icon-link[data-tooltip="Account"]::after {
  left: 30%; /* Adjust based on icon size */
}
.icon-link[data-tooltip="Cart"]::after {
  left: 50%;
}

/* Hamburger Icon Positioning */
.hamburger {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 20px;
}

.hamburger span {
  background-color: blue;
  height: 3px;
  width: 30px;
}

/* Fade-in animation for tooltip */
@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

/* 
.hamburger {
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
} */
.lower-header {
  position: relative;
  color: white;
  text-align: center;
}

.slideshow-container {
  position: relative;
  width: 100%;
  max-height: 500px; /* Fixed maximum height */
  overflow: hidden;
}

.slide-image {
  display: none;
  width: 100%;
  height: 100%;
  background-size: contain; /* Ensures the whole image is visible */
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 1s ease-in-out;
}

.slide-image.active {
  display: block;
}

.text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
}

.text-overlay h2 {
  font-size: 2em;
  animation: fadeIn 2s ease forwards;
}

.text-overlay .link-text {
  display: block;
  margin-top: 15px;
  font-size: 1.2em;
  color: #ffd700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-overlay .link-text:hover {
  color: #ff8c00;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.3s;
  border-radius: 0 3px 3px 0;
  user-select: none;
  z-index: 5;
}

.prev {
  left: 0;
  border-radius: 3px 0 0 3px;
}

.next {
  right: 0;
  border-radius: 0 3px 3px 0;
}

.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Side Navigation Styling */
.side-nav {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    right: 0;
    background-color: #1a1a1a;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    z-index: 3;
}

.side-nav a {
    padding: 10px 15px;
    text-decoration: none;
    font-size: 1.2em;
    color: #fff;
    display: block;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2em;
    color: #fff;
}

.sub-menu {
    display: none;
    padding-left: 20px;
}

.sub-menu.active {
    display: block;
}


/* Main content styling */
main {
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  color: #000000;
  margin: 0;
  padding: 0;
}

/* Section Styling */
.collections-section {
  padding: 50px 20px;
  background-color: #ffffff;
}

.section-header {
  margin-bottom: 30px;
}

.section-title {
  font-size: 2rem;
  color: #0A1A2F;
}

.section-divider {
  width: 50px;
  height: 3px;
  background-color: orangered; /* Orange */
  margin: 10px auto;
  border: none;
}

/* Grid Styling */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.collection-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

.collection-image {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease-in-out;
}

.collection-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 26, 47, 0.7); /* Dark Blue Overlay */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.collection-title {
  color: #FFA500; /* Orange */
  font-size: 1.5rem;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 2px;
}

/* Hover Effects */
.collection-item:hover .collection-image {
  transform: scale(1.1);
}

.collection-item:hover .collection-hover {
  opacity: 1;
}

/* Section Titles */
.section-title {
    font-size: 2em;
    color: #222;
    margin-bottom: 10px;
    text-align: center;
}

/* Text styling */
.text-content {
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1.1em;
}

/* Responsive styling */
@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }

    .section-title {
        font-size: 1.8em;
    }
}
/* Footer styling */
footer {
  background-color: #0A1A2F;
  color: :white;
}


/* Info Section Styles */
.info_section {
    padding: 60px 0;  
  }
  
  .info_container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 0;
    padding: 0;
  }
  
  /* Column Styles */
  .info_column {
    padding: 20px;
    border-right: solid silver;
  }
  .info_container .info_column:last-child {
    border-right: none;
  }
  
  .info_column h4 {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
    
  }
  .info_column .hub {
    display: block;
    text-align: center;
    align-content: center;
  }
  /* Info Text */
  .info_text {
    line-height: 1.6;
    color: #cccccc;
  }
  
  /* Contact Links */
.contact_link:hover {
  color: #87CEEB;
}
  
.contact_link {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  margin: 8px 0;
  transition: color 0.3s ease;
  font-style: italic;
}

.contact_icon {
  width: 30px;
  height: 30px;
  margin-right: 8px;
}
.contact_icon:hover {
  transform: translateY(-3px);
}
/* Social Links */
.social_links {
  display: flex;
  gap: 3px;
  margin-top: 15px;
  justify-content: center;
}

.social_link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #0A1A2F; 
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s;
  justify-content: center;
}

.social_icon {
  width: 40px;
  height: 40px;
}

.social_link:hover {
  background-color: #0A1A2F;
  transform: translateY(-3px); 
}
/* Subscribe Form */
.subscribe_form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.subscribe_input {
  padding: 12px;
  border: 1px solid #333333;
  background-color: #333333;
  color: #ffffff;
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

.subscribe_input:focus {
  border-color: #FFA500;
  outline: none;
}

.subscribe_button {
  padding: 12px;
  background-color: #FFA500;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.subscribe_button:hover {
  background-color: #ff5722;
}

.subscribe_response {
  margin-top: 10px;
  font-size: 0.9rem;
}
  /* Quick Links */
  .quick_links {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .quick_link {
    display: flex;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .quick_link:hover {
    color: #87CEEB;
  }
  
  .link_bullet {
    width: 8px;
    height: 8px;
    background-color: #ff5722;
    border-radius: 50%;
    margin-right: 10px;
    transition: background-color 0.3s ease;
  }
  
  .quick_link:hover .link_bullet {
    background-color: #87CEEB;
  }
  
  .quick_link.active {
    color: #ff5722;
  }
  
  .quick_link.active .link_bullet {
    background-color: #FFD700;
  }

.custom-hr {
  display: block;
  padding: 0;
  width: 50%; 
  margin: 20px auto; 
  border: 1px solid #ff5722; /* Line color and thickness */
  border-radius: 5px;
}
/* Footer Logo */
.footer-logo {
  display: flex;
  justify-content: center;
  align-content: center;
  margin: 20px auto;
  align-items: center;
  cursor: pointer;
  padding: 10px 0;
}

/* Circle Container */
.logo-circle {
  width: 100px;
  height: 100px;
  background-color: #ffffff;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: transform 0.3s ease;
}

.logo-circle:hover {
  transform: scale(1.1); /* Hover effect */
}

/* Logo Image */
.sankofa-logo {
  width: 80%;
  height: auto;
}

/* Logo Text Styling */
.logo-name {
  font-size: 24px;
  font-weight: bold;
  color: #333333;
  letter-spacing: 2px;
  display: flex;
  flex-direction: column; /* Stack vertically */
  align-items: center;    /* Center align the items */
  animation: colorChange 20s infinite;
}

/* Divider Line Beneath "KENTE" */
.divider {
  height: 2px;
  width: 60px; 
  background-color: #ff5722; 
  margin: 5px 0; 
}

/* Color Change Animation */
@keyframes colorChange {
  0%, 100% {
      color: #333333; /* Original color */
  }
  33% {
      color: #ff5722; /* Orange */
  }
  66% {
      color: #ffd700; /* Gold */
  }
  90% {
      color: #0073e6; /* Blue */
  }
}
.lower_footer {
  text-align: center;
  padding: 10px 0;
  color: #cccccc;
}  
lower_footer p {
  font-size: 0.9em;
  margin: 5px 0;
}
/* Footer link styling */
.lower_footer a {
  color: #87CEEB;
  text-decoration: none;
}

.lower_footer a:hover {
  text-decoration: underline;
  color: #FFD700;
}

/* Scroll-Up Wrapper */
.progress-wrap {
  position: fixed;
  bottom: 20px; /* Distance from the bottom of the viewport */
  right: 20px;  /* Distance from the right of the viewport */
  width: 60px;  /* Adjust size */
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff; /* Background color of the button */
  border-radius: 50%;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 1000;
  opacity: 0; /* Hidden by default */
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

/* Show Scroll Button */
.progress-wrap.active {
  opacity: 1;
  visibility: visible;
}

/* SVG Styling */
.progress-circle {
  transform: rotate(-90deg); /* Rotate for proper progress display */
  fill: none; /* Transparent fill */
  stroke: #ff5722; /* Progress color */
  stroke-width: 6; /* Line thickness */
  stroke-dasharray: 307; /* Circumference of the circle */
  stroke-dashoffset: 307; /* Initial offset (fully unfilled) */
  transition: stroke-dashoffset 0.3s; /* Smooth fill animation */
}

/* Responsive Design */
  @media (max-width: 768px) {
    .info_container {
      grid-template-columns: 1fr;
    }