@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;700&display=swap');

body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background-color: white;
}

.navbar {
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 50;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/*navbar logo*/
.navbar-logo-group {
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 40px;
  width: 40px;
  object-fit: contain;
  margin-right: 0.5rem;
  border-radius: 50%; /* Makes it round if it's not already */
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

.logo-text {
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  color: black; /* Tailwind Indigo-600 */
}

/*navbar links*/
.nav-links {
  display: none;
}

.nav-links a {
  margin-left: 5.5rem;
  font-weight: bold;
  color: #374151; /* Gray-700 */
  text-decoration: none;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  transition: color 0.3s;
}

.nav-links a:hover {
  color: rgb(223, 209, 11);
}

/* off-screen-menu */
.off-screen-menu {
  background-color: rgb(34, 37, 49);
  height: 100vh;
  width: 100%;
  max-width: 450px;
  position: fixed;
  top: 0;
  right: -450px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 3rem;
  transition: .3s ease;
}

.off-screen-menu.active {
  right: 0;
}

.off-screen-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.off-screen-menu li {
  margin-bottom: 1rem;
}

.off-screen-menu a {
  text-decoration: none;
  font-size: 1.2rem;
  color: white;
  transition: color 0.3s ease;
}

.off-screen-menu a:hover {
  color: rgb(223, 209, 11);
}


/*hamburger menu*/
.ham-menu{
  height: 50px;
  width: 50px;
  margin-left: auto;
  position: relative;
}

.ham-menu span{
  height: 5px;
  width: 75%;
  background-color: black;
  border-radius: 25px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: .3s ease;
}

.ham-menu span:nth-child(1) {
  top: 25%;
}

.ham-menu span:nth-child(3) {
  top: 75%;
}

.ham-menu.active span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: rgb(223, 209, 11);
}

.ham-menu.active span:nth-child(2) {
  opacity: 0;
}

.ham-menu.active span:nth-child(3) {
  top: 40%;
  transform: translate(-50%, 50%) rotate(-45deg);
  background-color: rgb(223, 209, 11);
}


/* Responsive */
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .ham-menu {
    display: none !important;
  }
}

.hidden {
  display: none;
}


/*index body*/

.intropage {
  background-color: black;       /* black background */
  color: white;                  /* white text */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 35px 20px;
  flex-direction: column;        /* stack items vertically */
}

.intro-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;                     /* space between logo and slogan */
}

.intro-logo {
  width: 140px;                  /* adjust size as needed */
  height: auto;
  border-radius: 12px;           /* optional soft corners */
}

.page-title {
  font-family: 'Rubik', sans-serif;
  font-size: 2.4rem;
  font-weight: 550;
  width: 35rem;
  text-align: center;
}


/*Listing*/

.listing {
  padding-top: 25px;
  padding-bottom: 30px;
  width: 98%;
  margin-left: 1%;
  text-align: center;
}

.listing-container {
  list-style: none;          /* remove bullets */
  margin: 10px 0;            /* reset top/bottom only */
  padding: 0;                /* remove left indent */
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;   /* center the rows, avoid odd gaps */
  align-items: stretch;      /* make items equal height per row */
}

.listing-container > li {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  flex: 1 1 25%;
  min-width: 240px;          /* wrap before getting too narrow */
  max-width: 320px;          /* prevents huge stretching on ultra-wide */
  border: 0.5px solid black;
  border-radius: 12px;
  padding: 16px;
  background: #fff;
}

.soldoutbox-alert {
  position: relative;
  display: inline-block;
  width: 100%;
}

.listingitem-img {
  display: block;
  width: 100%;               /* fill card width */
  height: auto;              /* keep aspect ratio */
  max-width: 100%;           /* prevent “invading” neighbors */
  margin: 0 auto;            /* center inside the card */
  /* Optional: make all thumbnails the same visual height */
  /* aspect-ratio: 4 / 3;    */
  /* object-fit: cover;      */
  border-radius: 8px;
  border: 0.5px solid black;
  transition: transform 0.5s ease;
}

.listingitem-img:hover {
  transform: scale(1.05);
}

.hover-text {
  position: absolute;
  top: 95%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 23px;
  font-family:'Times New Roman', Times, serif;
  background-color: none;
  color: rgb(243, 5, 5);
  padding: 0;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.8s;
  pointer-events: none; /* Ensures the text doesn't interfere with hover */
}

.soldoutbox-alert:hover .listingitem-img {
  opacity: 25%; /* Hide image on hover */
}

.soldoutbox-alert:hover .hover-text {
  opacity: 1; /* Show text on hover */
}


.listingitem-name {
  margin-top: 20px;
  margin-bottom: 0;
  text-align: left;
  font-size: 18px;
  font-weight: bold;
}

.listingitem-price {
  margin: 12px;
  margin-left: 0;
  text-align: left;
  font-size: 16px;
}

.listingitem-btn {
  position: relative;
  background-color: black;
  color: white;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.25s ease-in-out;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Default text */
.listingitem-btn::before {
  content: "Buy Now"; /* <- your normal button text */
  display: block;
  transition: opacity 0.25s ease-in-out, transform 0.25s ease-in-out;
}

/* Hover text */
.listingitem-btn::after {
  content: "Sold Out"; /* <- the hover text */
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.25s ease-in-out, transform 0.25s ease-in-out;
}

/* When hovering, swap texts */
.listingitem-btn:hover::before {
  opacity: 0;
  transform: translateY(-100%);
}

.listingitem-btn:hover::after {
  opacity: 1;
  transform: translateY(-50%);
}

.listingitem-btn:hover {
  background-color: rgb(100, 98, 98); /* slightly darker green */
  transform: translateY(-2px);
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}

.listingitem-btn:active {
  transform: scale(0.97);
}

.soldout-label {
  display: flex;
  justify-content: center;
  text-decoration: underline;
  font-weight: bolder;
}



/* Breakpoints */
@media (max-width: 900px) {
  .listing-container > li { flex-basis: 48%; }  /* ~2 per row */
}

@media (max-width: 600px) {
  .listing-container > li { flex-basis: 100%; } /* 1 per row */
}




/* Footer shell */
.site-footer {
  background: #000;
  color: #fff;
  margin-top: 48px;
  font-family: inherit;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap; /* stacks nicely on mobile */
}

/* Brand name (optional) */
.footer-brand {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.footer-brand:hover { opacity: 0.85; }

/* Social links row */
.social-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Icon sizing + modern hover */
.social-link img {
  width: clamp(30px, 8vw, 38px);
  height: auto;
  display: block;
}

.social-link:hover img,
.social-link:focus-visible img {
  transform: translateY(-2px) scale(1.06);
  opacity: 0.9;
}

/* Keyboard focus ring */
.social-link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
  border-radius: 8px;
}

/* Copyright */
.footer-copy {
  opacity: 0.75;
  font-size: 14px;
}

/* Stack footer content in a column */
.site-footer .footer-inner {
  display: flex;            /* already set, but harmless to repeat */
  flex-direction: column;   /* ← makes it a column */
  align-items: flex-start;  /* left-align; use center if you prefer */
  gap: 12px;
}

/* Make the social icons a vertical list too */
.site-footer .social-links {
  display: flex;
  flex-direction: column;   /* ← icons in a column */
  align-items: center;
  gap: 10px;
}

/* Optional: some breathing room below */
.site-footer .footer-copy {
  margin-top: 4px;
}

.site-footer .footer-inner {
  align-items: center;
  text-align: center;
}

.email {
  color: #1e40af;          /* Tailwind blue-600 */
  text-decoration: none;
  font-weight: 500;        /* medium weight */
}

.email:hover {
  color: #2563eb;       /* Tailwind blue-800 */
  text-decoration: underline;   /* remove underline on hover (optional) */
}

/* ContactUs.html */

.contact-section {
  padding-block: 2.5rem;
  background: #f9fafb; /* gray-50 */
}

.contact-container {
  max-width: 56rem;           /* ~896px */
  margin-inline: auto;
  padding-inline: 1rem;
}

.contact-header { margin-bottom: 1rem; }
.contact-title {
  margin: 0;
  font-size: 1.875rem;        /* 30px */
  line-height: 2.25rem;       /* 36px */
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #111827;             /* gray-900 */
}
.contact-subtitle {
  margin: .5rem 0 0;
  color: #6b7280;             /* gray-500/600 */
  padding-bottom: 15px;
}

.contact-form {
  margin-top: 1.25rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;  /* gray-200 */
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
}

.contact-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .contact-row { grid-template-columns: 1fr 1fr; }
}

.contact-field { margin-bottom: 1rem; }
.contact-label {
  display: block;
  margin-bottom: .5rem;
  font-size: .95rem;
  font-weight: 600;
  color: #1f2937;             /* gray-800 */
}
.contact-hint {
  margin: .25rem 0 0;
  font-size: .8rem;
  color: #6b7280;
}

.contact-input,
.contact-textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #111827;
  border-radius: 12px;
  padding: .6rem .75rem;
  outline: 0;
  transition: box-shadow .15s ease, border-color .15s ease, transform .05s ease;
}
.contact-textarea { resize: vertical; min-height: 7rem; }

.contact-input:focus,
.contact-textarea:focus {
  border-color: #6366f1;  /* indigo-500/600 */
  box-shadow: 0 0 0 .2rem rgba(99,102,241,.25);
}

.contact-counter {
  margin-top: .35rem;
  font-size: .75rem;
  color: #6b7280;
  text-align: right;
}

.contact-actions { margin-top: .5rem; }
.contact-btn {
  appearance: none;
  border: 0;
  background: black;  /* indigo-600 */
  color: #fff;
  padding: .7rem 1rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: background .15s ease, transform .05s ease, box-shadow .15s ease;
}
.contact-btn:hover { background: #82871c; }   /* indigo-700 */
.contact-btn:active { transform: translateY(1px); }
.contact-btn:focus {
  outline: 2px solid transparent;
  box-shadow: 0 0 0 .2rem black;
}

.contact-status {
  margin-top: 1rem;
  font-size: .95rem;
  color: black; /* gray-700 */
}

/* Honeypot: hidden from users */
.contact-hp {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px; height: 1px; overflow: hidden;
}


/* Cart */

.cart-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  text-align: center;
  background-color: #f9fafb; /* Tailwind: bg-gray-50 */
  padding: 2rem;
  border-radius: 0.75rem; /* Tailwind: rounded-xl */
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Heading */
.cart-title {
  font-size: 3rem; /* Tailwind: text-3xl */
  font-weight: 700; /* Tailwind: font-bold */
  color: #111827; /* Tailwind: text-gray-900 */
  margin-bottom: 1rem;
}

/* Empty cart message */
.cart-message {
  font-size: 1.125rem; /* Tailwind: text-lg */
  color: #6b7280; /* Tailwind: text-gray-500 */
  margin-bottom: 1.5rem;
}

/* Continue shopping button */
.cart-btn {
  background-color: #111827; /* Tailwind: bg-gray-900 */
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem; /* Tailwind: rounded-lg */
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.cart-btn:hover {
  background-color: #374151; /* Tailwind: hover:bg-gray-700 */
  transform: translateY(-2px);
}

.cart-btn:active {
  transform: scale(0.97);
}


/* Checklist */

.page-intro,
.checklists {
  max-width: 1120px;              /* ~max-w-5xl / 6xl */
  margin-left: auto;               /* mx-auto */
  margin-right: auto;
  padding-left: 1rem;              /* px-4 (mobile) */
  padding-right: 1rem;
}
@media (min-width: 768px) {        /* md:px-6 */
  .page-intro,
  .checklists {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.page-intro {
  padding-top: 2.5rem;             /* pt-10 */
  padding-bottom: 1.5rem;          /* pb-6 */
  text-align: center;
}

/* Title & subtitle (≈ font-bold, tracking-tight, text-slate-700/500) */

.checklist-title {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  font-weight: 450;
  width: 27rem;
  text-align: center;
}

.page-subtitle {
  text-align: end;
  margin-top: 0.5rem;               /* mt-2 */
  font-size: 0.95rem;               /* text-sm to base */
  color: #6b7280;                   /* slate-500 */
}

/* Grid of list cards (≈ grid gap-6 md:grid-cols-2 lg:grid-cols-3) */
.checklists {
  display: flex;
  flex-direction: column;   /* stack vertically */
  gap: 1.25rem;             /* space between cards (≈ gap-5) */
  max-width: 700px;         /* narrow reading width like flamethrowercards */
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 3rem;     /* pb-12 */
  padding-left: 1rem;       /* px-4 */
  padding-right: 1rem;
}


/* Card (≈ rounded-2xl, border, shadow-sm, hover:shadow-md, hover:-translate-y-0.5) */
.list-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;        /* slate-200 */
  border-radius: 1rem;              /* rounded-2xl */
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  overflow: hidden;
}
.list-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-color: #e5e7eb;
}

/* Header (≈ flex items-center justify-between p-5 bg-slate-50) */
.list-header {
  display: flex;
  align-items: center;
  gap: .5rem;
  justify-content: space-between;
  padding: 1rem 1rem;               /* p-4 */
  background: #f8fafc;              /* slate-50 */
  border-bottom: 1px solid #eef2f7; /* subtle divider */
}

/* Title link (≈ text-slate-800/hover:slate-900, underline on hover) */
.list-title {
  display: inline-block;
  font-weight: 700;                 /* font-bold */
  font-size: 1rem;                  /* text-base */
  color: #1f2937;                   /* slate-800 */
  text-decoration: none;
  word-break: break-word;
}
.list-title:hover {
  color: #111827;                   /* slate-900 */
  text-underline-offset: 3px;
}

/* Badge (≈ inline-flex px-2 py-0.5 text-xs rounded-full bg-slate-100 text-slate-700) */
.badge {
  display: inline-flex;
  align-items: center;
  padding: .25rem .5rem;            /* py-0.5 px-2 */
  border-radius: 999px;             /* rounded-full */
  font-size: .75rem;                /* text-xs */
  font-weight: 600;                 /* font-semibold */
  background: #f1f5f9;              /* slate-100 */
  color: #374151;                   /* slate-700 */
  border: 1px solid #e5e7eb;        /* subtle outline */
}

/* List (≈ p-5 space-y-2 text-slate-700) */
.list-items {
  margin: 0;
  padding: 1rem;                    /* p-4 */
  list-style: none;                 /* no bullets */
}
.list-items li {
  position: relative;
  padding-left: 1.25rem;            /* pl-5 for custom bullet */
  margin: .375rem 0;                /* space-y-1.5 */
  color: #374151;                   /* slate-700 */
  line-height: 1.5;
  font-size: .95rem;
}

/* Custom minimalist bullet (≈ before: bg-slate-300 rounded) */
.list-items li::before {
  content: "";
  position: absolute;
  left: .5rem;
  top: .7em;
  width: .3rem;
  height: .3rem;
  border-radius: 999px;
  background: #cbd5e1;              /* slate-300 */
}

/* Improve link tap targets inside items (if any) */
.list-items a {
  color: #0f172a;                   /* slate-900 */
  text-decoration: underline;
  text-underline-offset: 3px;
}
.list-items a:hover { opacity: .9; }

/* Subtle focus styles for accessibility */
.list-title:focus,
.badge:focus,
.list-items a:focus {
  outline: 2px solid #93c5fd;       /* blue-300 */
  outline-offset: 2px;
  border-radius: .375rem;
}

/* Optional: tighter card content on very small screens */
@media (max-width: 360px) {
  .list-header { padding: .75rem; }
  .list-items { padding: .75rem; }
}


/* FAQs */

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.faq-title {
  font-family: 'Rubik', sans-serif;
  font-size: 2.3rem;
  font-weight: 450;
  width: 27rem;
  text-align: left;
  padding-bottom: 30px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid #e5e7eb; /* gray-200 */
  border-radius: 0.75rem;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.faq-question {
  width: 100%;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  padding: 1rem 1.25rem;
  background-color: #f9fafb;
  color: #111827;
  border: none;
  outline: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.faq-question:hover {
  background-color: #f3f4f6;
}

.faq-answer {
  display: none;
  padding: 1rem 1.25rem;
  background-color: #ffffff;
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question {
  background-color: #e5e7eb;
}

.faq-link {
  color: #2563eb;
  text-decoration: underline;
}

.faq-link:hover {
  color: #1d4ed8;
}