/* ============================================================
   website.css — Apple-style dark theme for public website
   Little Collins Massage & Beauty
   ============================================================ */

/* — Reset & Base — */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
  background: #000;
  color: #f5f5f7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* — Navigation — */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0 24px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.nav-inner {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #f5f5f7;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 22px;
  list-style: none;
  flex-shrink: 0;
  overflow: visible;
}

.nav-links a {
  color: #86868b;
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #f5f5f7;
}

/* — Hamburger — */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #f5f5f7;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* Hamburger → X when active */
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav open state */
.nav-open .nav-links {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 48px;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  padding: 24px;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-open .nav-links a {
  font-size: 17px;
  color: #f5f5f7;
}

/* — Hero — */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding: 0 24px 100px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.3) blur(2px);
  transform: scale(1.05);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.2) 40%,
    rgba(0, 0, 0, 0.8) 80%,
    #000 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-pretitle {
  font-size: 13px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
  font-weight: 400;
}

.hero h1 {
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 600;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 24px;
  color: #f5f5f7;
}

.hero p {
  font-size: 21px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  max-width: 500px;
  line-height: 1.5;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* — Buttons — */
.btn-primary {
  padding: 14px 32px;
  background: #f5f5f7;
  color: #000;
  border: none;
  border-radius: 980px;
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
  font-family: inherit;
}

.btn-primary:hover {
  background: #e0e0e2;
  transform: scale(1.02);
}

.btn-secondary {
  padding: 14px 32px;
  background: transparent;
  color: #2997ff;
  border: none;
  border-radius: 980px;
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
  font-family: inherit;
}

.btn-secondary:hover {
  color: #5ab1ff;
}

/* — Photo Strip — */
.photo-strip {
  padding: 80px 0;
  overflow: hidden;
}

.photo-strip-inner {
  display: flex;
  gap: 12px;
  padding: 0 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.photo-strip-inner::-webkit-scrollbar {
  display: none;
}

.photo-item {
  flex: 0 0 320px;
  height: 240px;
  border-radius: 16px;
  overflow: hidden;
  scroll-snap-align: start;
  position: relative;
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.photo-item:hover img {
  transform: scale(1.05);
}

.photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
}

/* — Sections — */
.section {
  padding: 100px 24px;
  max-width: 980px;
  margin: 0 auto;
}

.section-label {
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #86868b;
  margin-bottom: 8px;
}

.section h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
  color: #f5f5f7;
}

.section .lead {
  font-size: 19px;
  color: #86868b;
  font-weight: 300;
  line-height: 1.5;
  max-width: 600px;
}

/* — Services Grid — */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.service-card {
  background: #1d1d1f;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s;
  cursor: default;
}

.service-card:hover {
  transform: scale(1.02);
}

.service-card-image {
  height: 200px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.service-card:hover .service-card-image img {
  transform: scale(1.08);
}

.service-card-body {
  padding: 28px 24px;
}

.service-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #f5f5f7;
}

.service-card p {
  color: #86868b;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 300;
}

.service-price {
  margin-top: 16px;
  font-size: 15px;
  color: #86868b;
}

.service-price span {
  color: #f5f5f7;
  font-weight: 500;
}

/* — Roster Grid — */
.roster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.roster-card {
  background: #1d1d1f;
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.3s;
}

.roster-card:hover {
  transform: translateY(-4px);
}

.roster-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a2a2e, #3a3a3e);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 500;
  color: #86868b;
}

.roster-name {
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 4px;
  color: #f5f5f7;
}

.roster-detail {
  font-size: 14px;
  color: #86868b;
  font-weight: 300;
}

.roster-desc {
  margin-top: 10px;
  font-size: 13px;
  color: #86868b;
  font-weight: 300;
  font-style: italic;
}

/* — Full-width Image Break — */
.image-break {
  width: 100%;
  height: 50vh;
  position: relative;
  overflow: hidden;
}

.image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    #000 0%,
    transparent 20%,
    transparent 80%,
    #000 100%
  );
}

.image-break-text {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  white-space: nowrap;
}

.image-break-text h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: -1px;
  color: #f5f5f7;
}

.image-break-text p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 17px;
  font-weight: 300;
  margin-top: 8px;
}

/* — Pricing Table — */
.pricing-table {
  margin-top: 48px;
  width: 100%;
  border-collapse: collapse;
}

.pricing-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-table td {
  padding: 20px 0;
  font-size: 17px;
  color: #f5f5f7;
}

.pricing-table td:first-child {
  font-weight: 500;
}

.pricing-table td:last-child {
  text-align: right;
  color: #86868b;
}

/* — Contact Grid — */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}

.contact-card {
  background: #1d1d1f;
  border-radius: 20px;
  padding: 32px;
}

.contact-card h3 {
  font-size: 15px;
  color: #86868b;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.contact-card p {
  font-size: 21px;
  font-weight: 300;
  line-height: 1.5;
  color: #f5f5f7;
}

/* — Map Container — */
.map-container {
  margin-top: 48px;
  border-radius: 20px;
  overflow: hidden;
  height: 300px;
  background: #1d1d1f;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #86868b;
  font-size: 15px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* — Footer — */
.footer {
  padding: 40px 24px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 60px;
}

.footer p {
  color: #424245;
  font-size: 13px;
  font-weight: 300;
}

/* — Divider — */
.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  max-width: 980px;
  margin: 0 auto;
}

/* ============================================================
   Mobile — max-width: 600px
   ============================================================ */
@media (max-width: 768px) {
  /* Show hamburger, hide nav links */
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  /* When nav-open class is on <nav>, show links vertically */
  .nav-open .nav-links {
    display: flex;
  }

  /* Photo strip — smaller items */
  .photo-item {
    flex: 0 0 260px;
    height: 200px;
  }

  /* Service card image shorter */
  .service-card-image {
    height: 160px;
  }

  /* Service cards full width */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Contact grid single column */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Hero adjustments */
  .hero {
    padding-bottom: 60px;
  }

  .hero p {
    font-size: 17px;
  }

  /* Image break text doesn't overflow */
  .image-break-text {
    white-space: normal;
    width: 90%;
    left: 5%;
    transform: none;
  }

  /* Section padding reduced */
  .section {
    padding: 60px 24px;
  }

  /* Buttons stack on small screens */
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}
