html,body {
    background: black;
   }
 header{
    background-image: url('spidy-design.jpg');
    background-size: cover;
    background-position: center;
    height: 200px;
    color : white ;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
    padding : 20px 40px ;
    display : flex ;
    box-shadow : 0 3px 15px rgba(0, 0, 0, 0.3);
    position : relative;
    top : 0 ;
    z-index : 1000 ;
    align-items : center ;
    justify-content: center;
    font-family : 'Poppins' ,sans-serif ;
  }
 header::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
  }
 header p {
    font-family: 'Georgia', serif ;
    font-size: 1.6em;
    font-style: italic;
    text-align: center;
    margin: 80px auto;
    max-width: 800px;
    color: white;
    line-height: 1.6;
  }
 header p::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #00bcd4, #4a90e2);
    margin: 15px auto 0;
    border-radius: 2px;
  }
 .main-nav {
  width: 100%;
  background: #000; /* solid black background */
  padding: 12px 0;
  box-shadow: 0 6px 18px rgba(0,0,0,0.6);
  position: relative;
  z-index: 100; /* keep above page content */
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;                /* horizontal layout */
  justify-content: center;      /* center items */
  gap: 36px;                    /* spacing between links */
  align-items: center;
}

/* Link base style: white + subtle glow */
.main-nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  padding: 6px 4px;
  position: relative;
  transition: color 0.25s ease, transform 0.25s ease;
  text-shadow:
    0 0 4px rgba(255,255,255,0.6),
    0 0 10px rgba(255,255,255,0.15); /* subtle base glow */
  -webkit-font-smoothing:antialiased;
}

/* underline element (hidden by default, grows on hover) */
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, rgba(255,255,255,0.95), rgba(255,120,120,0.9));
  border-radius: 2px;
  transition: width 0.32s cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 0 14px rgba(255,100,100,0.25);
}

/* hover: stronger glow, slight scale, underline expands */
.main-nav a:hover,
.main-nav a:focus {
  color: #ffffff;
  transform: translateY(-2px) scale(1.03);
  text-shadow:
    0 0 8px rgba(255,255,255,0.9),
    0 0 18px rgba(255,100,100,0.25),
    0 0 40px rgba(255,100,100,0.12);
  outline: none;
}

.main-nav a:hover::after,
.main-nav a:focus::after {
  width: 100%;
}

/* small-screen fallback: wrap and reduce gap */
@media (max-width: 600px) {
  .main-nav ul {
    gap: 16px;
    padding: 0 12px;
    flex-wrap: wrap;
  }
  .main-nav a { font-size: 16px; }
}
 /* ======= Gallery Section ======= */
.gallery-section {
  background: #0a0a0a; /* Deep black background */
  padding: 40px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-title {
  color: rgba(255,255,255,0.1); /* low opacity text in background */
  font-size: 5rem;
  letter-spacing: 6px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 40px;
  position: relative;
  z-index: 0;
  user-select: none;
}

/* Scrollable container */
.gallery-container {
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  padding: 20px 0;
  scrollbar-width: thin;
  scrollbar-color: #555 #111;
}

/* For WebKit browsers */
.gallery-container::-webkit-scrollbar {
  height: 8px;
}
.gallery-container::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 10px;
}
.gallery-container::-webkit-scrollbar-track {
  background: #111;
}

/* Image track styling */
.image-track {
  display: inline-flex;
  gap: 20px;
  padding: 0 20px;
}

/* Each image card */
.image-track img {
  height: 250px;
  border-radius: 15px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(255,255,255,0.05);
  filter: brightness(0.9);
}

/* Hover animation: zoom + glow */
.image-track img:hover {
  transform: scale(1.12);
  box-shadow: 0 0 25px rgba(255,255,255,0.35);
  filter: brightness(1.05);
}

/* Mobile responsiveness */
@media (max-width: 600px) {
  .section-title {
    font-size: 3rem;
    letter-spacing: 3px;
  }
  .image-track img {
    height: 180px;
  }
}
 /* ================== HOME PAGE CSS ================== */

/* 1️⃣ Hero Section */
.hero-section {
  background: url('hero-bg.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.3;
  font-weight: 800;
}

.hero-content h1 span {
  color: #ff4040;
  text-shadow: 0 0 12px rgba(255,64,64,0.8);
}

.hero-content p {
  margin-top: 16px;
  color: #ccc;
  font-size: 1.2rem;
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn, .btn-outline {
  padding: 10px 28px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn {
  background: #ff4040;
  color: white;
  box-shadow: 0 0 10px rgba(255,64,64,0.5);
}

.btn:hover {
  box-shadow: 0 0 25px rgba(255,64,64,0.9);
  transform: scale(1.05);
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: #000;
  transform: scale(1.05);
}

/* 2️⃣ About Section */
.about-section {
  background: #0a0a0a;
  color: white;
  padding: 80px 10%;
  display: flex;
  justify-content: center;
}

.about-container {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1100px;
}

.about-image img {
  width: 300px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(255,255,255,0.1);
}

.about-text h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.about-text span {
  color: #ff4040;
  text-shadow: 0 0 10px rgba(255,64,64,0.6);
}

.about-text p {
  color: #ccc;
  line-height: 1.6;
}

/* 3️⃣ Featured Section */
.featured-section {
  background: #000;
  padding: 70px 5%;
  text-align: center;
}

.section-heading {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #fff;
  position: relative;
}

.section-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #ff4040;
  margin: 12px auto;
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(255,64,64,0.6);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  justify-content: center;
}

.featured-item img {
  width: 100%;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-item img:hover {
  transform: scale(1.08);
  box-shadow: 0 0 25px rgba(255,255,255,0.3);
}

/* 5️⃣ Why Choose Us */
.why-section {
  background: #0a0a0a;
  color: #fff;
  padding: 60px 5%;
  text-align: center;
}

.why-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}

.why-item {
  background: rgba(255,255,255,0.05);
  padding: 20px 30px;
  border-radius: 15px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(255,255,255,0.03);
}

.why-item:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255,255,255,0.15);
}

/* 6️⃣ Footer */
.site-footer {
  background: #000;
  color: #aaa;
  text-align: center;
  padding: 25px 0;
  font-size: 0.95rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 5px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #ff4040;
  text-shadow: 0 0 10px rgba(255,64,64,0.8);
}
 /* ===== COLLECTION SECTION ===== */
#collection {
  background-color: #000;
  padding: 80px 20px;
  text-align: center;
  color: white;
  position: relative;
}

.collection-title {
  font-size: 2.5em;
  font-weight: 700;
  letter-spacing: 2px;
  color: white;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
  margin-bottom: 50px;
}

/* Grid Layout */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  justify-items: center;
  align-items: center;
}

/* Image Style */
.collection-grid img {
  width: 100%;
  max-width: 300px;
  border-radius: 12px;
  transition: all 0.4s ease;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

/* Hover Effect */
.collection-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
}

/* No Stock Message */
.no-stock {
  display: none;
  font-size: 1.2em;
  opacity: 0.2;
  margin-top: 60px;
}

/* ✅ Auto-detect if no images are present */
#collection:has(.collection-grid img) .no-stock {
  display: none;
}

#collection:not(:has(.collection-grid img)) .no-stock {
  display: block;
}
/* ===== ABOUT SECTION ===== */
#about {
  background: radial-gradient(circle at top left, #111 0%, #000 70%);
  color: white;
  padding: 100px 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.about-text {
  flex: 1 1 45%;
  text-align: left;
}

.about-text h2 {
  font-size: 2.8em;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.about-text h3 {
  color: #aaa;
  font-weight: 400;
  font-size: 1.3em;
  margin-bottom: 25px;
}

.about-text p {
  font-size: 1.1em;
  line-height: 1.7;
  color: #ccc;
  margin-bottom: 30px;
}

.about-btn {
  text-decoration: none;
  color: white;
  background: transparent;
  border: 1px solid white;
  padding: 10px 25px;
  border-radius: 25px;
  transition: 0.3s;
}

.about-btn:hover {
  background: white;
  color: black;
  box-shadow: 0 0 15px white;
}

/* Image Side */
.about-image {
  flex: 1 1 45%;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
}

/* ===== FEEDBACK SECTION ===== */
#feedback {
  background-color: #000;
  color: white;
  text-align: center;
  padding: 100px 10%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.feedback-title {
  font-size: 2.3em;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.feedback-subtitle {
  color: #aaa;
  margin-bottom: 40px;
  font-size: 1.1em;
}

.feedback-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 500px;
  margin: 0 auto;
}

.feedback-form input,
.feedback-form textarea {
  width: 100%;
  padding: 12px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 10px;
  resize: none;
  font-size: 1em;
}

.feedback-form input::placeholder,
.feedback-form textarea::placeholder {
  color: #777;
}

.feedback-form button {
  background: transparent;
  color: white;
  border: 1px solid white;
  padding: 10px 25px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s;
}

.feedback-form button:hover {
  background: white;
  color: black;
  box-shadow: 0 0 20px white;
}