/* 1. Basic Reset (Removes default spacing) */
body {
    margin: 0;
    font-family: Arial, sans-serif;
  }
  
  /* 2. Hero Section (Top Banner) */
  .hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    
    /* New background image properties */
    background-image: url();
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    /* Optional overlay to improve text readability */
    &::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.3); /* Dark overlay with 30% opacity */
      z-index: 1;
    }
  }
  /* Hero for index.html (main page) */
.hero.index {
  background-image: url("images/Max Dn/Air-Max-DN-1536x864.webp");
}

/* Hero for portal.html */
.hero.portal {
  background-image: url("images/AIR portal/69e6ec6263cfc3999c3590b872a4f166.jpg");
}

/* Add more hero classes for other pages as needed */
.hero.dn {
  background-image: url("images/AIR Dn/AIR+MAX+DNB.avif");
}

.hero.tn {
  background-image: url("images/AIR Plus Tn/13a4910a-a9a6-41ec-b58e-0571eeafeb2f.avif");
}
/* Hero for index.html (main page) */
.hero.sndr {
  background-image: url("images/SNDR/public.avif");
}

/* Hero for portal.html */
.hero.shox {
  background-image: url("images/AIR Shox Tl/AIR+MAX+TL+2.5 Black-Citron.avif");
}

/* Add more hero classes for other pages as needed */
.hero.j4 {
  background-image: url("images/AIR jordans/Air Jordan 11 Retro 'Legend Blue'.avif");
}

.hero.j1 {
  background-image: url("images/J1/WMNS+AIR+JORDAN+1+MM+LOW.avif");
}
/* Hero for index.html (main page) */
.hero.dunk {
  background-image: url("images/af1/air-force-1-vs-dunk.jpg");
}

/* Hero for portal.html */
.hero.adidas {
  background-image: url("images/adidas/Samba_OG_Shoes_Leopard Print.avif");
}
/* Hero for portal.html */
.hero.balenciaga {
  background-image: url("images/balenciaga/all over logo.jpg");
}


/* Add more hero classes for other pages as needed */
.hero.af1 {
  background-image: url("images/af1/air-force-1-vs-dunk.jpg");
}

/* Hero for portal.html */
.hero.nb {
  background-image: url("images/New Balance/9060 white.webp");
}

/* Hero for portal.html */
.hero.un {
  background-image: url("images/balenciaga/all over logo.jpg");
}

/* Hero for portal.html */
.hero.zoom {
  background-image: url("images/balenciaga/all over logo.jpg");
}

  
  .hero h1 {
    font-size: 72px;
    margin: 0;
    color: white;
    position: relative; /* Ensures text appears above overlay */
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Improves readability */
  }
  
  .scroll-indicator {
    position: absolute;
    bottom: 30px;
    font-size: 30px;
    animation: bounce 2s infinite;
    cursor: pointer;
    color: white;
    z-index: 2; /* Ensures indicator appears above overlay */
  }
  /* Add this to your CSS */
.hero-logo {
  position: absolute;
  top: 1px;
  left: 45px;
  z-index: 3;
  height: 180px; /* Adjust as needed */
  width: auto;
}

/* Adjust the existing "All Collections" link positioning */
  /* Add this to your style.css */
.hero a {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%); /* Adjust for exact center */
  color: white;
  text-decoration: none;
  font-size: 10px;
  z-index: 3; /* Higher than the overlay */
  padding: 10px 15px;
  background: rgba(122, 112, 112, 0.5);
  border-radius: 5px;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .hero-logo {
    height: 40px; /* Smaller logo on mobile */
  }
  .hero a {
    left: 70px; /* Adjust for smaller screens */
    font-size: 16px;
    padding: 8px 12px;
  }
}
.hero a:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* For mobile responsiveness */
@media (max-width: 768px) {
  .hero a {
    font-size: 20px;
    padding: 12px 18px;
  }
}
  
  /* 3. Product Grid */
  .products {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 50px;
    flex-wrap: wrap;
  }
  
  .product {
    width: 300px;
    text-align: center;
    border: none;
    padding: 20px;
    transition: all 0.3s;
    background: transparent; /* Ensure no background color */
  }
  
  .product:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  .product img {
    width: 100%;
    height: auto;
  }
  
button {
  background: #1A6FDF;
  color: white;
  border: 2px solid #1A6FDF;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  transition: all 0.3s;
  font-weight: 600;
}

button:hover {
  background: white;
  color: #1A6FDF;
}
  
  
  
  button i {
    font-size: 18px;
  }
.collections {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Creates 2 equal columns */
  gap: 30px;
  padding: 40px;
  max-width: 1400px; /* Optional: prevents grid from getting too wide */
  margin: 0 auto; /* Centers the grid */
}
  
  .collection-card {
    width: 100%;
    text-align: center;
    text-decoration: none;
    color: black;
    transition: all 0.3s;
    overflow: hidden;
  }
  
  .collection-card img {
    width: 100%;
    height: 280px;
    border-radius: 8px;
    transition: transform 0.3s;
    object-fit: cover;
  }

  /* Add a subtle shadow effect */
.collection-card:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

  /* Add these additional styles */
.collection-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.collection-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}
.collection-card h3 {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: white;
  z-index: 2;
}
.collection-card:hover h3 {
  color: #111; /* Slightly darker on hover */
}

.collection-card:hover img {
  transform: scale(1.03); /* More subtle zoom */
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
  @media (max-width: 768px) {
    .collections {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    padding: 15px;
    gap: 12px;
  }
    .collection-card img {
    height: 220px;
  }
  }
/* Keep your existing styles and add these: */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
  40% {transform: translateY(-20px);}
  60% {transform: translateY(-10px);}
}

/* Collections Section */
.collections-section {
  padding: 60px 20px;
  background: white;
}

.collections-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 36px;
}
/* Add this to your CSS for smooth scrolling */
html {
  scroll-behavior: smooth;
}
/* Add to style.css */
img {
  max-width: 100%;
  height: auto;
  display: block;
}
/* Navigation Bar Styles */
.navbar {
  background-color: #fff;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  height: 70px; /* Increased height to accommodate larger text */
  transition: transform 0.3s ease-in-out 0.1s;
}

.navbar.hidden {
  transform: translateY(-100%);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0rem 2rem;
  max-width: 1200px;
  height: 100%; /* Fixed height for the navbar */
}

.navbar-logo img:hover {
  transform: scale(0.95); /* Slight scale down on hover */
}

.navbar-logo img {
  height: 100px;
  width: auto;
  transition: all 0.3s; /* Smooth transition for hover effects */
}

.navbar-logo {
  display: flex;
  align-items: center;
  height: 100%;
  box-sizing: border-box;
}

.navbar-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-menu li {
  margin-left: 2rem; /* Increased spacing between menu items */
}

.navbar-menu a {
  color: #333;
  text-decoration: none;
  font-weight: 600; /* Made text bolder */
  transition: color 0.3s;
  font-size: 18px; /* Increased from 14px to 18px */
  padding: 8px 0; /* Increased vertical padding */
}

.navbar-menu a:hover {
  color: #1A6FDF; /* WhatsApp green */
}

.navbar-toggle {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: #333;
  transition: all 0.3s ease;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .navbar {
    height: 60px; /* Slightly taller navbar on mobile */
  }

  .navbar-logo img {
    height: 50px; /* Slightly smaller for mobile */
  }

  .navbar-container {
    height: 60px;
    padding: 0 1.5rem; /* Increased side padding */
  }
  
  .navbar-menu {
    position: fixed;
    left: -100%;
    top: 60px; /* Adjusted to match navbar height */
    flex-direction: column;
    background-color: #fff;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 20px 0; /* Added padding for mobile menu */
  }

  .navbar-menu.active {
    left: 0;
  }

  .navbar-menu li {
    margin: 1.5rem 0; /* Increased spacing between mobile menu items */
  }

  .navbar-menu a {
    font-size: 24px; /* Even larger text on mobile for better touch targets */
    padding: 14px 0; /* More padding for touch-friendly targets */
  }

  .navbar-toggle {
    padding: 12px; /* Larger click area */
    display: block;
  }

  .navbar-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .navbar-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .logo-container {
    margin-top: 70px; /* Increased margin to account for taller navbar */
  }

  .logo-container img {
    height: 120px;
  }

  .navbar-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

.contact-section {
  padding: 100px 20px 60px;
  text-align: center;
  background-color: #f9f9f9;
}

.contact-section h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.contact-section p {
  font-size: 18px;
  color: #6d6d6d;
  margin-bottom: 40px;
}

.contact-options {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.contact-box {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  max-width: 300px;
  flex: 1;
}

.contact-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.contact-box p {
  font-size: 16px;
  color: #444;
  margin-bottom: 15px;
}

.contact-box a {
  display: inline-block;
  padding: 10px 15px;
  background-color: #1A6FDF;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.contact-box a:hover {
  background-color: #1A6FDF;
}

@media (max-width: 768px) {
  .contact-options {
    flex-direction: column;
    align-items: center;
  }
}

/* FAQ Section - Clean Version */
.faq-section {
  padding: 80px 20px;
  background-color: #ffffff;
  text-align: center;
}

.faq-section h1 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #111;
}

.faq-section p {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
}

.faq-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-box {
  background: #fafafa;
  padding: 25px;
  border-radius: 16px;
  width: 280px;
  text-align: left;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-box h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #111;
  font-weight: 600;
}

.faq-item {
  margin-bottom: 8px;
}

.faq-question {
  all: unset;
  display: block;
  width: 100%;
  text-align: left;
  font-size: 15px;
  font-weight: 500;
  padding: 4px 0;
  cursor: pointer;
  color: #333;
  position: relative;
  background: none;
  border: none;
  outline: none;
  transition: color 0.3s;
}

a.faq-question {
  text-decoration: none;
  color: #333; /* match other questions */
  display: block;
  font-size: 15px;
  font-weight: 500;
  padding: 4px 0;
}


.faq-question:focus,
.faq-question:active {
  outline: none;
  box-shadow: none;
  background: none;
}

.faq-answer {
  display: none;
  font-size: 12px;
   font-style: italic; 
  color: #555;
  padding: 8px 0 0 0;
  line-height: 1.5;
}

.faq-answer.open {
  display: block;
}

.faq-box a {
  color: #000000;
  text-decoration: none;
  font-size: 14px;
  display: inline-block;
  margin-top: 10px;
}

.faq-box a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .faq-columns {
    flex-direction: column;
    align-items: center;
  }
  
  .faq-box {
    width: 100%;
    max-width: 400px;
  }
}

.scroll-container {
  max-width: 90vw;          /* wider container */
  overflow-x: auto;
  margin: 0 auto;           /* centers it horizontally */
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #fff;
}
th, td {
  border: 1px solid #ddd;
  padding: 14px 20px;       /* increased padding */
  text-align: center;
  white-space: nowrap;
  font-size: 16px;          /* increased font size */
}
.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px; /* space below navbar */
  margin-bottom: 20px; /* space above collections */
}

.logo-container img {
  height: 180px;
  width: auto;
  max-width: 90%;
  transition: all 0.3s;
}

/* Simple Bouncing Scroll Prompt */
.scroll-prompt {
  position: absolute;
  bottom: 75px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  z-index: 3;
  text-align: center;
}

.scroll-prompt p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  animation: bounce 1.5s infinite;
}

.scroll-prompt i {
  font-size: 14px;
}

/* Keep your existing bounce animation */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}




/* Enhanced Bounce Animation */
@keyframes strong-bounce {
  0%, 20%, 50%, 80%, 100% { 
    transform: translateY(0); 
    box-shadow: 0 0 0 rgba(26, 111, 223, 0);
  }
  40% { 
    transform: translateY(-25px); 
    box-shadow: 0 15px 30px rgba(26, 111, 223, 0.6);
  }
  60% { 
    transform: translateY(-12px); 
  }
}


/* Make sure products have position relative */
.product {
  position: relative;
}





/* Fix for homepage highlight issue - ONLY hide on non-product pages */
body:not(.product-page) .highlight-product,
body:not(.product-page) .highlight-product::after {
  display: none !important;
  animation: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

/* Make sure the highlight works on product pages */
.product-page .highlight-product {
  animation: strong-bounce 0.8s ease 3 !important;
  border: 3px solid #1A6FDF !important;
  border-radius: 12px !important;
  position: relative;
  z-index: 100;
  background-color: rgba(26, 111, 223, 0.05) !important;
}

.product-page .highlight-product::after {
  content: "🛒 ORDERED PRODUCT" !important;
  position: absolute;
  top: -18px;
  right: -12px;
  background: #1A6FDF;
  color: white;
  padding: 6px 12px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: bold;
  z-index: 101;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}





@media (max-width: 768px) {
  .products {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 per row */
    gap: 15px;
    padding: 20px;
  }

  .product {
    width: 100%; /* override fixed 300px */
    padding: 10px;
  }

  /* FIXED Hero Section for Mobile - OVERRIDES ALL PREVIOUS STYLES */
  .hero {
    height: 85vh !important; /* Reduced from 100vh to fit screen better */
    padding-top: 70px !important; /* Account for navbar */
    justify-content: space-between !important; /* Better spacing of elements */
  }
  
  .hero h1 {
    font-size: 42px !important; /* Smaller text on mobile */
    margin-top: auto !important; /* Push to center */
    padding: 0 15px !important;
    text-align: center !important;
  }
  
  /* This fixes the scroll prompt positioning */
  .scroll-prompt {
    position: absolute !important;
    bottom: 30px !important; /* Ensure it's positioned properly */
    margin-top: auto !important; /* Push to bottom */
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
  
  .hero a {
    top: 20px !important; /* Adjust position of "All Collections" link */
    font-size: 14px !important;
    padding: 8px 12px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
  
  /* Remove the old scroll indicator styles */
  .scroll-indicator {
    display: none !important;
  }
  
  /* Override the conflicting hero logo styles */
  .hero-logo {
    height: 40px !important; /* Smaller logo on mobile */
    top: 10px !important;
    left: 20px !important;
  }
}

/* Additional improvements for very small screens */
@media (max-width: 480px) {
  .hero {
    height: 80vh !important; /* Even shorter on very small phones */
  }
  
  .hero h1 {
    font-size: 36px !important; /* Smaller heading text */
  }
  
  .scroll-prompt {
    bottom: 20px !important; /* Move it up a bit more on very small screens */
  }
  
  .hero a {
    top: 15px !important;
    font-size: 12px !important;
  }
}