/* Concept 2: The Sensory Journey - Style Sheet */

/* Hero Section */
.luxury-hero {
  min-height: 100vh;
  padding: 140px 0 80px 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  text-align: center;
  overflow: hidden;
}

.luxury-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(54, 39, 28, 0.6) 0%, rgba(32, 21, 15, 0.9) 100%), url('assets/cafe_interior.png') center/cover no-repeat;
  z-index: -1;
  transform: scale(1.05);
  animation: zoomOut 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes zoomOut {
  from { transform: scale(1.1); }
  to { transform: scale(1); }
}

.hero-box {
  max-width: 800px;
  padding: 40px;
  border: 1px solid rgba(208, 169, 106, 0.3);
  background-color: rgba(32, 21, 15, 0.4);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-premium);
}

.hero-title {
  font-size: 4rem;
  font-family: var(--font-serif);
  line-height: 1.15;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.8rem;
  }
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 24px;
}

/* Editorial Story Layout */
.editorial-intro {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 100px 24px;
}

.editorial-intro h2 {
  font-size: 2.5rem;
  color: var(--color-espresso);
  font-family: var(--font-serif);
  line-height: 1.4;
  margin-bottom: 24px;
}

.editorial-intro p {
  font-size: 1.2rem;
  line-height: 2;
  color: var(--color-text-muted);
}

/* Chapter Sections */
.chapter-section {
  padding: 120px 0;
  border-top: 1px solid rgba(208, 169, 106, 0.15);
}

.chapter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

@media (max-width: 992px) {
  .chapter-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.chapter-num {
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 1;
  color: rgba(208, 169, 106, 0.2);
  margin-bottom: 12px;
  font-style: italic;
}

.chapter-title {
  font-size: 2.8rem;
  color: var(--color-espresso);
  margin-bottom: 24px;
}

.chapter-desc {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--color-text-muted);
  margin-bottom: 30px;
}

.chapter-img-container {
  position: relative;
  padding: 20px;
  cursor: pointer;
}

.chapter-img-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 90%;
  border: 1px solid var(--color-gold);
  z-index: 1;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.chapter-img-container img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-premium);
  display: block;
  transition: var(--transition-smooth);
}

.chapter-img-container:hover img {
  transform: translate(-8px, -8px);
  box-shadow: var(--shadow-hover);
}

.chapter-img-container:hover::before {
  transform: translate(8px, 8px);
  border-color: var(--color-crimson);
}

@media (max-width: 768px) {
  .chapter-img-container img {
    height: 350px;
  }
}

.chapter-left .chapter-img-container::before {
  top: auto;
  bottom: 0;
  left: auto;
  right: 0;
}

/* Luxury Drop Cap */
.drop-cap {
  font-family: var(--font-serif);
  font-size: 3.6rem;
  font-weight: 700;
  float: left;
  line-height: 0.8;
  padding-right: 14px;
  padding-top: 6px;
  color: var(--color-gold);
  text-shadow: 1px 1px 0px rgba(0,0,0,0.05);
}

/* Specific Section Modifiers */
.theme-dark {
  background-color: var(--color-espresso);
  color: var(--color-white);
  border-top: none;
}

.theme-dark .chapter-title {
  color: var(--color-white);
}

.theme-dark .chapter-desc {
  color: rgba(255, 255, 255, 0.7);
}

.theme-dark .chapter-img-container::before {
  border-color: rgba(255, 255, 255, 0.2);
}

/* Luxury Map Section */
.blueprint-map-container {
  background-color: #FAF8F6;
  border: 1px solid rgba(208, 169, 106, 0.2);
  border-radius: var(--border-radius-lg);
  padding: 60px;
}

@media (max-width: 768px) {
  .blueprint-map-container {
    padding: 24px;
  }
}

/* Custom Nav styling for luxury design */
.luxury-nav {
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.luxury-nav .nav-link {
  color: var(--color-white);
}

.luxury-nav .logo-text {
  color: var(--color-white);
}

.luxury-nav .logo-subtext {
  color: var(--color-gold);
}

/* Scrolled Navbar Overrides for Light Pages */
.luxury-nav.navbar-scrolled .nav-link {
  color: var(--color-espresso) !important;
}

.luxury-nav.navbar-scrolled .logo-text {
  color: var(--color-crimson) !important;
}
