/* -------------------------
   STITCH & CARE — SITE.CSS
   Consolidated & cleaned
   ------------------------- */

/* ---------- Theme colors & root ---------- */
:root{
  --primary-dark: #082f56;   /* deep navy / dark blue */
  --primary: #1e6fb8;        /* bright light blue */
  --accent: #6fb3ff;         /* lighter accent blue */
  --muted: #8b95a0;          /* grey */
  --bg: #f4f7fb;
  --max:1200px;
  --radius:14px;
  --shadow:0 8px 30px rgba(0,0,0,0.08);
}

/* ---------- Base reset & typography ---------- */
*{box-sizing:border-box;margin:0;padding:0;}
html, body {
  width: 100%;
  overflow-x: hidden;
}

body{
  font-family: Inter, system-ui, Arial, sans-serif;
  background:var(--bg);
  color:#111;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* ---------- Layout wrapper ---------- */
.wrap{ max-width:var(--max); margin:0 auto; padding:32px 20px; }

/* ---------- Header (side logo layout) ---------- */
.site-header{
  background:#fff;
  border-bottom:1px solid #e7e9ec;
  position:sticky;
  top:0;
  z-index:60;
  box-shadow:0 1px 3px rgba(0,0,0,0.04);
}

/* thinner header */
.site-header .wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-top:8px;
  padding-bottom:8px;
}

@media (max-width: 640px) {
  .site-header .wrap {
    padding-top: 6px;
    padding-bottom: 6px;
  }
}


/* logo on the left */
.brand.logo img {
  height: 90px;
  width: auto;
  display: block;
}

@media (max-width: 640px) {
  .brand.logo img {
    height: 44px;
  }
}


/* nav group */
.nav {
  display:flex;
  align-items:center;
  gap:14px;         /* reduced gap between items */
}

/* nav links (remove underlines, set color) */
.nav a {
  color:var(--primary-dark);
  text-decoration:none;
  font-weight:600;
  padding:6px 8px;
  border-radius:8px;
  transition:background .18s ease, color .18s ease;
}

/* subtle hover for links */
.nav a:hover {
  background: rgba(30,111,184,0.08);
  color:var(--primary-dark);
  text-decoration:none;
}

/* special CTA link style (Contact) */
.nav a.nav-cta {
  background: var(--primary);
  color: #fff;
  padding:8px 14px;
  border-radius:10px;
  box-shadow:0 6px 18px rgba(30,111,184,0.12);
}
.nav a.nav-cta:hover {
  background:#0a4e81;
}

/* mobile: hide links, show toggle (JS handles toggle) */
.nav-toggle { display:none; background:transparent; border:0; font-size:20px; color:var(--primary-dark); cursor: pointer; }
@media (max-width:880px){
  .nav-toggle { display:inline-block; }
}




/* ---------- MOBILE NAV PANEL ---------- */
@media (max-width: 880px) {

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 20px;
    gap: 10px;
    border-bottom: 1px solid #e7e9ec;
    display: none;
  }

  .nav.open {
    display: flex;
  }

  .nav a,
  .nav a.nav-cta {
    display: block;
    width: 100%;
    padding: 10px 12px;
  }
}


/* ---------- HERO (full-bleed) ---------- */
/* smaller gap between nav and hero */
.hero {
  background: linear-gradient(to bottom right, #ffffff, #f0f7f7);
  padding: 12px 0 24px 0; /* tightened top padding */
}

/* headline above the image */
.hero .hero-headline{
  padding-top:6px;
  padding-bottom:6px;
}
.hero .hero-headline h1{
  font-size:1.6rem;
  font-weight:800;
  color:var(--primary-dark);
  letter-spacing:-0.4px;
  margin:0;
}

/* full-bleed wrapper trick */
.hero-image-wrap{
  position:relative;
  width:100%;
  overflow:hidden;
  margin-top:6px;   /* tightened */
  margin-bottom:20px;
}

/* make the image truly edge-to-edge */
.hero-image{
  width:100vw;
  height:480px;              /* a balanced default height */
  object-fit:cover;
  display:block;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* overlay that sits over the image */
.hero-overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  pointer-events:none;
}

/* the content area in overlay uses the .wrap width */
.hero-content{
  width:100%;
  pointer-events:auto;
  display:flex;
  flex-direction:column;   /* <<< STACKS items vertically */
  align-items:flex-start;  /* keep left alignment */
  gap:16px;                /* space between big box + stats */
}


/* ------------ HERO TEXT OVERLAY (WHITE BOX) ------------ */
/* Clean, nearly opaque white box sitting on image (readable) */
.hero-text-overlay{
  max-width:640px;
  color:#02172d;                         /* navy text on white */
  padding:28px;
  background: rgba(255,255,255,0.5);    /* nearly-opaque white */
  border-radius:12px;
  backdrop-filter: blur(6px);
  box-shadow:0 12px 30px rgba(0,0,0,0.12);
}

/* Hero action buttons fix */
.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions a {
    text-align: center;
  }
}


/* eyebrow & heading inside overlay */
.hero-text-overlay .eyebrow{
  color:var(--accent);
  font-weight:700;
  margin-bottom:8px;
  font-size:0.95rem;
}
.hero-text-overlay .big,
.hero-text-overlay h2{
  color:var(--primary-dark);
  font-size:1.8rem;
  margin:6px 0 10px;
  line-height:1.12;
  font-weight:800;
}
.hero-text-overlay .lead{
  color:#333;
  margin-bottom:12px;
  font-size:1rem;
}

/* buttons inside white box */
.hero-text-overlay .btn-primary{
  background:#082f56;
  color:#fff;
  padding:10px 18px;
  border-radius:10px;
  text-decoration:none;
  font-weight:700;
  display:inline-block;
  margin-right:10px;
}
.hero-text-overlay .btn-primary:hover{ background:#0a406f; }
.hero-text-overlay .btn-ghost{
  border:2px solid #082f56;
  color:#082f56;
  padding:9px 14px;
  border-radius:10px;
  text-decoration:none;
  font-weight:700;
}

/* hero stats (badges) — positioned below overlay content */
.hero-stats{
  margin-top:18px;
  display:flex;
  gap:12px;
  list-style:none;
  padding:0;
}
.hero-stats li{
  background:rgba(8,47,86,0.9);
  color:#fff;
  padding:10px 14px;
  border-radius:10px;
  min-width:110px;
  text-align:center;
  box-shadow:0 8px 20px rgba(0,0,0,0.22);
}
.hero-stats li strong{ display:block; color:var(--accent); font-size:1.1rem; font-weight:800; }

/* Make hero buttons equal width on mobile */
@media (max-width: 640px) {
  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions a {
    width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
  }
}



/* centerable accent button (used below hero) */
.btn-secondary{
  display:inline-block;
  background:var(--accent);
  color:#082f56;
  padding:10px 18px;
  border-radius:10px;
  text-decoration:none;
  font-weight:700;
  margin:18px auto 0 auto; /* auto centers when wrapper is text-align:center or when block */
  transition:0.18s ease;
}
.btn-secondary:hover{ background:var(--primary); color:#fff; }

/* ---------- Collections Grid ---------- */
.collections{
  background:#e9f6ff;  /* subtle light-blue background */
  padding-top:40px;
  padding-bottom:40px;
  border-radius:0 0 18px 18px;
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px,1fr));
  gap:22px;
}

.card{
  background:#ffffff;
  border-radius:var(--radius);
  padding:14px;
  box-shadow:var(--shadow);
  border:1px solid rgba(8,47,86,0.06);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(8,47,86,0.12);
  border-color:rgba(8,47,86,0.18);
}

.card img{
  width:100%;
  height:200px;
  object-fit:cover;
  border-radius:10px;
  margin-bottom:12px;
}

/* spacing inside cards */
.card h3{ margin:8px 0; color:var(--primary); font-size:1.05rem; }
.card p{ margin-bottom:12px; color:#444; }

/* card button spacing */
.card a.btn-ghost{ margin-top:10px; display:inline-block; }

/* ---------- About Preview ---------- */
.about-preview{
  background:#fff;
  padding:36px;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  margin-top:38px;
}
.about-preview p { margin-bottom:18px; }
.about-preview .btn-primary {
  display:block;
  margin:18px auto 0 auto; /* centered button */
  width:fit-content;
}

/* ---------- Footer ---------- */
.site-footer{
  background:#fff;
  border-top:1px solid #e4e6ea;
  padding:20px;
  text-align:center;
  margin-top:48px;
}

/* ---------- Headings & accents ---------- */
h2{
  color:var(--primary-dark);
  position:relative;
  margin-bottom:18px;
  font-size:1.25rem;
}
h2::after{
  content:"";
  display:block;
  width:60px;
  height:4px;
  background:var(--primary);
  margin-top:8px;
  border-radius:2px;
}

/* small heading color for subheadings */
h3{ color:var(--primary); margin-bottom:10px; }

/* ---------- Buttons (global) ---------- */
.btn-primary{
  background:var(--primary-dark);
  color:#fff;
  padding:10px 18px;
  border-radius:10px;
  text-decoration:none;
  font-weight:700;
}
.btn-primary:hover{ background:#0a406f; }

.btn-ghost{
  border:2px solid var(--primary);
  color:var(--primary);
  padding:9px 14px;
  border-radius:10px;
  text-decoration:none;
  font-weight:700;
}
.btn-ghost:hover{ background:var(--primary); color:#fff; }

/* ---------- Utilities & responsive ---------- */
.center { text-align:center; }

@media (max-width:980px){
  .hero-image{ height:420px; }
  .hero-text-overlay .big{ font-size:1.4rem; }
  .hero-text-overlay{ padding:18px; max-width:100%; margin:0 12px; }
  .wrap{ padding:22px 16px; }
  .nav { gap:12px; }
}

@media (max-width:640px){
  .hero-image{ height:340px; }
  .hero-text-overlay{ padding:14px; border-radius:10px; }
  .hero-stats{ flex-direction:column; gap:8px; margin-top:12px; }
  .hero .hero-headline h1{ font-size:1.05rem; }
  .brand.logo img { height:40px; }
  .nav a { padding:6px 6px; }
  .grid { gap:16px; }
}

@media (max-width: 640px) {

  .hero {
    padding-top: 6px;
  }

  .hero-image {
    height: auto;
    min-height: 220px;
    max-height: 280px;
  }

  .hero-overlay {
    position: static;
  }

  .hero-content {
    gap: 12px;
  }

  .hero-text-overlay {
    margin: 0;
    max-width: 100%;
  }
}



/* ---------- CONTACT PAGE ---------- */

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 20px;
}

.contact-left h1 {
  font-size: 1.8rem;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.contact-left p {
  margin-bottom: 12px;
  color: #333;
}

.contact-right form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-right input,
.contact-right textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d0d6dd;
  background: #fff;
}

.file-label input {
  margin-top: 6px;
}

.contact-right button {
  margin-top: 8px;
  width: fit-content;
}

/* responsive layout */
@media (max-width: 850px) {
  .contact-section {
    grid-template-columns: 1fr;
  }
}


/* ---------- ABOUT PAGE ---------- */

.about-hero {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 30px;
}

.about-hero h1 {
  font-size: 2rem;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.about-hero .lead {
  font-size: 1.1rem;
  color: #444;
}


/* two-column layout */
.about-two-col {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.about-two-col img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-text p {
  margin-bottom: 14px;
  color: #333;
}

/* why choose us section */
.about-why {
  margin-top: 40px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 14px;
}

.why-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.why-card h3 {
  color: var(--primary);
  margin-bottom: 8px;
}

/* responsive */
@media (max-width: 850px) {
  .about-two-col {
    grid-template-columns: 1fr;
  }
}

/* ---------- SERVICES PAGE ---------- */

.services-hero {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.services-hero h1 {
  font-size: 2rem;
  color: var(--primary-dark);
}

.services-hero .lead {
  font-size: 1.1rem;
  color: #444;
  margin-top: 6px;
}


/* two-column intro */
.services-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.services-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.services-intro p {
  margin-bottom: 14px;
  color: #333;
}


/* services grid */
.services-grid-section {
  margin-top: 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 16px;
}

.service-card {
  background: #fff;
  padding: 22px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(8,47,86,0.18);
}

.service-card h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

@media (max-width: 850px) {
  .services-intro {
    grid-template-columns: 1fr;
  }
}

/* ---------- SIMPLE ABOUT HERO ---------- */

.about-simple-hero {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

.about-simple-hero h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.about-simple-hero .lead {
  font-size: 1.1rem;
  color: #444;
}

/* ---------- HOODIE PAGE ---------- */


/* ---------- HOODIES PAGE ---------- */

/* solid color hero block */
.hoodie-hero {
  background: linear-gradient(135deg, #082f56, #0a4e81);
  padding: 60px 0;
  color: #fff;
}

.hoodie-hero-inner {
  text-align: center;
}

.hoodie-hero h1 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.hoodie-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
}

/* main product layout */
.hoodie-main {
  margin-top: 40px;
  margin-bottom: 40px;
}

.hoodie-info-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
}

/* left section */
.hoodie-info-text p {
  margin-bottom: 12px;
  color: #333;
}

.spec-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.spec-list li {
  margin-bottom: 8px;
  color: #444;
}

/* gallery */
.hoodie-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.hoodie-gallery img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

/* responsive */
@media (max-width: 900px) {
  .hoodie-info-grid {
    grid-template-columns: 1fr;
  }
}




/* ---------- DROPDOWN MENU ---------- */

.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background: transparent;
  border: none;
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  padding: 6px 8px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: #fff;
  min-width: 180px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  border-radius: 10px;
  z-index: 99;
  padding: 10px 0;
}

.dropdown-content a {
  color: var(--primary-dark);
  padding: 10px 16px;
  text-decoration: none;
  display: block;
  transition: 0.2s ease;
}

.dropdown-content a:hover {
  background: rgba(30,111,184,0.12);
}

/* Hover to open */
.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  color: var(--primary);
}


/* Collections / grid styles (hoodies grid) */
.collections-hero { background: linear-gradient(180deg,#fff,#fbfdff); padding:34px 0 8px; border-bottom:1px solid rgba(8,47,86,0.04); }
.collections-title { text-align:center; font-size:3rem; color:var(--primary-dark); margin:10px 0; font-weight:800; }
.collections-sub { text-align:center; color:var(--muted); margin-bottom:18px; }

.products-grid {
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:28px;
  margin-top:26px;
}

/* product card */
.product-card { background:#fff; border-radius:12px; overflow:hidden; box-shadow:0 10px 30px rgba(2,12,29,0.06); transition: transform .22s ease, box-shadow .22s ease; display:flex; flex-direction:column; }
.product-card:hover { transform:translateY(-8px); box-shadow:0 20px 50px rgba(2,12,29,0.12); }
.product-link { color:inherit; text-decoration:none; display:flex; flex-direction:column; height:100%; }

/* image area */
.product-media { width:100%; aspect-ratio: 4/5; overflow:hidden; background: #f5f6f7; display:flex; align-items:center; justify-content:center; }
.product-media img { width:100%; height:100%; object-fit:cover; display:block; transition: transform .35s ease; }
.product-card:hover .product-media img { transform:scale(1.03); }

/* text */
.product-body { padding:18px; flex:1; display:flex; flex-direction:column; justify-content:space-between; }
.product-title { font-size:1.05rem; color:var(--primary-dark); margin-bottom:8px; font-weight:700; }
.product-desc { color:var(--muted); font-size:0.95rem; margin-bottom:12px; line-height:1.4; }
.product-meta { font-size:0.88rem; color:var(--muted); display:flex; align-items:center; gap:8px; }
.product-meta .meta-dot { opacity:0.5; }

/* responsive */
@media (max-width:1200px){ .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width:900px){ .products-grid { grid-template-columns: repeat(2, 1fr); gap:20px; } .collections-title { font-size:2rem; } }
@media (max-width:640px){ .products-grid { grid-template-columns: 1fr; } .product-media { aspect-ratio: 4/3; } .product-body { padding:14px; } 
}


