/* ROOT VARIABLES */
:root {
  --concrete: #B8B8B8;
  --neon-red: #FF3B3F;
  --gold: #FFD447  ;
  --neon-orange: #FF7A2F;

  --text-dark: #1A1A1A;
  --text-light: #ffffff;

  --space-sm: clamp(0.75rem, 1vw, 1rem);
  --space-md: clamp(1rem, 2vw, 2rem);
  --space-lg: clamp(2rem, 4vw, 4rem);
}
body {
  background-image: url('assets/background.png');
  background-size: 105%;
  background-position: center top;
  background-attachment: fixed; /* the magic */
  background-repeat: no-repeat;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15); /* soft wash */
  pointer-events: none;
  z-index: -1;
}
.inline {
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.07em;
   font-size: 0.95rem;
  line-height: 1.6;
  text-align: left;
  
  margin: 0 auto 0 0;
}
.inline-link {
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 0.85rem;
}
.inline-link:hover {
  color: var(--neon-red);
 font-weight: bold;
}
/* HEADER */
.site-header {
  background-color: #d81010;
  padding: 1.3px 8px;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
line-height: 1;
position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; /* keeps it above everything */
}
.brand-name {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}
.brand-name {
  color: #ffffff;
  font-size: .9rem;
  font-weight: 300;
  letter-spacing: 0.04em;
}

.header-nav {
  display: flex;
  gap: 20px; 
}

.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 300;
  font-style: strong;
  letter-spacing: 0.05em;
}
/* HERO SECTION */
.hero {
  background: transparent; /* gallery white */
  min-height: 66vh; /* responsive 2/3 height */
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* pushes content higher */
  align-items: center;
  padding-top: 80px; /* moves logo slightly higher vertically */
  padding-bottom: 5vh;min-height: 36vh;
}

.hero-logo {
  width: 35vw; /* responsive scaling */
  max-width: 3800px; /* never too big */
  min-width: 250px; /* never too small */
  height: auto;
  margin: 0 auto;
}

.hero-link {
  margin-top: 20px;
  font-size: 10px;
  letter-spacing: 1.3px;
  color: var(--text-dark);
  text-decoration: none;
  align-self: flex-end;
margin-right: 40px; /* luxury spacing */
margin-bottom: 0px;
    font-style: bold;
}
.h2 {
  background: var(--text-light);
    text-align:left;
   margin-left: auto;
  margin-right: auto;
  padding: 10px 20px;
  border-radius: 4px;
  font-style: italic;
  Font-size: 1.25rem; 
  letter-spacing: 0.07em; 
}
.tagline {
  background: #1A1A1A;
  padding: 10px 20px;
  border-radius: 0px;
  color: var(--text-light);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
   font-style: italic;
   Font-size: 1.25rem;
   letter-spacing: 0.2em;
   border-bottom: 2px solid var(--neon-red);
}

/* BLOCKS */
.block {
  display: flex;
  justify-content: center;
  padding: 5rem 1.5rem;
}
.tab {
  width:auto;
  max-width:30%;
  border-radius: 0px;
  background: var(--text-light);
  text-align: left;
}
.block-inner {
  width: 100%;
  max-width: 800px;
  padding: var(--space-lg);
  border-radius: 0; 
  text-align: left;
}
.block-dark .block-inner {
  background: var(--concrete);
  color: var(--text-light);
}
.carousel-section {
  background-color: #ffffff;
  display: flex;
  padding: 80px 0;
  width: 100%;
  overflow: hidden;
  border-bottom: 2px solid var(--neon-red);
}
.carousel-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 0 40px; 
}
.product-scroll {
  display: flex;
  flex-direction: row;
  gap: 30px; 
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 20px;
}
.product-scroll::-webkit-scrollbar {
  display: none;
}
.product-card {
  flex: 0 0 calc(33.333% - 20px); 
  min-width: 280px; 
  background: #ffffff;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.product-image-box {
  width: 100%;
  aspect-ratio: 3 / 4; 
  background-color: #ffffff; 
  position: relative;
  overflow: hidden;
  border: 1px solid #ffffff;
}
.product-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Keeps imagery balanced without distorting ratios */
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.view-text {
  color: #ffffff;
  font-size: 0.85rem;
  letter-spacing: 2px;
  font-weight: 600;
  border-bottom: 1px solid #ffffff;
  padding-bottom: 4px;
}
.product-card:hover img {
  transform: scale(1.05); /* Smooth micro-zoom */
}
.product-card:hover .card-overlay {
  opacity: 1;
}
.product-info {
  padding: 15px 0 5px 0;
  text-align: left;
}
.product-brand {
  color: #ffffff;
  font-size: 0.7rem;
  letter-spacing: 2px;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}
.product-title {
  color: #ffffff;
  font-size: 0.95rem;
  letter-spacing: 1px;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0 0 6px 0;
}
.product-price {
  color: #888888;
  font-size: 0.9rem;
  font-weight: 400;
  margin: 0;
}
.carousel-btn {
  position: absolute;
  top: 40%; /* Positioned clean near center vertical alignment */
  transform: translateY(-50%);
  background: #ffffff;
  color: #000000;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 0%; /* Sharp square cuts matching industry look */
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
}
.left-btn { left: 15px; }
.right-btn { right: 15px; }
.carousel-btn:hover {
  background: #000000;
  color: #ffffff;
}

/* 7. Mobile Layout Tuning */
@media (max-width: 768px) {
  .product-card {
    flex: 0 0 calc(50% - 15px); /* 2 cards per view on tablet surfaces */
  }
  .carousel-container {
    padding: 0 20px;
  }
  .carousel-btn {
    display: none; /* Hide buttons on mobile/tablet—native swipe gesture rules here */
  }
}

@media (max-width: 480px) {
  .product-card {
    flex: 0 0 calc(85% - 10px); /* Primary 1 card visibility + slice preview of next card */
  }
}
.carousel-btn {
  background: none;
  border: none;
  color: #737272;
  font-size: 2rem;
  cursor: pointer;
  padding: 10px;
  user-select: none;
}
.left-btn {
  margin-right: 10px;
}
.right-btn {
  margin-left: 10px;
}
.product-scroll {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0;
  flex: 1;
  scrollbar-width: none; /* Firefox */
}
.product-scroll::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}
.product-card {
  min-width: 340px;
  height: 340px;
  background-color: #ffffff;
  padding: 5px;
  border-radius: 0;
  scroll-snap-align: start;
  display: flex;
  justify-content: center;
  align-items: center; padding: 0px;
}
.product-image-box {
  width: 340px;
  height: 340px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-image-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-card img {
  width: 335px;
  height: 335px;
  object-fit: contain;
  display: block;
  min-width: 335px;
min-height: 335px;

}
.product-name {
  margin-top: 5px;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: #ffffff;
}


.email-capture {
  background-color: #111111; /* Sleek, deep matte black/dark grey */
  padding: 60px 20px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}
.email-container {
  max-width: 600px;
  margin: 0 auto;
}
.email-title {
  color: #ffffff;
  font-size: 2rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 700;
}
.email-subtitle {
  color: #888888; /* Subtle muted grey text */
  font-size: 0.95rem;
  letter-spacing: 1px;
  margin-bottom: 30px;
}
.signup-form {
  width: 100%;
}
.input-group {
  display: flex;
  flex-direction: row;
  border: 1px solid #333333; /* Dark clean accent line */
  background: #000000;
  padding: 4px;
  transition: border-color 0.3s ease;
}
.input-group:focus-within {
  border-color: #ffffff; 
}
.email-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 15px 20px;
  color: #ffffff;
  font-size: 1rem;
  letter-spacing: 1px;
  outline: none;
}

/* Placeholder Customizing */
.email-input::placeholder {
  color: #555555;
}

/* Submit Action Button */
.email-submit-btn {
  background-color: #ffffff;
  color: #000000;
  border: none;
  padding: 0 35px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

/* Button Hover State */
.email-submit-btn:hover {
  background-color: #cccccc;
}

/* 5. Mobile Responsiveness Layout Switch */
@media (max-width: 480px) {
  .input-group {
    flex-direction: column;
    background: transparent;
    border: none;
    gap: 12px;
    padding: 0;
  }
  
  .email-input {
    background: #000000;
    border: 1px solid #333333;
    padding: 16px;
  }
  
  .email-input:focus {
    border-color: #ffffff;
  }
  
  .email-submit-btn {
    padding: 16px 0;
    width: 100%;
  }
}

.email-capture {
  padding: 60px 40px;
  text-align: center;
}

.email-copy {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: #737272; /* your charcoal */
  margin-bottom: 20px;
}

.email-form {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.email-input {
  padding: 10px 14px;
  border: 1px solid #737272;
  background: #ffffff;
  color: #737272;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  outline: none;
  width: 240px;
}

.email-button {
  padding: 10px 20px;
  background: #737272;
  color: #ffffff;
  border: none;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  cursor: pointer;
}
/* About */
.about{
  padding: 60px 40px;
  text-align: left;
  font-color: #737272; 
}
.split-portal-system {
  width: 100%;
  background-color: #000000;
  display: flex;
  flex-direction: row;
  border-top: 1px solid #111111;
  box-sizing: border-box;
}

/* Individual Sides */
.portal-side {
  width: 50%; /* Strictly takes exactly half the screen width */
  box-sizing: border-box;
}

/* --- Left Side: Editorial Presentation --- */
.design-showcase {
  background-color: #050505;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid #111111;
}

.showcase-media-box {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4 / 5;
  margin: 0 auto 40px auto;
  overflow: hidden;
}

.showcase-media-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.system-code {
  font-family: monospace;
  font-size: 0.75rem;
  color: #444444;
  letter-spacing: 2px;
  display: block;
  text-align: left;
  margin-bottom: 8px;
}

.showcase-title {
  color: #ffffff;
  font-size: 2rem;
  letter-spacing: 3px;
  text-align: left;
  margin: 0 0 15px 0;
  font-weight: 800;
}

.showcase-text {
  color: #777777;
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: left;
  max-width: 480px;
  margin: 0 auto 0 0;
}

/* --- Right Side: Clean Stable Inputs --- */
.gateways-box {
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 80px; /* Locked separation distance */
}

.gate-block {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  text-align: left;
}

.gate-header-group {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 12px;
}

.gate-num {
  font-family: monospace;
  font-size: 1rem;
  color: #555555;
}

.gate-heading {
  color: #ffffff;
  font-size: 1.4rem;
  letter-spacing: 1px;
  margin: 0;
  font-weight: 700;
}

.gate-info {
  color: #666666;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0 0 25px 0;
}

/* Consumer Form Mechanics */
.clean-gate-form {
  display: flex;
  border: 1px solid #222222;
  background: #000000;
  padding: 4px;
}

.clean-gate-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 15px;
  color: #ffffff;
  font-size: 0.9rem;
  outline: none;
}

.clean-gate-btn {
  background: #ffffff;
  color: #000000;
  border: none;
  padding: 0 25px;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
}

/* B2B Link Button Mechanics */
.clean-gate-link {
  display: block;
  text-align: center;
  border: 1px solid #ffffff;
  color: #000000;
  background: #ffffff;
  padding: 14px 0;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.clean-gate-link:hover {
  background: transparent;
  color: #ffffff;
}

/* --- Responsive Stack Rule --- */
@media (max-width: 900px) {
  .split-portal-system {
    flex-direction: column; /* Safely collapses into vertical layout on tablets/mobiles */
  }
  .portal-side {
    width: 100%; 
  }
  .design-showcase {
    border-right: none;
    border-bottom: 1px solid #111111;
    padding: 60px 24px;
  }
  .gateways-box {
    padding: 60px 24px;
    gap: 60px;
  }
}

.street-footer {
  background: #1A1A1A; 
  padding: 40px 0;
  text-align: center;
  border-top: 2px solid var(--neon-red); /* streetwear accent */
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* inner container */
.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* brand name */
.footer-brand {
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--concrete);
  margin-bottom: 10px;
  font-weight: 300;
}

/* copyright */
.footer-copy {
  font-size: 0.75rem;
  color: #ffffff;
  opacity: 0.7;
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}

/* streetwear tagline */
.footer-tag {
  font-size: 0.7rem;
  color: var(--text-light);
  letter-spacing: 0.15em;
  font-weight: 400;
  margin-top: 10px;
}



