/* ============================================
   STARPAK IF — style.css
   ============================================ */

/* --- VARIABLES & RESET --- */
:root {
  --red: #E8001D;
  --dark: #0f0f0f;
  --dark2: #1a1a1a;
  --dark3: #242424;
  --white: #ffffff;
  --gray: #888888;
  --light-bg: #f5f5f5;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --nav-height: 70px;
  --radius: 12px;
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  padding-top: var(--nav-height);
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- PAGE SYSTEM --- */
.page { display: none; }
.page.active { display: block; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: var(--dark);
  border-bottom: 2px solid var(--red);
  z-index: 1000;
  transition: background var(--transition);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}
.logo-star { color: var(--red); font-size: 1.4rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 8px 14px;
  border-radius: 6px;
  color: #aaa;
  transition: color var(--transition), background var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}

.shop-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  line-height: 1;
}

.soon-badge {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--red);
  background: rgba(232,0,29,0.12);
  border: 1px solid rgba(232,0,29,0.3);
  padding: 2px 6px;
  border-radius: 20px;
  white-space: nowrap;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 14px 32px;
  border-radius: 8px;
  transition: all var(--transition);
  display: inline-block;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover {
  background: #c0001a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,0,29,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
}
.btn-full { width: 100%; text-align: center; }

/* ============================================
   HERO — HOME
   ============================================ */
.hero {
  min-height: calc(100vh - var(--nav-height));
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 80px 60px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}
.shape1 { width: 500px; height: 500px; background: var(--red); top: -100px; right: -100px; }
.shape2 { width: 300px; height: 300px; background: var(--red); bottom: 50px; left: -50px; }
.shape3 { width: 200px; height: 200px; background: #fff; top: 40%; right: 30%; }

.hero-content { position: relative; z-index: 1; }

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.accent { color: var(--red); }

.hero-sub {
  font-size: 1.1rem;
  color: #bbb;
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 36px;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero image mosaic */
.hero-images {
  position: relative;
  z-index: 1;
  height: 480px;
}

.hero-img-card {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.hero-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.hero-img-card:hover img { transform: scale(1.05); }

.card1 { width: 260px; height: 320px; top: 0; right: 80px; border: 3px solid var(--red); }
.card2 { width: 210px; height: 240px; bottom: 0; right: 0; border: 3px solid rgba(255,255,255,0.15); }
.card3 { width: 180px; height: 200px; top: 60px; right: 310px; border: 3px solid rgba(255,255,255,0.08); }

/* ============================================
   HIGHLIGHTS STRIP
   ============================================ */
.highlights {
  background: var(--red);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.highlight-item:last-child { border-right: none; }

.highlight-icon { font-size: 1.8rem; }

.highlight-item strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 2px;
}
.highlight-item p { font-size: 0.82rem; opacity: 0.85; }

/* ============================================
   ACTIVITIES SECTION
   ============================================ */
.activities {
  background: var(--dark2);
  padding: 100px 24px;
}

.section-container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.section-sub {
  color: #999;
  font-size: 1.05rem;
  margin-bottom: 60px;
  max-width: 500px;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.activity-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark3);
  transition: transform var(--transition), box-shadow var(--transition);
}
.activity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.activity-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.activity-info { padding: 24px; }
.activity-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.activity-info p { color: #aaa; font-size: 0.95rem; line-height: 1.6; }

/* ============================================
   PAGE HERO (About & Contact)
   ============================================ */
.page-hero {
  padding: 100px 24px 70px;
  background: var(--dark2);
  border-bottom: 2px solid var(--dark3);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: var(--red);
  border-radius: 50%;
  opacity: 0.06;
}

.page-hero-content { max-width: 1100px; margin: 0 auto; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.page-hero p { color: #999; font-size: 1.1rem; }

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  background: var(--dark);
  padding: 80px 24px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.about-card {
  background: var(--dark3);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.06);
}

.about-card-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-card h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  color: var(--white);
}

.about-card p {
  color: #bbb;
  line-height: 1.75;
  font-size: 0.97rem;
  margin-bottom: 16px;
}
.about-card p:last-of-type { margin-bottom: 24px; }

.membership-fee {
  background: var(--dark2);
  border: 2px solid var(--red);
  border-radius: 10px;
  padding: 24px;
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fee-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
}
.fee-amount {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--red);
  letter-spacing: -1px;
}
.fee-note {
  font-size: 0.85rem;
  color: var(--gray);
}

/* ============================================
   SHOP COMING SOON
   ============================================ */
.shop-coming-soon {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.shop-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.shop-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
  background: var(--red);
}
.s1 { width: 600px; height: 600px; top: -200px; left: -200px; }
.s2 { width: 400px; height: 400px; bottom: -100px; right: -100px; }

.shop-content {
  max-width: 780px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.shop-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(232,0,29,0.12);
  border: 1px solid rgba(232,0,29,0.3);
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 24px;
}

.shop-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 24px;
  line-height: 1;
}

.shop-desc {
  color: #bbb;
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.shop-launch {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  background: var(--red);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  margin-bottom: 48px;
}

.shop-image-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 48px;
  border: 2px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.shop-image-wrap img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  opacity: 0.8;
}

.shop-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.shop-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: var(--dark3);
  padding: 20px 28px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
  min-width: 120px;
}
.shop-feature span { font-size: 1.8rem; }
.shop-feature p {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ccc;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  background: var(--dark);
  padding: 80px 24px;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.contact-info > p {
  color: #bbb;
  line-height: 1.7;
  font-size: 0.97rem;
  margin-bottom: 36px;
}

.contact-details { display: flex; flex-direction: column; gap: 16px; }

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #ccc;
  font-size: 0.95rem;
}
.contact-detail-item i {
  width: 36px; height: 36px;
  background: var(--dark3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Contact form */
.contact-form {
  background: var(--dark3);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.06);
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.97rem;
  transition: border-color var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
}
.form-group select option { background: var(--dark2); }
.form-group textarea { resize: vertical; }

.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(0,200,100,0.1);
  border: 1px solid rgba(0,200,100,0.3);
  border-radius: 8px;
  color: #4ade80;
  font-size: 0.95rem;
  text-align: center;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark2);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 24px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer span {
  font-size: 0.82rem;
  color: var(--gray);
}

.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 34px; height: 34px;
  background: var(--dark3);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.footer-socials a:hover {
  background: var(--red);
  color: var(--white);
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 60px 24px;
    text-align: center;
    min-height: auto;
  }
  .hero-btns { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-images { display: none; }

  .highlights { grid-template-columns: repeat(2, 1fr); }
  .highlight-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .highlight-item:nth-child(2), .highlight-item:nth-child(4) { border-bottom: none; }

  .activity-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 640px) {
  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--dark);
    border-bottom: 2px solid var(--red);
    flex-direction: column;
    padding: 16px 0;
    gap: 0;
  }
  .nav-links.open { display: flex; }

  .nav-link {
    padding: 14px 24px;
    border-radius: 0;
    width: 100%;
  }
  .shop-link {
    flex-direction: row;
    gap: 10px;
    align-items: center;
  }

  .highlights { grid-template-columns: 1fr 1fr; }

  .activity-grid { grid-template-columns: 1fr; }

  .hero-title { font-size: 3rem; }

  .about-card { padding: 28px 20px; }

  .contact-form { padding: 24px 20px; }

  .shop-features { gap: 16px; }
  .shop-feature { padding: 16px 20px; min-width: 100px; }
}