:root {
        --border: #111;
        --muted: #666;
        --bg: #ffffff;
      }

      * {
        box-sizing: border-box;
        
        padding: 0;
      }

      body {
        font-family: "inter", sans-serif;
        background: var(--bg);
        color: #111;
      }

      a {
        color: inherit;
        text-decoration: none;
      }

      /* ================= HEADER ================= */
      header {
        border-bottom: 2px solid var(--border);
      }

      .top-banner {
        height: 200px;
        background: linear-gradient(90deg, #ddd, #eee);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: "Playfair Display", serif;
        font-size: 48px;
        letter-spacing: 4px;
        font-style: italic;
      }
      .top-banner img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        display: block;
      }

      .nav-bar {
        border-top: 1px solid var(--border);
        padding: 10px 20px;
        font-size: 14px;
        text-transform: uppercase;
        display: flex;
        gap: 20px;
        justify-content: center;
      }

      
      /* ================= HERO ================= */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

/* BLURRED BACKGROUND IMAGE */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/imgs/Nagato.Yuki.full.3940373.webp"  );
  background-size: cover;
  background-position: center;
  filter: blur(6px);
  transform: scale(1.05); /* prevents blur edges */
  z-index: 0;
}

/* DARK OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.253);
  z-index: 1;
}

/* CONTENT WRAPPER */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
}

/* LEFT TITLE — 1/3 FROM LEFT */
.hero-left {
  position: absolute;
  left: 33%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.hero-left h1 {
  display: flex;
  flex-direction: column;
  gap: 0.3em;
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 800;
  font-style: italic;
  color: white;
  text-shadow: 0 6px 20px rgba(0,0,0,0.7);
}

/* RIGHT TAGS — 1/3 FROM RIGHT */
.hero-right {
  position: absolute;
  right: 33%;
  top: 50%;
  transform: translate(50%, -50%);
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  align-items: center;
}

/* SHOP / FUN TAGS */
.hero-main {
  display: flex;
  flex-direction: column;
  align-items: center; /* centers SHOP over merch */
  gap: 12px;
}

.hero-sub {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 20px;
  justify-content: center;
}

.hero-main-tag {
  font-size: 40px;
  font-weight: 700;
  font-style: italic;
  color: white;
  text-decoration: none;
  position:relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.hero-sub-tag {
  font-size: 20px;
  font-weight: 700;
  font-style: italic;
  color: white;
  text-decoration: none;
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero-tag:hover {
  transform: translateX(-6px);
  opacity: 0.85;
}



/* TAGLINE */
.hero-tagline {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: clamp(1rem, 2vw, 1.6rem);
  font-weight: 700;
  color: #ffd400;
  letter-spacing: 1px;
  text-shadow: 0 4px 12px rgba(0,0,0,0.8);
}


/*================= MOBILE HERO ================= */
@media (max-width: 768px) {

  .hero-left,
  .hero-right {
    position: static;
    transform: none;
    text-align: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
  }

  .hero-left h1 {
    font-size: 3rem;
  }

  .hero-right {
    align-items: center;
  }

  .hero-tagline {
    position: static;
    transform: none;
    margin-top: 2rem;
    font-size: 1.1rem;
  }
}
/*
/* ================= CATEGORIES ================= */

/* CATEGORIES */
.categories {
  position: relative;
  min-height: 100vh;
  padding: 5rem 2rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Blurred background */
.categories-bg {
  position: absolute;
  inset: 0;
  background-image: url("imgs/yukiblue.webp"  );
  background-size: cover;
  background-position: center;
  filter: blur(6px);
  transform: scale(1.05);
  z-index: 0;
}

/* Dark overlay */
.categories-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.253);
  z-index: 1;
}

/* Grid layout */
.categories-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 3rem;
}

/* Individual cards */
.category-card {
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 1.5rem 3rem;
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 800;
  font-style: italic;

  color: white;
  text-decoration: none;

  border: 3px solid white;
  background: rgba(0, 0, 0, 0.08);
  transform: skewX(-12deg);
  transition: transform 0.25s ease, background 0.25s ease;
}

/* Un-skew text */
.category-card::before {
  content: attr(data-text);
}

/* Hover effect */
.category-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: skewX(-12deg) translateY(-6px);
}
/*MOBILE CATEGORIES*/
@media (max-width: 768px) {

  .categories {
    padding: 3rem 1.5rem;
  }

  .categories-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .category-card {
    padding: 1.8rem 2rem;
    font-size: 1.4rem;
  }
}
/*================= END MOBILE CATEGORIES ================= */
/*================= END CATEGORIES ================= */
/*================= PRODUCT LINEUP ================= */

  .products {
  padding-left: 6rem;
  padding-right: 6rem;
  background: var(--bg);

  }

  .section-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 4rem;
  font-style: italic;
  }

  /* Grid */
  .product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
  }

  .homepagegear-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
  }

  .homepageguide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
  }

  /* Card */
  .product-card {
    background: var(--bg);
    border-color: var(--border);
    border-radius: 12px;
    border-style: solid;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  }

  /* Image */
  .product-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    
  }

  .product-image img {
    width: 100%;
    height: 135%;
    object-fit: cover;
    transition: transform 0.3s ease;
    object-position: center;
  
    
  }

  .product-card:hover img {
    transform: scale(1.08);
  }

  /* Info */
  .product-info {
    padding: 1.8rem;
  }

  .product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }

  .product-info p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
  }

  /* Button */
  .product-btn {
    display: inline-block;
    padding: 0.7rem 1.6rem;
    border: 2px solid var(--border);
    text-decoration: none;
    font-weight: 700;
    font-style: italic;
    transition: background 0.25s ease, color 0.25s ease;
  }

  

  .product-btn:hover {
    background: white;
    color: black;
  }
  /* MOBILE PRODUCT LINEUP */
  @media (max-width: 768px) {

    .products {
      padding: 4rem 1.5rem;
    }

    .homepageproduct-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .product-image {
      height: 240px;
    }
}




/*================= END MOBILE PRODUCT LINEUP ================= */
/*================= END PRODUCT LINEUP ================= */
/*================= WHY TRUST US ================= */

.whytrustus {
  padding: 2rem 1.5rem;
  background: var(--bg);
  text-align: center;
}

.whytrustus-card {
  background: var(--bg);
  padding: 2rem;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-left: 15%;
  margin-right: 15%;
}

      /* ================= TESTIMONIALS ================= */

.testimonials {
  padding: 2rem 1.5rem;
  background: var(--bg);
  text-align: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
 background: var(--bg);
    border-color: var(--border);
    border-radius: 12px;
    border-style: solid;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    padding: 2rem;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
}

.testimonial-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.testimonial-card h4 {
  font-size: 1.5rem;
  font-weight: 600;
}

/*================= EMAIL CAPTURE ================= */
.email-capture {
  padding: 4rem 1.5rem;
  background: rgb(229, 229, 229);
  display: flex;
  justify-content: center;
}

.email-box {
  max-width: 500px;
  width: 100%;
  background: var(--bg);
  padding: 2.5rem;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.email-box h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.email-box p {
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.email-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.email-form input {
  flex: 1;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 2px solid var(--border);
  font-size: 1rem;
  outline: none;
}

.email-form input::placeholder {
  color: #888;
 

}

.email-form button {
  padding: 0.9rem 1.4rem;
  border-radius: 12px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  background: #ff4ecd;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.email-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 78, 205, 0.4);
}
.email-note {
  display: block;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: #9a9ab0;
}
/*================= END EMAIL CAPTURE ================= */
/* ================= FOOTER ================= */
.footer {
  padding: 2rem 1.5rem;
  text-align: center;
  
  color: var(--muted);
}
.footer a {
  margin: 0 1rem;
  color: var(--muted);
  text-decoration: none;
} 