/* ============================================
   Indulgence Beauty & Tanning — Luxury Theme
   ============================================ */

:root {
  --gold: #C6A664;
  --gold-light: #D4BA82;
  --gold-dark: #A88B4A;
  --black: #0D0D0D;
  --charcoal: #1A1A1A;
  --dark-gray: #2A2A2A;
  --medium-gray: #555;
  --light-gray: #999;
  --off-white: #F5F0EB;
  --white: #FAFAFA;
  --cream: #F8F4EF;
  --rose: #D4A0A0;
  --font-heading: 'Georgia', 'Times New Roman', serif;
  --font-body: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --max-width: 1200px;
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
ul { list-style: none; }

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

/* ---- TOP BAR ---- */
.top-bar {
  background: var(--black);
  color: var(--light-gray);
  font-size: 0.8rem;
  padding: 6px 0;
  letter-spacing: 0.5px;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: var(--gold-light); }
.top-bar a:hover { color: var(--gold); }

/* ---- HEADER / NAV ---- */
header {
  background: var(--charcoal);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--gold-dark);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.2;
}
.logo span { display: block; font-size: 0.55em; color: var(--gold-light); letter-spacing: 4px; font-weight: 400; }

nav ul {
  display: flex;
  gap: 28px;
  align-items: center;
}
nav a {
  color: var(--off-white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 0;
  position: relative;
  font-weight: 500;
}
nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
nav a:hover, nav a.active { color: var(--gold); }
nav a:hover::after, nav a.active::after { width: 100%; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  margin: 5px 0;
  transition: var(--transition);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  height: 70vh;
  min-height: 450px;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 24px;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--gold);
}
.hero p {
  font-size: 1.1rem;
  color: var(--off-white);
  margin-bottom: 28px;
  line-height: 1.8;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover {
  background: var(--gold-light);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(198,166,100,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
}

/* ---- SECTIONS ---- */
section { padding: 80px 0; }
.section-dark { background: var(--charcoal); color: var(--off-white); }
.section-cream { background: var(--cream); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--charcoal);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-dark .section-header h2 { color: var(--gold); }
.section-header .divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 16px auto;
}
.section-header p {
  color: var(--medium-gray);
  max-width: 600px;
  margin: 0 auto;
}
.section-dark .section-header p { color: var(--light-gray); }

/* ---- SERVICE CARDS ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.service-card {
  background: var(--white);
  border: 1px solid #E8E2D9;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.service-card img { width: 100%; height: 220px; object-fit: cover; }
.service-card-body {
  padding: 28px;
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--charcoal);
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.service-card p {
  color: var(--medium-gray);
  font-size: 0.92rem;
  margin-bottom: 16px;
}
.service-card .price {
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

/* ---- ABOUT SECTION ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-text h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--charcoal);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.about-text .divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 20px;
}
.about-text p { color: var(--medium-gray); margin-bottom: 16px; }
.about-img { overflow: hidden; }
.about-img img { width: 100%; height: 100%; object-fit: cover; min-height: 400px; }

/* ---- PRICING TABLE ---- */
.pricing-list { max-width: 700px; margin: 0 auto; }
.pricing-category { margin-bottom: 48px; }
.pricing-category h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(198,166,100,0.3);
  letter-spacing: 1px;
}
.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px dotted #DDD;
}
.pricing-item .name { font-size: 0.95rem; color: var(--charcoal); }
.pricing-item .duration { font-size: 0.8rem; color: var(--light-gray); margin-left: 8px; }
.pricing-item .price { font-weight: 600; color: var(--gold-dark); white-space: nowrap; }

/* ---- GALLERY ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-item {
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* ---- TESTIMONIALS ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.testimonial {
  background: var(--dark-gray);
  padding: 36px;
  border-left: 3px solid var(--gold);
}
.testimonial p {
  font-style: italic;
  color: var(--off-white);
  margin-bottom: 16px;
  line-height: 1.8;
}
.testimonial .author {
  color: var(--gold-light);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.stars { color: var(--gold); margin-bottom: 12px; letter-spacing: 2px; }

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--charcoal);
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-detail .icon {
  width: 40px;
  height: 40px;
  background: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: bold;
  font-size: 1rem;
}
.contact-detail p { color: var(--medium-gray); font-size: 0.92rem; }
.contact-detail strong { color: var(--charcoal); display: block; margin-bottom: 4px; }

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #DDD;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  margin-bottom: 16px;
  transition: border-color var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ---- OPENING HOURS ---- */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  max-width: 400px;
}
.hours-table td {
  padding: 10px 0;
  border-bottom: 1px dotted #DDD;
  font-size: 0.92rem;
}
.hours-table td:first-child { color: var(--charcoal); font-weight: 500; }
.hours-table td:last-child { color: var(--medium-gray); text-align: right; }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: var(--gold);
  padding: 56px 0;
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--black);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.cta-banner p { color: var(--dark-gray); margin-bottom: 24px; }
.cta-banner .btn {
  background: var(--black);
  color: var(--gold);
}
.cta-banner .btn:hover {
  background: var(--charcoal);
  transform: translateY(-2px);
}

/* ---- FOOTER ---- */
footer {
  background: var(--black);
  color: var(--light-gray);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col p { font-size: 0.85rem; line-height: 1.8; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: var(--light-gray); font-size: 0.85rem; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid #222;
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  color: #666;
}

/* ---- BREADCRUMBS ---- */
.breadcrumbs {
  background: var(--cream);
  padding: 14px 0;
  font-size: 0.82rem;
  color: var(--light-gray);
}
.breadcrumbs a { color: var(--gold-dark); }
.breadcrumbs span { margin: 0 8px; color: #CCC; }

/* ---- INNER PAGE HERO ---- */
.page-hero {
  background: var(--charcoal);
  padding: 80px 0 60px;
  text-align: center;
  color: var(--white);
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.page-hero p { color: var(--light-gray); max-width: 600px; margin: 0 auto; }

/* ---- TREATMENT DETAIL ---- */
.treatment-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 56px;
}
.treatment-detail img { width: 100%; height: 350px; object-fit: cover; }
.treatment-detail h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.treatment-detail p { color: var(--medium-gray); margin-bottom: 12px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .about-grid,
  .contact-grid,
  .treatment-detail { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .hero h1 { font-size: 2.2rem; }
  .hero { height: 55vh; min-height: 350px; }
}

@media (max-width: 768px) {
  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--charcoal);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    border-top: 1px solid var(--gold-dark);
  }
  nav ul.open { display: flex; }
  .menu-toggle { display: block; }

  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
  .section-header h2 { font-size: 1.7rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.7rem; letter-spacing: 2px; }
  .hero p { font-size: 0.95rem; }
  .top-bar .container { flex-direction: column; text-align: center; }
  .logo { font-size: 1.3rem; }
}
