/* RESET */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}


a {
  color: white;          
  font-weight: 900;       
}

a:hover {
  opacity: 0.6;           
}

html{
  scroll-behavior: smooth;
}

body{
  background: #0b0b0f;
  color: #ffffff;
  line-height: 1.6;
}

/* CONTAINER */
.container{
  width: min(1100px, 92%);
  margin: 0 auto;
}

/* HERO */
.hero{
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url("images/jackcarpic.jpg") center/cover no-repeat;
}


.overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.hero-floating{
  margin-top: 30px;
}

.hero-floating img{
  width: 340px;
  height: 220px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 15px 50px rgba(0,0,0,0.7);
}

.hero .container{
  position: relative;
  z-index: 2;
  padding: 30px 0 60px;
}

/* NAV */
.nav{
  width: 100%;
  background: rgba(0,0,0,0.65);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  backdrop-filter: blur(6px);
}

.logo{
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.nav-links{
  list-style: none;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a{
  color: white;
  text-decoration: none;
  font-weight: 600;
  opacity: 0.9;
  padding: 8px 10px;
  border-radius: 10px;
  transition: 0.2s ease;
}

.nav-links a:hover{
  background: rgba(255,255,255,0.12);
  opacity: 1;
}

/* HERO CONTENT */
.hero-content{
  margin-top: 38px;
  max-width: 780px;
}

.tag{
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
  font-weight: 600;
  font-size: 0.95rem;
}

.hero-content h2{
  margin-top: 16px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
}

.subtitle{
  margin-top: 14px;
  opacity: 0.9;
  font-size: 1.05rem;
}

.cta-row{
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* BUTTONS */
.btn{
  display: inline-block;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  transition: 0.2s ease;
  cursor: pointer;
}

.btn.primary{
  background: white;
  color: #0b0b0f;
}

.btn.primary:hover{
  transform: translateY(-1px);
  opacity: 0.95;
}

.btn.ghost{
  border-color: rgba(255,255,255,0.25);
  color: white;
  background: rgba(255,255,255,0.08);
}

.btn.ghost:hover{
  background: rgba(255,255,255,0.12);
}

/* STATS */
.stats{
  margin-top: 22px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.stat{
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 12px 14px;
  min-width: 160px;
}

.stat-num{
  display: block;
  font-size: 1.3rem;
  font-weight: 900;
}

.stat-label{
  display: block;
  opacity: 0.85;
  font-weight: 600;
  font-size: 0.95rem;
}

/* SECTIONS */
.section{
  padding: 70px 0;
}

.section:nth-of-type(even){
  background: #111218;
}

.section:nth-of-type(odd){
  background: #0b0b0f;
}

.section-head{
  margin-bottom: 22px;
  text-align: center;
}

.section-head h3{
  font-size: 1.7rem;
  font-weight: 900;
  text-align: center;
  
}

.section-head p{
  opacity: 0.85;
  margin-top: 6px;
  text-align: center;
}

/* GRID + CARDS */
.grid{
  display: grid;
  gap: 16px;
}

.grid.two{
  grid-template-columns: repeat(2, 1fr);
}

.grid.three{
  grid-template-columns: repeat(3, 1fr);
}

.card{
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 18px;
}

.card h4{
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.muted{
  opacity: 0.85;
}

.list{
  list-style: none;
  display: grid;
  gap: 10px;
}

.callout{
  margin-top: 16px;
  background: rgba(255,255,255,0.05);
}

/* DIGITAL */
.metric-row{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.metric{
  flex: 1;
  min-width: 170px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 12px;
}

.big{
  display: block;
  font-weight: 900;
  font-size: 1.25rem;
}

.small{
  display: block;
  opacity: 0.85;
  font-weight: 600;
}

.pill-row{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.pill{
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  opacity: 0.95;
}

/* MINI GRID */
.mini-grid{
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.mini{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 12px;
}

.mini-title{
  display: block;
  font-weight: 900;
}

.mini-text{
  display: block;
  opacity: 0.85;
}


.apparel-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 12px;
  transition: transform 0.25s ease;
}

.apparel-card:hover img {
  transform: scale(1.04);
}





/* RESPONSIVE */
@media (max-width: 900px){
  .grid.two{ grid-template-columns: 1fr; }
  .grid.three{ grid-template-columns: 1fr; }
  .mini-grid{ grid-template-columns: 1fr; }

  /* Hide nav links on mobile */
  .nav-links{
    display: none;
  }
}

/* HORIZONTAL GALLERY */
.horizontal-gallery{
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 10px 0 14px;
  scroll-snap-type: x mandatory;
}

.horizontal-gallery::-webkit-scrollbar{
  height: 8px;
}

.horizontal-gallery::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,0.2);
  border-radius: 10px;
}

.horizontal-gallery img{
  flex: 0 0 auto;
  width: 340px;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.45);
  scroll-snap-align: start;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.horizontal-gallery img:hover{
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.25);
}