/* ============================================
   THE CLUBHOUSE - BARBERS + STYLISTS
   Design System | Premium Dark Barbershop Aesthetic
   Built by Dotsher Design Team (ATOS v1.0)
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #1a1a1a;
  --bg-overlay: rgba(0, 0, 0, 0.6);
  --text-primary: #ffffff;
  --text-secondary: #999999;
  --text-muted: #666666;
  --accent-gold: #c8a97e;
  --accent-gold-hover: #d4b88e;
  --border-color: #222222;
  --border-light: #333333;
  --star-color: #e8a42a;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.2s ease;
  --max-width: 1400px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--accent-gold);
}

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

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  text-transform: uppercase;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
}

/* --- Utility Classes --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 6rem 0;
}

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

.text-gold {
  color: var(--accent-gold);
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* --- Header / Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  height: var(--header-height);
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1001;
}

.logo svg {
  width: 45px;
  height: 45px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1.2;
}

.logo-tagline {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.btn-book {
  background: var(--accent-gold);
  color: var(--bg-primary);
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: var(--transition-fast);
}

.nav-links a.btn-book::after {
  display: none;
}

.nav-links a.btn-book:hover {
  background: var(--accent-gold-hover);
  color: var(--bg-primary);
  transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition-fast);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Social Share Sidebar (Fixed Left) --- */
.social-sidebar {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.social-sidebar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.social-sidebar a.fb {
  background: #3b5998;
  color: #fff;
}

.social-sidebar a.tw {
  background: #1da1f2;
  color: #fff;
}

.social-sidebar a.ig {
  background: #e1306c;
  color: #fff;
}

.social-sidebar a:hover {
  opacity: 0.85;
  transform: scale(1.05);
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg-primary);
  padding-top: var(--header-height);
}

.hero-image {
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.hero-image:hover img {
  transform: scale(1.05);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 500px;
}

/* --- Image Carousel / Slider --- */
.carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.carousel-dot.active {
  background: var(--text-primary);
  transform: scale(1.2);
}

/* --- Product Showcase Section --- */
.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  background: var(--bg-secondary);
}

.product-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
}

.product-info .label {
  display: inline-block;
  border-left: 3px solid var(--accent-gold);
  padding-left: 1rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.product-info p {
  margin-bottom: 1.5rem;
}

.product-info .btn-shop {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-info .btn-shop:hover {
  gap: 0.75rem;
}

.product-images {
  position: relative;
  overflow: hidden;
}

.product-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Book Now CTA Section --- */
.book-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  background: var(--bg-primary);
}

.book-cta-image {
  position: relative;
  overflow: hidden;
}

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

.book-cta-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 4rem;
}

.book-cta-content h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  margin-bottom: 2rem;
}

.book-cta-content h1 a {
  color: var(--text-primary);
  transition: var(--transition-smooth);
}

.book-cta-content h1 a:hover {
  color: var(--accent-gold);
}

/* --- Tagline Section --- */
.tagline-section {
  padding: 8rem 2rem;
  background: var(--bg-primary);
}

.tagline-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.tagline-section h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
}

.tagline-images {
  position: relative;
  height: 500px;
}

/* --- Gallery Section --- */
.gallery-section {
  background: var(--bg-primary);
  padding: 2rem 0;
}

.gallery-wide {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.gallery-wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-wide:hover img {
  transform: scale(1.03);
}

.gallery-title {
  text-align: center;
  padding: 4rem 2rem;
}

.gallery-title h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
}

/* --- Testimonials Section --- */
.testimonials {
  background: var(--bg-secondary);
  padding: 6rem 0;
}

.testimonials h1 {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  letter-spacing: 0.15em;
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 2rem;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  border-color: var(--border-light);
  transform: translateY(-3px);
}

.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--star-color);
}

.testimonial-card h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.testimonial-card p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.testimonial-card .author {
  color: var(--accent-gold);
  font-weight: 500;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  display: block;
}

.reviews-link {
  text-align: center;
  padding: 3rem 2rem;
}

.reviews-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-gold);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--accent-gold);
  padding: 0.8rem 2rem;
  transition: var(--transition-fast);
}

.reviews-link a:hover {
  background: var(--accent-gold);
  color: var(--bg-primary);
}

/* --- Footer --- */
.site-footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  padding: 2rem 0;
}

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

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-gold);
  color: var(--bg-primary);
  padding: 0.75rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition-fast);
}

.footer-book-btn:hover {
  background: var(--accent-gold-hover);
  color: var(--bg-primary);
  transform: translateY(-1px);
}

.footer-book-btn .note {
  font-weight: 400;
  font-size: 0.7rem;
  opacity: 0.8;
}

/* --- Services Page --- */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-top: var(--header-height);
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-primary) 0%, transparent 60%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem;
}

.page-hero-content h1 {
  font-size: clamp(2rem, 5vw, 4rem);
}

/* Services Content */
.services-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--bg-primary);
}

.services-list {
  padding: 4rem;
}

.service-category {
  margin-bottom: 3rem;
}

.service-category h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
  color: var(--accent-gold);
}

.service-category .category-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.service-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.service-item:last-child {
  border-bottom: none;
}

.service-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-duration {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-left: 0.5rem;
}

.service-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

.service-price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-gold);
  white-space: nowrap;
}

.services-image {
  position: relative;
  overflow: hidden;
}

.services-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: sticky;
  top: var(--header-height);
}

.service-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  padding: 2rem 4rem;
  border-top: 1px solid var(--border-color);
}

/* --- About Page --- */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 600px;
}

.about-story-content {
  padding: 6rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-story-content h2 {
  margin-bottom: 1.5rem;
}

.about-story-content p {
  margin-bottom: 1rem;
}

.about-story-image {
  position: relative;
  overflow: hidden;
}

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

/* Team Section */
.team-section {
  background: var(--bg-secondary);
  padding: 6rem 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

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

.team-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  margin-bottom: 1.5rem;
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: grayscale(30%);
}

.team-card:hover .team-card-image img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.team-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.team-card .role {
  font-size: 0.8rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Values Section */
.values-section {
  padding: 6rem 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.value-card {
  text-align: center;
  padding: 2rem;
}

.value-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  color: var(--accent-gold);
}

.value-card h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.9rem;
}

/* --- Contact Page --- */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: calc(100vh - var(--header-height));
  padding-top: var(--header-height);
}

.contact-info {
  padding: 6rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info h1 {
  margin-bottom: 2rem;
}

.contact-detail {
  margin-bottom: 2rem;
}

.contact-detail h3 {
  font-size: 0.85rem;
  color: var(--accent-gold);
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
}

.contact-detail p,
.contact-detail a {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.contact-social {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-social a {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.contact-social a:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.contact-map {
  position: relative;
  background: var(--bg-secondary);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(80%) invert(92%) contrast(90%);
}

/* Contact Form */
.contact-form {
  margin-top: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.btn-submit {
  background: var(--accent-gold);
  color: var(--bg-primary);
  border: none;
  padding: 0.8rem 2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-submit:hover {
  background: var(--accent-gold-hover);
  transform: translateY(-1px);
}

/* --- Privacy / Terms Pages --- */
.legal-page {
  padding-top: calc(var(--header-height) + 4rem);
  padding-bottom: 4rem;
}

.legal-page .container {
  max-width: 800px;
}

.legal-page h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.legal-page h2 {
  font-size: 1.5rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.legal-page p {
  margin-bottom: 1rem;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-image {
    height: 60vh;
  }

  .hero-content {
    padding: 3rem 2rem;
  }

  .product-showcase {
    grid-template-columns: 1fr;
  }

  .book-cta {
    grid-template-columns: 1fr;
  }

  .book-cta-image {
    height: 50vh;
  }

  .tagline-section .container {
    grid-template-columns: 1fr;
  }

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

  .services-section {
    grid-template-columns: 1fr;
  }

  .services-image {
    height: 400px;
    order: -1;
  }

  .about-story {
    grid-template-columns: 1fr;
  }

  .about-story-image {
    height: 400px;
  }

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

  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-map {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--bg-secondary);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.4s ease;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
  }

  .nav-links.open {
    right: 0;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-image {
    height: 50vh;
  }

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

  .gallery-wide {
    height: 300px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
  }

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

  .footer-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .social-sidebar {
    display: none;
  }

  .services-list {
    padding: 3rem 2rem;
  }

  .contact-info {
    padding: 4rem 2rem;
  }

  .about-story-content {
    padding: 4rem 2rem;
  }
}

@media (max-width: 480px) {
  :root {
    --header-height: 65px;
  }

  h1 {
    font-size: 2rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .book-cta-content h1 {
    font-size: 2.5rem;
  }
}

/* --- Page Transition Overlay --- */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.page-transition.loaded {
  opacity: 0;
}

/* --- Loading Animation --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.8s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }
