/* ============================================================
   PULTINA — GLOBAL STYLES
   ============================================================ */

:root {
  --coral:   #ff6666;
  --coral-dk:#e04e4e;
  --dark:    #1a1a1a;
  --mid:     #333333;
  --light:   #f7f5f2;
  --white:   #ffffff;
  --font:    'Alata', sans-serif;
  --nav-h:   64px;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.1rem;
  color: var(--dark);
  background-color: var(--white);
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; }


/* ============================================================
   NAV
   ============================================================ */

.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background-color: var(--coral);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 24px;
}

.nav-group { display: flex; align-items: center; }

.nav-logo { height: 40px; width: auto; }

/* Desktop nav buttons */
.nav-btn {
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font);
  font-size: 1.1rem;
  letter-spacing: .08em;
  cursor: pointer;
  padding: 8px 12px;
}
.nav-btn:hover { color: var(--dark); }

/* Cart button */
.cart-form { margin: 0; }
.cart-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0 4px 12px;
}
.cart-btn img { height: 28px; width: auto; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-content {
  display: none;
  position: absolute;
  top: calc(var(--nav-h) - 4px);
  left: 0;
  min-width: 160px;
  background-color: var(--white);
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  z-index: 300;
}
.dropdown-content.dropdown-right { left: auto; right: 0; }
.dropdown-content a {
  display: block;
  padding: 10px 16px;
  color: var(--dark);
  font-family: var(--font);
  font-size: 1rem;
}
.dropdown-content a:hover { background-color: var(--light); color: var(--coral); }
.dropdown:hover .dropdown-content { display: block; }

/* Mobile hamburger */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

.mobile-nav { background-color: var(--dark); padding: 0; }
.mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.mobile-nav ul li { border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-nav ul li a {
  display: block;
  padding: 14px 24px;
  color: var(--white);
  font-family: var(--font);
  font-size: 1.05rem;
  letter-spacing: .04em;
}
.mobile-nav ul li a:hover { background-color: var(--coral); }

@media (max-width: 991px) {
  .desktop-only { display: none !important; }
  .mobile-toggle { display: flex; }
}


/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  margin-top: var(--nav-h);
  height: 90vh;
  min-height: 480px;
  background-image: url(Pultina_images/top_straps.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.38);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
}

.hero-title {
  color: var(--white);
  font-family: var(--font);
  font-size: clamp(2.4rem, 6.5vw, 5rem);
  line-height: 1.15;
  margin: 0 0 28px;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
}

.hero-cta {
  display: inline-block;
  background-color: var(--coral);
  color: var(--white);
  font-family: var(--font);
  font-size: 1.1rem;
  letter-spacing: .1em;
  padding: 14px 36px;
  border-radius: 2px;
  transition: background-color .2s;
}
.hero-cta:hover { background-color: var(--coral-dk); color: var(--white); }


/* ============================================================
   HOME SECTIONS
   ============================================================ */

.home-section { padding: 0; overflow: hidden; }

.section-row {
  display: flex;
  align-items: stretch;
  margin: 0 !important;
}

/* Image column */
.section-image-col {
  padding: 0 !important;
}
.section-image-col img,
.section-image-col .carousel {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
/* Carousel images */
.section-image-col .carousel-inner,
.section-image-col .carousel-inner .item {
  height: 480px;
}
.section-image-col .carousel-inner .item img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

/* Text column */
.section-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 48px !important;
}

.section-eyebrow {
  font-size: .9rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin: 0 0 12px;
  color: var(--mid);
}
.section-eyebrow.light { color: rgba(255,255,255,.7); }

.section-heading {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  line-height: 1.3;
  margin: 0 0 28px;
  color: var(--dark);
}
.section-heading.light { color: var(--white); }

.section-link {
  display: inline-block;
  font-size: 1rem;
  letter-spacing: .08em;
  color: var(--coral);
  border-bottom: 1px solid var(--coral);
  padding-bottom: 2px;
  transition: color .2s;
}
.section-link.light {
  color: var(--white);
  border-bottom-color: var(--white);
}
.section-link:hover { color: var(--coral-dk); }
.section-link.light:hover { color: rgba(255,255,255,.75); }

.section-links { display: flex; gap: 24px; flex-wrap: wrap; }

/* Color themes */
.section-light { background-color: var(--light); }
.section-coral { background-color: var(--coral); }
.section-dark  { background-color: var(--dark); }

/* Responsive: stack on mobile */
@media (max-width: 767px) {
  .section-row { flex-direction: column; }
  .section-image-col img,
  .section-image-col .carousel,
  .section-image-col .carousel-inner,
  .section-image-col .carousel-inner .item,
  .section-image-col .carousel-inner .item img {
    height: 280px;
  }
  .section-text-col {
    padding: 36px 24px !important;
  }
  /* On coral/dark sections, image comes after text on mobile */
  .section-coral .section-row,
  .section-dark  .section-row {
    flex-direction: column-reverse;
  }
}


/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background-color: var(--dark);
  padding: 48px 0 32px;
}

.footer-row {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 0 !important;
  padding: 0 40px;
}

.footer-brand { padding: 0 16px 24px; }

.footer-logo { height: 48px; width: auto; margin-bottom: 8px; }

.footer-tagline {
  font-size: .85rem;
  letter-spacing: .18em;
  color: rgba(255,255,255,.5);
  margin: 0;
}

.footer-links {
  padding: 0 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 4px;
}
.footer-links a {
  color: rgba(255,255,255,.75);
  font-size: .95rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.footer-links a:hover { color: var(--coral); }


/* ============================================================
   ABOUT PAGE
   ============================================================ */

body.about {
  background-image: url(Pultina_images/leatherscraps3.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}

.text-materials {
  font-family: var(--font);
  font-size: clamp(2rem, 4.5vw, 4.5rem);
  padding: 10%;
  color: var(--white);
  text-align: center;
}


/* ============================================================
   SHOP PAGES
   ============================================================ */

#design-container {
  padding: 4px;
  background-color: var(--white);
  position: relative;
  top: calc(var(--nav-h) + 16px);
  margin: 0 10%;
}

.card-deck  { background-color: var(--white); margin: 20px; }
.card-body  { background-color: var(--white); }

a.product-text:link,
a.product-text:hover { color: var(--mid); font-size: 1.2rem; }


/* ============================================================
   MATERIALS PAGE
   ============================================================ */

.material-container { background-color: var(--coral); }


/* ============================================================
   VIDEO / DESIGN PAGE
   ============================================================ */

video {
  position: relative;
  top: 60%;
  transform: translateY(-40%);
}

@media screen and (max-device-width: 480px) {
  video { display: none; }
}


/* ============================================================
   PAGE HERO (about, materials, etc.)
   ============================================================ */

.page-hero {
  position: relative;
  margin-top: var(--nav-h);
  height: 60vh;
  min-height: 360px;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0 0 56px 48px;
}

.about-hero     { background-image: url(Pultina_images/leatherscraps3.jpg); }
.materials-hero { background-image: url(Pultina_images/top_straps.jpg); }
.discarted-hero { background-image: url(Pultina_images/hipbag_angleopennew.jpg); }

.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.48);
}

.page-hero .hero-content {
  position: relative;
  z-index: 1;
  text-align: left;
  padding: 0;
}

.page-hero .hero-title {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  margin: 0;
}

/* Full-width centered text block */
.brand-text-col {
  max-width: 860px;
  padding: 64px 48px !important;
}

/* Body copy */
.about-body {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--mid);
  margin: 0 0 16px;
}
.about-body.light { color: rgba(255,255,255,.85); }

/* Materials icon column */
.mat-icon-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px !important;
  text-align: center;
  border-right: 1px solid rgba(0,0,0,.08);
}
.section-coral .mat-icon-col  { border-right-color: rgba(255,255,255,.2); }
.section-dark  .mat-icon-col  { border-right-color: rgba(255,255,255,.1); }

.mat-icon {
  width: 128px;
  height: 128px;
  margin: 0 auto 20px;
  object-fit: contain;
}

.mat-name {
  font-family: var(--font);
  font-size: 1.05rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 0;
  color: var(--dark);
}
.mat-name.light { color: var(--white); }

.mat-source {
  font-size: .9rem;
  letter-spacing: .02em;
  color: var(--mid);
  opacity: .7;
  margin: 8px 0 0;
  font-style: italic;
}
.mat-source.light { color: rgba(255,255,255,.6); }

.mat-row-border { border-bottom: 1px solid rgba(0,0,0,.07); }


/* ============================================================
   DISCARTED COLLECTION PAGE
   ============================================================ */

.discart-grid { padding: 0; }

.discart-product-row {
  margin: 0 !important;
  border-bottom: 1px solid rgba(0,0,0,.07);
}
.discart-product-row:last-child { border-bottom: none; }

.discart-product {
  padding: 0 !important;
  border-right: 1px solid rgba(0,0,0,.07);
  position: relative;
  overflow: hidden;
}
.discart-product:last-child { border-right: none; }

.discart-product img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.discart-product:hover img { transform: scale(1.04); }

.discart-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 100%);
  padding: 32px 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.discart-label .mat-name { color: var(--white); }
.discart-label .mat-source { color: rgba(255,255,255,.7); opacity: 1; }

@media (max-width: 767px) {
  .discart-product img { height: 260px; }
  .discart-product { border-right: none; border-bottom: 1px solid rgba(0,0,0,.07); }
  .discart-product:last-child { border-bottom: none; }
}

@media (max-width: 767px) {
  .page-hero {
    padding: 0 24px 36px;
  }
  .brand-text-col {
    padding: 40px 24px !important;
  }
  .mat-icon-col {
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,.08);
    padding: 28px 24px !important;
    flex-direction: row;
    gap: 16px;
    text-align: left;
    align-items: center;
    justify-content: flex-start;
  }
  .mat-icon { margin: 0; width: 80px; height: 80px; flex-shrink: 0; }
}
