/* ==========================================================================
   HAIR SALON LUMIERE - Design System & Reset
   ========================================================================== */

:root {
  /* Color Palette (Clean Luxury Minimal theme) */
  --bg-color: #fafafa;           /* Soft clean white */
  --text-main: #1a1a1a;          /* Urban deep black */
  --text-muted: #666666;         /* Slate gray */
  --primary-color: #a88a74;      /* Luxury bronze/gold champagne */
  --primary-light: #cfae95;      /* Champagne shine */
  --primary-dark: #7d6350;       /* Roasted coffee */
  --accent-color: #222222;       /* Minimal black */
  --accent-light: #f2f2f2;       /* Light neutral gray background */
  --card-bg: #ffffff;            /* Pure white for cards */
  --border-color: #e5e5e5;       /* Thin chic border */
  --glass-bg: rgba(250, 250, 250, 0.85);
  
  /* Fonts */
  --font-serif: 'Playfair Display', 'Noto Serif JP', serif;
  --font-sans: 'Inter', 'Noto Sans JP', sans-serif;
  
  /* Utilities */
  --max-width: 1140px;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --border-radius: 4px;          /* Minimalist sharp corners */
  --box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: var(--bg-color);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

ul {
  list-style: none;
}

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

/* Reusable Components */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center {
  text-align: center;
}

.section-sub {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  color: var(--primary-color);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.section-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 4rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  border-radius: var(--border-radius);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--accent-color);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(168, 138, 116, 0.15);
}

.btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.btn-secondary:hover {
  background-color: #ffffff;
  color: var(--text-main);
  transform: translateY(-2px);
}

/* Glass Card */
.glass-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

/* ==========================================================================
   Header & Navbar Style
   ========================================================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 2rem 0;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background-color: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1.2rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
  border-bottom: 1px solid var(--border-color);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--text-main);
}

.nav-menu {
  display: flex;
  gap: 3rem;
}

.nav-menu a {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-main);
  opacity: 0.75;
}

.nav-menu a:hover {
  color: var(--primary-color);
  opacity: 1;
}

.nav-btn {
  padding: 0.6rem 1.6rem;
  border-radius: var(--border-radius);
  background-color: transparent;
  color: var(--text-main);
  border: 1px solid var(--text-main);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.nav-btn:hover {
  background-color: var(--text-main);
  color: #ffffff;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 1px;
  background-color: var(--text-main);
  transition: var(--transition-smooth);
}

/* ==========================================================================
   Hero Section Style
   ========================================================================== */

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  color: #ffffff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1562322140-8baeececf3df?auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
  z-index: -2;
}

.hero:hover .hero-bg {
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 26, 0.45);
  z-index: -1;
}

.hero-content {
  max-width: 650px;
  padding: 0 2rem;
  margin-left: calc((100% - var(--max-width)) / 2 + 2rem);
  animation: fadeInUp 1.2s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary-light);
  display: block;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.35;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.hero-desc {
  font-size: 1rem;
  font-weight: 300;
  opacity: 0.95;
  margin-bottom: 3rem;
  letter-spacing: 0.05em;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-serif);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  opacity: 0.8;
}

.scroll-indicator .arrow {
  width: 1px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.scroll-indicator .arrow::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 15px;
  background-color: #ffffff;
  animation: scrollDown 2s infinite ease-in-out;
}

@keyframes scrollDown {
  0% { top: -15px; }
  50% { top: 40px; }
  100% { top: 40px; }
}

/* ==========================================================================
   Concept Section Style
   ========================================================================== */

.concept-section {
  padding: 9rem 0;
}

.concept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.concept-img-wrapper {
  position: relative;
}

.concept-img {
  border-radius: var(--border-radius);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.img-accent-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--primary-color);
  border-radius: var(--border-radius);
  z-index: -1;
  transform: translate(-10px, -10px);
}

.concept-text {
  padding-left: 1rem;
}

.concept-p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.concept-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
  border-top: 1px solid var(--border-color);
  padding-top: 2.5rem;
}

.feature-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.feature-item h4 {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.feature-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==========================================================================
   Menu & Price Section Style
   ========================================================================== */

.menu-section {
  padding: 9rem 0;
  background-color: var(--accent-light);
}

.menu-table-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem;
  background-color: #ffffff;
}

.menu-category {
  margin-bottom: 4rem;
}

.menu-category:last-child {
  margin-bottom: 0;
}

.menu-category h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  border-bottom: 1px solid var(--text-main);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  letter-spacing: 0.1em;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.menu-category h3 i {
  font-size: 1rem;
  color: var(--primary-color);
}

.menu-category h3 .sub {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0;
}

.menu-item-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px dashed var(--border-color);
  transition: var(--transition-smooth);
}

.menu-item-row:hover {
  background-color: rgba(168, 138, 116, 0.02);
  padding-left: 10px;
  padding-right: 10px;
}

.item-name h4 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.item-name p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.item-price {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-main);
  white-space: nowrap;
}

/* ==========================================================================
   Stylist Section Style
   ========================================================================== */

.stylist-section {
  padding: 9rem 0;
}

.stylist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.stylist-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--border-radius);
  background-color: #ffffff;
  transition: var(--transition-smooth);
}

.stylist-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.stylist-img-holder {
  height: 380px;
  overflow: hidden;
}

.stylist-img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.stylist-card:hover .stylist-img-holder img {
  transform: scale(1.05);
}

.stylist-info {
  padding: 2.5rem;
}

.stylist-info .role {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  color: var(--primary-color);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.stylist-info h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
  letter-spacing: 0.05em;
}

.stylist-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  height: 80px; /* Keep heights consistent */
  overflow: hidden;
}

.stylist-social a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-main);
  border-bottom: 1px solid var(--text-main);
  padding-bottom: 2px;
}

.stylist-social a:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

/* ==========================================================================
   Gallery Section Style
   ========================================================================== */

.gallery-section {
  padding: 9rem 0;
  border-top: 1px solid var(--border-color);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  height: 380px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 26, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-overlay span {
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  transform: translateY(10px);
  transition: var(--transition-smooth);
  border-bottom: 1px solid #ffffff;
  padding-bottom: 4px;
}

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

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}

/* ==========================================================================
   Booking & Info Section Style
   ========================================================================== */

.reserve-section {
  padding: 9rem 0;
  background-color: var(--accent-light);
}

.reserve-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
  align-items: center;
}

.reserve-content {
  padding-right: 2rem;
}

.reserve-p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 3rem;
}

.booking-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.btn-book {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-book i {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.btn-book span {
  font-size: 0.75rem;
  opacity: 0.7;
  font-weight: 400;
  margin-top: 4px;
}

.btn-book.hpb {
  background-color: #df386b; /* HPB Pink Accent */
  color: #ffffff;
}

.btn-book.hpb:hover {
  background-color: #c42958;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(223, 56, 107, 0.2);
}

.btn-book.line {
  background-color: #06c755; /* Line Green */
  color: #ffffff;
}

.btn-book.line:hover {
  background-color: #05ae4a;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(6, 199, 85, 0.2);
}

.salon-info-card {
  padding: 3.5rem;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
}

.salon-info-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--text-main);
  padding-bottom: 0.8rem;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.8rem;
}

.info-row:last-child {
  margin-bottom: 0;
}

.info-row i {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-top: 4px;
}

.info-row p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.info-row strong {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
}

.map-link {
  font-size: 0.8rem;
  color: var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
  padding-bottom: 1px;
}

/* ==========================================================================
   Footer & Access Style
   ========================================================================== */

.access-section {
  background-color: #111111;
  color: #ffffff;
  padding: 7rem 0 3.5rem;
}

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  margin-bottom: 5rem;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  margin-bottom: 0.3rem;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 2.5rem;
}

.footer-desc-p {
  font-size: 0.85rem;
  opacity: 0.7;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.03);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-links a:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #ffffff;
  transform: translateY(-2px);
}

.access-map {
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 360px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background-color: #222222;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.25);
}

.map-placeholder i {
  font-size: 2.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.75rem;
  opacity: 0.4;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   Lightbox Gallery Modal Style
   ========================================================================== */

.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 26, 26, 0.97);
  backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.lightbox-content {
  max-width: 85%;
  max-height: 75%;
  border-radius: var(--border-radius);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  animation: zoomIn 0.4s ease forwards;
}

@keyframes zoomIn {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
  position: absolute;
  top: 2.5rem;
  right: 3rem;
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 300;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.lightbox-close:hover {
  transform: rotate(90deg);
  color: var(--primary-light);
}

.lightbox-caption {
  color: #ffffff;
  margin-top: 1.5rem;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  opacity: 0.85;
}

/* ==========================================================================
   Mobile Responsive Adjustments
   ========================================================================== */

@media (max-width: 991px) {
  .navbar {
    padding: 1.2rem 0;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--bg-color);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    transition: 0.5s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu a {
    font-size: 1.2rem;
    font-family: var(--font-serif);
  }
  
  .nav-btn {
    display: none;
  }

  .concept-grid,
  .stylist-grid,
  .reserve-wrapper,
  .access-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .concept-img-wrapper {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .concept-img {
    height: 380px;
  }

  .menu-table-wrapper {
    padding: 2rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2.3rem;
  }
  
  .hero-desc {
    font-size: 0.95rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .salon-info-card {
    padding: 2rem;
  }
}
