
/* Shared Styles for Winners Circle Barbershop — ATX */
:root {
  --bg: #050505;
  --bg-alt: #0d0d0d;
  --card: #111111;
  --border-subtle: #222222;
  --text-main: #f5f5f5;
  --text-muted: #b0b0b0;
  --accent: #e5e5e5;
  --accent-soft: #cfcfcf;
  --accent-gold: #d4af37;
  --danger: #ff4a4a;
  --max-width: 1080px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.65);
  --shadow-subtle: 0 10px 25px rgba(0, 0, 0, 0.4);
  --transition-fast: 180ms ease-out;
}

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

html, body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #1b1b1b 0, #050505 55%, #000 100%);
  color: var(--text-main);
  line-height: 1.7;
}

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

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

.page {
  min-height: 100vh;
  padding: 16px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

header.hero {
  padding: 16px 0 32px;
}

.hero-inner {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.00));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-soft);
  padding: 20px 18px 24px;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

.hero-inner::before {
  content: "";
  position: absolute;
  inset: -200px;
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.06), transparent 55%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.03), transparent 55%);
  pointer-events: none;
  z-index: -1;
}

.hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-badge {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-soft);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.brand-badge span.dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent-gold);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.9);
}

.brand h1 {
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.brand-sub span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.brand-sub .pill {
  padding: 2px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-cta-top {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.hero-cta-top small {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-soft);
  opacity: 0.9;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), border var(--transition-fast), color var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #000;
  box-shadow: var(--shadow-subtle);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8);
  background: #ffffff;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.7);
}

.hero-main {
  margin-top: 10px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr);
  gap: 24px;
}

.hero-text h2 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.hero-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 18px;
}

.hero-highlights .chip {
  font-size: 0.78rem;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.45);
  color: var(--accent-soft);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-highlights .chip span.icon {
  font-size: 0.9rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-actions small {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-media {
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.04), transparent 60%);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-media-img {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #151515;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  text-align: center;
  padding: 10px;
}

.hero-media-tag {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-media-tag span.badge {
  padding: 2px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

main {
  margin-top: 10px;
  padding-bottom: 40px;
}

section {
  margin-bottom: 26px;
}

.section-header {
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.section-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-soft);
}

.section-title {
  font-size: 1.15rem;
  font-weight: 600;
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.card {
  background: var(--card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  padding: 14px 14px 16px;
  box-shadow: var(--shadow-subtle);
}

/* Booking section */
#booking .card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#booking .booking-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#booking .booking-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

#booking .booking-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

#booking .booking-benefits span .dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.85);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
}

.service-item {
  border-radius: 14px;
  padding: 10px 11px 11px;
  background: linear-gradient(135deg, #101010, #050505);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.service-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}

.service-name {
  font-size: 0.95rem;
  font-weight: 500;
}

.service-price {
  font-size: 0.85rem;
  color: var(--accent-soft);
}

.service-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin-top: 4px;
}

.service-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Gallery */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.photo-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #151515;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-subtle);
}

.photo-card-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  padding: 8px;
  text-align: center;
}

.photo-tag {
  position: absolute;
  left: 8px;
  bottom: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  font-size: 0.7rem;
  color: var(--accent);
}

/* Testimonials */
.testimonials-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
}

.testimonial {
  background: linear-gradient(135deg, #101010, #050505);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 12px 13px 13px;
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: "“";
  position: absolute;
  top: -22px;
  right: 12px;
  font-size: 80px;
  opacity: 0.04;
}

.testimonial p {
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--accent-soft);
}

.testimonial-stars {
  color: var(--accent-gold);
  font-size: 0.8rem;
}

/* About / Location */
#about .card,
#location .card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

#location .map-placeholder {
  margin-top: 8px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #151515;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  padding: 10px;
}

/* Reviews page list */
.reviews-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}

.review-card {
  background: linear-gradient(135deg, #101010, #050505);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 12px 13px 13px;
  box-shadow: var(--shadow-subtle);
}

.review-meta {
  font-size: 0.8rem;
  color: var(--accent-soft);
  margin-bottom: 6px;
}

.review-text {
  font-size: 0.9rem;
}

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 20px;
}

footer .footer-top {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 10px;
}

footer .footer-brand {
  font-size: 0.9rem;
  font-weight: 500;
}

footer .footer-flex {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

footer .seo-line {
  font-size: 0.78rem;
  color: var(--accent-soft);
}

footer .footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

footer a.footer-link {
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 2px;
}

/* Floating book now button */
.floating-book {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 50;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.8);
}

@media (max-width: 540px) {
  .floating-book {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}

/* Larger screens */
@media (min-width: 720px) {
  .page {
    padding: 32px 20px 40px;
  }

  header.hero {
    padding: 24px 0 40px;
  }

  .hero-inner {
    padding: 22px 22px 24px;
  }

  .hero-main {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
    align-items: center;
    gap: 26px;
  }

  .brand h1 {
    font-size: 1.8rem;
  }

  .hero-text h2 {
    font-size: 1.6rem;
  }

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

  .photo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .testimonials-wrap {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  #booking .booking-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  #booking .booking-benefits {
    max-width: 320px;
  }

  footer .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  footer .footer-flex {
    flex-direction: row;
    gap: 18px;
  }

  footer .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
