/* TRUE BLACK Website - Elegant Full-Screen Hero */

:root {
  --background: #F6F7F2;
  --surface: #FFFFFF;
  --primary: #1A1A1A;
  --text-primary: #1A1A1A;
  --text-secondary: #666666;
  --text-light: #FFFFFF;
  --border: #E8E8E8;
  --accent-cream: #F5F0E8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--background);
  color: var(--text-primary);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==================== HERO SECTION ==================== */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('/hero.jpg');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 40px 20px 80px;
}

.hero-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
}


.tagline {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 4px;
  margin-bottom: 48px;
  text-transform: uppercase;
}

.coming-soon {
  font-size: 12px;
  font-weight: 400;
  color: #FFFFFF !important;
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-transform: uppercase;
  opacity: 0.8;
}

/* App Store Buttons */
.app-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.app-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  color: #FFFFFF;
}

.app-btn svg {
  width: 28px;
  height: 28px;
}

.btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.btn-small {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.btn-large {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Scroll Indicator */
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-light);
  opacity: 0.7;
  margin-top: 24px;
}

.scroll-indicator span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.8), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ==================== FEATURES SECTION ==================== */
.features {
  padding: 120px 0;
  background: var(--surface);
}

.features h2 {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 64px;
  color: var(--text-primary);
  text-transform: uppercase;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

.feature {
  text-align: center;
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  color: var(--text-primary);
  stroke-width: 1.5;
}

.feature h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.feature p {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ==================== LOCATIONS SECTION ==================== */
.locations {
  padding: 120px 0;
  background: var(--background);
}

.locations h2 {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: var(--text-primary);
  text-transform: uppercase;
}

.locations-subtitle {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 64px;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.location {
  text-align: center;
  padding: 32px 16px;
  background: var(--surface);
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.location h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.location p {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-secondary);
}

/* ==================== FOOTER ==================== */
footer {
  background: var(--primary);
  color: var(--text-light);
  padding: 64px 0 32px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-logo {
  height: 32px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.footer-links h4 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links a {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--text-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
}

/* ==================== LEGAL PAGES ==================== */
.legal-page {
  padding: 80px 0;
  max-width: 800px;
  margin: 0 auto;
}

.legal-page h1 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 8px;
}

.legal-page .last-updated {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 48px;
}

.legal-page h2 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 48px;
  margin-bottom: 16px;
}

.legal-page h3 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-page p,
.legal-page li {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-page ul {
  margin-left: 24px;
  margin-bottom: 16px;
}

.legal-page li {
  margin-bottom: 8px;
}

.contact-box {
  background: var(--accent-cream);
  padding: 32px;
  border-radius: 16px;
  margin-top: 48px;
}

.contact-box h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.contact-box a {
  color: var(--text-primary);
}

/* Legal page header */
.legal-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 28px;
  width: auto;
}

nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  margin-left: 32px;
  transition: color 0.2s ease;
}

nav a:hover {
  color: var(--text-primary);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

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

@media (max-width: 768px) {
  .hero {
    background-attachment: scroll;
    background-position: center center;
    min-height: 100vh;
    min-height: 100dvh;
  }

  .hero-content {
    padding: 50px 20px 60px;
  }

  .hero-logo {
    height: 28px;
  }

  .hero-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .tagline {
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 24px;
  }

  .app-buttons {
    flex-direction: column;
    align-items: center;
  }

  .app-btn {
    padding: 10px 18px;
    gap: 10px;
  }

  .app-btn svg {
    width: 20px;
    height: 20px;
  }

  .btn-small {
    font-size: 8px;
  }

  .btn-large {
    font-size: 13px;
  }

  .features,
  .locations {
    padding: 80px 0;
  }

  .features h2,
  .locations h2 {
    font-size: 26px;
    margin-bottom: 48px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .location-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 16px;
  }

  .header-content {
    flex-direction: column;
    gap: 16px;
  }

  nav a {
    margin: 0 16px;
  }

  .scroll-indicator {
    display: none;
  }
}

@media (max-width: 480px) {
  .location-grid {
    grid-template-columns: 1fr;
  }

  .location {
    padding: 24px 16px;
  }
}
