/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Color theme inspired by book covers - Vibrant outdoor adventure palette */
  /* Colors from book covers: Bright Yellow, Deep Red, Dark Forest Green, Gold */
  --background: #1a1a0f; /* deep dark forest background */
  --foreground: #f5f5e8; /* warm cream text */
  --card: #2d2d1b; /* rich dark card */
  --card-foreground: #f5f5e8;
  --primary: #dc143c; /* vibrant red from book covers */
  --primary-foreground: #f5f5e8;
  --secondary: #2d5016; /* dark forest green */
  --secondary-foreground: #f5f5e8;
  --muted: #6b6b4a;
  --muted-foreground: #d4d4b8;
  --accent: #ffd700; /* bright gold accent */
  --accent-foreground: #1a1a0f;
  --border: #4a4a3a; /* muted border */
  --input: #2d2d1b;
  --ring: rgba(255, 215, 0, 0.5); /* gold ring */
  --radius: 0.75rem;
  
  /* Book cover inspired colors */
  --book-yellow: #ffd700; /* bright yellow sky */
  --book-red: #dc143c; /* deep red */
  --book-green: #1b4d1b; /* dark forest green */
  --book-gold: #ffd700; /* rich gold */
  --book-cream: #f5f5e8; /* warm cream */
  --book-dark: #0f0f08; /* deepest dark */
  --book-accent-light: #fff8dc; /* light cream accent */
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 10;
}

/* Full-bleed option requested */
.container-fluid {
  max-width: 1400px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* Hero section full width override */
.hero-section .container-fluid {
  padding-left: 0;
  padding-right: 0;
  max-width: none;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 26, 15, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}
.hero-title{
  font-size: 80px !important;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem 1rem 3rem;
}

.nav-brand {
  cursor: pointer;
}

.nav-brand a {
  display: inline-block;
  transition: transform 0.3s ease;
}

.nav-brand a:hover {
  transform: scale(1.05);
}

.nav-brand .brand-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--book-yellow), var(--book-gold), var(--book-red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.nav-brand a:hover .brand-text {
  text-shadow: 0 0 40px rgba(255, 215, 0, 0.5);
}

.nav-links {
  display: flex;
  gap: 2rem;
  margin-right: 2rem;
}

.nav-link {
  color: var(--muted-foreground);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: var(--foreground);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Atmospheric overlay inspired by book cover colors - Yellow, Red, Green */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 600px at 30% 20%, rgba(255,215,0,0.25), transparent 60%),
    radial-gradient(1000px 500px at 70% 25%, rgba(220,20,60,0.20), transparent 60%),
    radial-gradient(800px 400px at 50% 85%, rgba(27,77,27,0.15), transparent 65%);
  pointer-events: none;
  z-index: 1;
}

/* Hero theme palette inspired by Brother 5 (teal/space) + Zephyr (violet/desert gold) */
/* removed zephyr-specific hero visuals to restore original */

/* Hero banner image */
.hero-banner {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  will-change: transform;
  filter: brightness(0.9) contrast(1.1);
}
.chota{
  font-size: 30px;
  margin-left: 10px;
}
.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,26,15,0.65), rgba(15,15,8,0.85));
  animation: subtleGlow 4s ease-in-out infinite;
}

/* Interactive light effect inspired by the dramatic lighting */
.hero-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
    rgba(255, 165, 0, 0.15) 0%, 
    rgba(255, 140, 0, 0.08) 30%, 
    transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 2;
}

.hero-section:hover .hero-banner::after {
  opacity: 1;
}

@keyframes subtleGlow {
  0%, 100% { 
    background: linear-gradient(180deg, rgba(26,26,15,0.65), rgba(15,15,8,0.85));
  }
  50% { 
    background: linear-gradient(180deg, rgba(26,26,15,0.60), rgba(15,15,8,0.80));
  }
}


.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.floating-dot {
  position: absolute;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.dot-1 {
  top: 5rem;
  left: 2.5rem;
  width: 1rem;
  height: 1rem;
  background: linear-gradient(to right, var(--book-yellow), var(--book-gold));
  opacity: 0.6;
}

.dot-2 {
  top: 10rem;
  right: 5rem;
  width: 0.5rem;
  height: 0.5rem;
  background: linear-gradient(to right, var(--book-red), var(--primary));
  opacity: 0.8;
  animation-delay: 1s;
}

.dot-3 {
  bottom: 10rem;
  left: 5rem;
  width: 1.5rem;
  height: 1.5rem;
  background: linear-gradient(to right, var(--book-green), var(--book-yellow));
  opacity: 0.4;
  animation-delay: 2s;
}

.dot-4 {
  top: 15rem;
  right: 10rem;
  width: 0.75rem;
  height: 0.75rem;
  background: linear-gradient(to right, var(--book-gold), var(--book-red));
  opacity: 0.7;
  animation-delay: 0.5s;
}

.floating-line {
  position: absolute;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  animation: pulse 2s ease-in-out infinite;
}

.line-1 {
  top: 0;
  left: 25%;
  height: 8rem;
}

.line-2 {
  bottom: 0;
  right: 33%;
  height: 6rem;
  animation-delay: 1.5s;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 5rem 0;
  width: 100%;
  max-width: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 0;
  max-width: none;
  margin: 0;
}

.hero-text {
  padding-left: 3rem;
}

.hero-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.sparkle {
  animation: twinkle 2s ease-in-out infinite;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.text-gradient {
  background: linear-gradient(135deg, var(--book-yellow) 0%, var(--book-gold) 50%, var(--book-red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 10px rgba(255, 215, 0, 0.5));
}

.hero-description {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 32rem;
}

.hero-description-wrapper {
  max-width: 32rem;
  margin-bottom: 2rem;
}

.hero-description-wrapper .hero-description {
  margin-bottom: 1rem;
}

.hero-description-wrapper .hero-description:last-child {
  margin-bottom: 0;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--book-red), var(--primary), var(--book-yellow));
  color: var(--primary-foreground);
  box-shadow: 0 4px 15px rgba(220, 20, 60, 0.5);
  border: 1px solid rgba(255, 215, 0, 0.4);
  font-weight: 600;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--book-yellow), var(--book-gold), var(--book-red));
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 215, 0, 0.7);
}

.btn-outline {
  background: transparent;
  color: var(--foreground);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--book-yellow);
  background: rgba(255, 215, 0, 0.2);
  color: var(--book-yellow);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
}

.hero-stats {
  display: flex;
  gap: 2rem;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-stars {
  font-size: 1.5rem;
  color: var(--accent);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Book Carousel */
.book-carousel {
  position: relative;
  max-width: 24rem;
  margin: 0 16rem 0 auto;
  padding-right: 0;
}

/* Single Book Carousel Display - Creative and Attractive */
.book-carousel-single {
  position: relative;
  max-width: 24rem;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.book-card-single {
  position: relative;
  background: rgba(45, 45, 27, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 1.25rem;
  padding: 1.5rem;
  border: 2px solid rgba(255, 215, 0, 0.6);
  width: 100%;
  max-width: 20rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 35px rgba(220, 20, 60, 0.5), 
              0 0 50px rgba(255, 215, 0, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: bookCardEntrance 0.8s ease-out;
  overflow: hidden;
}

.book-card-single::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.book-card-single:hover::before {
  opacity: 1;
}

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

.book-card-single:hover {
  transform: translateY(-12px) scale(1.03);
  border-color: rgba(255, 215, 0, 0.9);
  box-shadow: 0 20px 60px rgba(255, 215, 0, 0.7), 
              0 0 80px rgba(220, 20, 60, 0.4),
              inset 0 1px 0 rgba(255, 255, 255, 0.15);
  background: rgba(45, 45, 27, 0.98);
}

/* Carousel Navigation Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(45, 45, 27, 0.9);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 215, 0, 0.6);
  color: var(--book-gold);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 20;
  box-shadow: 0 4px 15px rgba(220, 20, 60, 0.5);
}

.carousel-btn:hover {
  background: rgba(255, 215, 0, 0.25);
  border-color: var(--book-yellow);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.8);
  color: var(--book-yellow);
}

.book-carousel-single .carousel-prev {
  left: -0.75rem;
}

.book-carousel-single .carousel-next {
  right: -0.75rem;
}

/* Carousel Dots */
.carousel-dots {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.3);
  border: 2px solid rgba(255, 215, 0, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot:hover {
  background: rgba(255, 215, 0, 0.6);
  transform: scale(1.2);
}

.carousel-dot.active {
  background: var(--book-yellow);
  border-color: var(--book-gold);
  box-shadow: 0 0 15px rgba(255, 215, 0, 1);
  transform: scale(1.3);
}

.book-card {
  position: relative;
  background: rgba(45, 45, 27, 0.75);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 215, 0, 0.4);
  box-shadow: 0 4px 20px rgba(220, 20, 60, 0.4);
}

.new-release-tag {
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(135deg, var(--book-yellow), var(--book-gold), var(--book-red));
  color: var(--book-dark);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.4rem 0.85rem;
  border-radius: 18px;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
  border: 2px solid rgba(245, 245, 232, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

.book-image {
  aspect-ratio: 3 / 4;
  margin-bottom: 0.75rem;
  overflow: hidden;
  border-radius: 0.5rem;
}

.book-card-single .book-image {
  aspect-ratio: 4 / 5;
  margin-bottom: 0.75rem;
}

.book-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  border-radius: 0.5rem;
  box-shadow: 0 4px 16px rgba(139, 74, 107, 0.3);
}

.book-card-single .book-image img {
  box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

.book-card-single:hover .book-image img {
  transform: scale(1.08);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.7);
}

.book-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(255, 215, 0, 0.5);
}

.book-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.625rem;
}

.book-card-single .book-meta {
  margin-bottom: 0.5rem;
}

.book-genre {
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 215, 0, 0.2);
  color: var(--book-yellow);
  border-radius: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
}

.book-genre:hover {
  background: rgba(255, 215, 0, 0.3);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.5);
  color: var(--book-gold);
}

.book-genre a:hover {
  background: rgba(210, 105, 30, 0.15);
  transform: translateY(-1px);
}

.book-rating {
  color: var(--book-yellow);
  font-size: 0.75rem;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.book-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  color: var(--foreground);
  line-height: 1.3;
  transition: color 0.3s ease;
}

.book-card-single .book-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.book-card-single:hover .book-title {
  color: var(--book-yellow);
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.7);
}

.book-description {
  font-size: 0.9rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  transition: color 0.3s ease;
}

.book-card-single .book-description {
  font-size: 0.8rem;
  line-height: 1.5;
  margin-bottom: 0;
}

.book-card-single .book-subtitle {
  font-size: 0.7rem;
  color: var(--muted-foreground);
  font-style: italic;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.book-card-single:hover .book-description {
  color: var(--book-accent-light);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(26, 15, 26, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  color: var(--foreground);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.carousel-prev {
  left: -1rem;
}

.carousel-next {
  right: -1rem;
}

.carousel-btn:hover {
  background: var(--background);
  border-color: var(--primary);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.carousel-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--muted);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--primary);
  width: 2rem;
  border-radius: 9999px;
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--book-yellow), var(--book-gold), var(--book-red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* Stories Highlight Section - Centered Card Between Hero & About */
.stories-highlight-section {
  position: relative;
  padding: 4rem 0 3rem;
  background: radial-gradient(circle at top, rgba(255, 215, 0, 0.08), transparent 55%),
              rgba(26, 26, 15, 0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.stories-highlight-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 2.75rem 3rem;
  border-radius: 1.5rem;
  background: radial-gradient(circle at top left, rgba(255, 215, 0, 0.14), transparent 60%),
              radial-gradient(circle at bottom right, rgba(220, 20, 60, 0.18), transparent 60%),
              rgba(45, 45, 27, 0.96);
  border: 1px solid rgba(255, 215, 0, 0.5);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.7),
    0 0 40px rgba(255, 215, 0, 0.25),
    inset 0 0 0 1px rgba(0, 0, 0, 0.4);
  text-align: center;
  overflow: hidden;
}

.stories-highlight-inner::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(
    from 220deg,
    rgba(255, 215, 0, 0.08),
    transparent,
    rgba(220, 20, 60, 0.12),
    transparent,
    rgba(255, 215, 0, 0.08)
  );
  opacity: 0.9;
  mix-blend-mode: screen;
  pointer-events: none;
}

.stories-highlight-inner > * {
  position: relative;
  z-index: 1;
}

.stories-highlight-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1.1rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 215, 0, 0.7);
  color: var(--book-yellow);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 1.25rem;
}

.stories-highlight-tag::before {
  content: "✦";
  font-size: 0.9rem;
  color: var(--book-gold);
}

.stories-highlight-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, var(--book-yellow), var(--book-gold), var(--book-red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.8);
}

.stories-highlight-content {
  text-align: left;
  max-width: 640px;
  margin: 0 auto;
}

.stories-highlight-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.stories-highlight-text span {
  color: var(--book-cream);
}

.stories-highlight-list {
  list-style: none;
  padding-left: 0;
  margin: 0.75rem 0 1rem;
}

.stories-highlight-list li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--muted-foreground);
}

.stories-highlight-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--book-yellow);
  font-weight: bold;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .stories-highlight-section {
    padding: 3rem 0 2.5rem;
  }

  .stories-highlight-inner {
    padding: 2.25rem 1.75rem;
  }

  .stories-highlight-title {
    font-size: 1.6rem;
  }

  .stories-highlight-text {
    font-size: 0.98rem;
  }
}

@media (max-width: 480px) {
  .stories-highlight-inner {
    padding: 2rem 1.25rem;
  }

  .stories-highlight-title {
    font-size: 1.4rem;
  }
}

/* Section Particles Container */
.section-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

/* Atmospheric Effects */
.atmospheric-ray {
  will-change: transform, opacity;
}

.atmospheric-particle {
  will-change: transform, opacity;
}

/* About Section - Navbar theme */
.about-section {
  position: relative;
  padding: 6rem 0;
  background: rgba(26, 15, 26, 0.95);
}

.author-content-box {
  background: linear-gradient(135deg, 
    rgba(147, 51, 234, 0.15) 0%, 
    rgba(139, 69, 19, 0.1) 50%, 
    rgba(147, 51, 234, 0.12) 100%);
  border-radius: 25px;
  padding: 3rem;
  margin-top: 3rem;
  box-shadow: 0 10px 30px rgba(147, 51, 234, 0.2);
  border: 1px solid rgba(147, 51, 234, 0.3);
  position: relative;
  overflow: hidden;
}

.author-content-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    rgba(147, 51, 234, 0.05) 0%, 
    transparent 50%, 
    rgba(147, 51, 234, 0.08) 100%);
  pointer-events: none;
  z-index: 1;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-text {
  order: 1;
}

.about-image {
  order: 2;
}

.author-image-container {
  position: relative;
  width: 350px;
  height: 450px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.author-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(210, 105, 30, 0.1) 0%, 
    rgba(205, 133, 63, 0.05) 50%, 
    transparent 100%);
  pointer-events: none;
}

.about-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  text-align: left;
}

.timeline {
  max-width: 32rem;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

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

.timeline-year {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  min-width: 4rem;
}

.timeline-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.timeline-content p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* About The Author Section - New Design */
.about-author-section {
  position: relative;
  padding: 6rem 0;
  background: rgba(26, 26, 15, 0.95);
  overflow: hidden;
}

.about-author-content {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 4rem;
  align-items: flex-start;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

.about-author-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.about-author-image-container {
  position: relative;
  width: 280px;
  height: 280px;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(255, 215, 0, 0.5), 0 0 0 4px rgba(220, 20, 60, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.about-author-image-container:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 80px rgba(255, 215, 0, 0.7), 0 0 0 6px rgba(255, 215, 0, 0.4);
}

.about-author-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.about-author-image-container:hover .about-author-image {
  transform: scale(1.1);
}

.author-image-glow {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(210, 105, 30, 0.3), rgba(205, 133, 63, 0.2));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  filter: blur(20px);
}

.about-author-image-container:hover .author-image-glow {
  opacity: 1;
}

.about-author-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-author-bio {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-author-paragraph {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--muted-foreground);
  text-align: left;
  margin: 0;
  transition: color 0.3s ease;
}

.about-author-paragraph:first-child {
  animation: fadeInUp 0.6s ease 0.2s both;
}

.about-author-paragraph:nth-child(2) {
  animation: fadeInUp 0.6s ease 0.4s both;
}

.about-author-paragraph:nth-child(3) {
  animation: fadeInUp 0.6s ease 0.6s both;
}

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

.about-author-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  animation: fadeInUp 0.6s ease 0.8s both;
}

.social-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.75rem;
  background: var(--card);
  color: var(--foreground);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.social-follow-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.social-follow-btn:hover::before {
  left: 100%;
}

.social-follow-btn i {
  font-size: 1.125rem;
  transition: transform 0.3s ease;
}

.social-follow-btn:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  box-shadow: 0 8px 20px rgba(210, 105, 30, 0.3);
}

.social-follow-btn:hover i {
  transform: scale(1.2);
}

.social-follow-twitter:hover {
  background: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.social-follow-facebook:hover {
  background: rgba(24, 119, 242, 0.9);
  color: #ffffff;
  border-color: rgba(24, 119, 242, 0.5);
}

/* Responsive Design for About Author Section */
@media (max-width: 1024px) {
  .about-author-content {
    grid-template-columns: 280px 1fr;
    gap: 3rem;
  }

  .about-author-image-container {
    width: 240px;
    height: 240px;
  }
}

@media (max-width: 768px) {
  .about-author-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .about-author-image-wrapper {
    justify-content: center;
  }

  .about-author-image-container {
    width: 220px;
    height: 220px;
  }

  .about-author-paragraph {
    text-align: center;
  }

  .about-author-social {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .about-author-section {
    padding: 4rem 0;
  }

  .about-author-image-container {
    width: 180px;
    height: 180px;
  }

  .about-author-paragraph {
    font-size: 1rem;
  }

  .social-follow-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .about-author-social {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Books Section - Navbar theme */
.books-section {
  position: relative;
  padding: 6rem 0;
  background: rgba(15, 23, 42, 0.9);
}

/* removed saga section styles */

.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.book-item {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.book-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(34, 211, 238, 0.18), 0 10px 24px rgba(168, 85, 247, 0.16);
}

.book-item-image {
  aspect-ratio: 3 / 4;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 0.5rem;
}

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

/* Gallery Carousel Section - Navbar theme */
.gallery-section {
  position: relative;
  padding: 6rem 0;
  background: rgba(15, 15, 8, 0.98);
  overflow: hidden;
}

.gallery-carousel-fullwidth {
  max-width: 100%;
  padding: 0;
  margin: 0;
  position: relative;
}

.gallery-carousel-wrapper {
  position: relative;
  z-index: 10;
  padding: 4rem 0 4.5rem;
}

/* Background Image */
.gallery-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.gallery-background-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: none;
  transform: none;
  transition: opacity 0.8s ease;
  will-change: opacity;
}

.gallery-background-overlay {
  display: none;
}

.gallery-carousel-container {
  display: none;
}

/* Left Side - Book Text Content */
.gallery-left-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  animation: fadeInLeft 0.8s ease forwards 0.3s;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.gallery-book-text-content {
  max-width: 550px;
}

.gallery-book-genre-badge {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.95), rgba(255, 223, 0, 0.9), rgba(220, 20, 60, 0.85));
  color: var(--book-dark);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid rgba(245, 245, 232, 0.4);
  margin-bottom: 1.5rem;
  animation: slideInBadge 0.6s ease forwards 0.5s;
  opacity: 0;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.6);
  backdrop-filter: blur(10px);
}

@keyframes slideInBadge {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery-book-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 2px 10px rgba(0, 0, 0, 0.6), 0 0 50px rgba(0, 0, 0, 0.4);
  animation: slideInTitle 0.8s ease forwards 0.6s;
  opacity: 0;
  position: relative;
}

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

.gallery-book-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #f4f1de;
  margin-bottom: 1.5rem;
  animation: slideInDescription 0.8s ease forwards 0.8s;
  opacity: 0;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.7), 0 1px 5px rgba(0, 0, 0, 0.5);
  background: rgba(0, 0, 0, 0.25);
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.gallery-book-author {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1.5rem;
  animation: slideInDescription 0.8s ease forwards 0.9s;
  opacity: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gallery-book-author::before {
  content: "✍";
  font-size: 1.2rem;
}

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

.gallery-book-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  animation: slideInRating 0.8s ease forwards 1s;
  opacity: 0;
}

@keyframes slideInRating {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.gallery-book-stars {
  color: #ffa500;
  font-size: 1.25rem;
  letter-spacing: 0.2rem;
  text-shadow: 0 2px 10px rgba(255, 165, 0, 0.6), 0 0 25px rgba(255, 165, 0, 0.4);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6));
}

.gallery-book-rating-text {
  color: #f4f1de;
  font-size: 0.9rem;
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.gallery-book-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--book-red), var(--primary), var(--book-yellow));
  color: var(--primary-foreground);
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
  border: 1px solid rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(210, 105, 30, 0.3);
  animation: slideInCTA 0.8s ease forwards 1.2s;
  opacity: 0;
  cursor: pointer;
  border: none;
}

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

.gallery-book-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(255, 215, 0, 0.8);
  background: linear-gradient(135deg, var(--book-yellow), var(--book-gold), var(--book-red));
}

.gallery-book-cta i {
  font-size: 1.1rem;
}

/* Right Side Cover */
.gallery-right-cover {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.gallery-right-cover-card {
  position: relative;
  width: 350px;
  max-width: 100%;
  transform-style: preserve-3d;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  animation: fadeInRightCover 0.8s ease forwards 0.4s, floatBookCover 6s ease-in-out infinite 1.2s;
}

@keyframes fadeInRightCover {
  from {
    opacity: 0;
    transform: translateX(30px) rotateY(10deg) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateX(0) rotateY(0deg) scale(1);
  }
}

@keyframes floatBookCover {
  0%, 100% {
    transform: translateY(0px) rotateY(0deg);
  }
  50% {
    transform: translateY(-20px) rotateY(3deg);
  }
}

.gallery-right-cover-card:hover {
  transform: translateY(-15px) rotateY(-5deg) scale(1.05);
  animation: none;
}

.gallery-right-cover-image {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 1rem;
  overflow: hidden;
  border: 3px solid rgba(210, 105, 30, 0.3);
  background: var(--card);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 10px 30px rgba(210, 105, 30, 0.4);
  transition: all 0.6s ease;
}

.gallery-right-cover-card:hover .gallery-right-cover-image {
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.6), 0 15px 40px rgba(210, 105, 30, 0.5);
  border-color: var(--primary);
}

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

.gallery-right-cover-card:hover .gallery-right-cover-image img {
  transform: scale(1.08);
}

.gallery-right-cover-badge {
  position: absolute;
  top: -15px;
  right: -15px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--primary-foreground);
  padding: 0.6rem 1.2rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 6px 20px rgba(210, 105, 30, 0.5);
  z-index: 10;
  animation: pulseBadge 2s ease-in-out infinite;
}

@keyframes pulseBadge {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 6px 20px rgba(210, 105, 30, 0.5);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(210, 105, 30, 0.7);
  }
}

.gallery-slide-image {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(210, 105, 30, 0.1), rgba(205, 133, 63, 0.05));
}

.gallery-slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-carousel-slide:hover .gallery-slide-image img {
  transform: scale(1.15);
}

.gallery-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-carousel-slide:hover .gallery-slide-overlay {
  opacity: 1;
}

.gallery-slide-info {
  color: #ffffff;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.gallery-carousel-slide:hover .gallery-slide-info {
  transform: translateY(0);
}

.gallery-slide-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.gallery-slide-description {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gallery-slide-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--primary-foreground);
  padding: 0.4rem 0.8rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(210, 105, 30, 0.5);
  z-index: 3;
}

.gallery-carousel-btn {
  position: relative;
  background: rgba(26, 15, 26, 0.98);
  backdrop-filter: blur(10px);
  border: 2px solid var(--primary);
  color: var(--primary);
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.25rem;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 20px rgba(210, 105, 30, 0.3);
  flex-shrink: 0;
}

.gallery-carousel-btn:hover {
  background: var(--primary);
  color: var(--primary-foreground);
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(210, 105, 30, 0.5);
}

.gallery-carousel-btn:active {
  transform: scale(0.95);
}

/* Static featured book rows (no slider) */
.gallery-static-row {
  position: relative;
  max-width: 1400px;
  margin: 0 auto 3rem;
  padding: 0 2rem;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  align-items: center;
  gap: 3rem;
}

.gallery-static-row:last-of-type {
  margin-bottom: 0;
}

.gallery-static-left {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gallery-static-right {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
}

/* Responsive Gallery Carousel */
@media (max-width: 1024px) {
  .gallery-static-row {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: left;
  }

  .gallery-book-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .gallery-static-row {
    padding: 0 1.25rem;
    gap: 2rem;
  }

  .gallery-book-title {
    font-size: 2rem;
  }
  
  .gallery-book-description {
    font-size: 1rem;
  }
  .gallery-static-right {
    padding: 1.5rem 0 0;
  }
}

@media (max-width: 480px) {
  .gallery-book-title {
    font-size: 1.75rem;
  }
  
  .gallery-book-description {
    font-size: 0.95rem;
  }
  .gallery-book-cta {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }

  .gallery-static-row {
    padding: 0 1rem;
    margin-bottom: 2.5rem;
  }
}

/* Reviews Section - Simple & Clean Design */
.reviews-section {
  position: relative;
  padding: 6rem 0;
  background: rgba(26, 26, 15, 0.95);
  overflow: hidden;
}

.reviews-carousel-wrapper {
  position: relative;
  max-width: 850px;
  margin: 3rem auto 0;
  padding: 0 4rem;
}

.reviews-carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  min-height: 350px;
}

.reviews-slides {
  display: flex;
  width: 100%;
  position: relative;
}

.review-slide {
  min-width: 100%;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  padding: 0;
  box-sizing: border-box;
}

.review-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.review-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 3rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 8px 25px rgba(139, 74, 107, 0.3);
  transition: all 0.3s ease;
  text-align: center;
}

.review-stars {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.2rem;
}

.review-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  font-style: normal;
  text-align: left;
}

.review-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.review-author-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.review-author-info {
  text-align: left;
}

.review-author-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.review-author-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.reviews-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--foreground);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.reviews-carousel-btn:hover {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 18px rgba(210, 105, 30, 0.4);
}

.reviews-carousel-prev {
  left: 0;
}

.reviews-carousel-next {
  right: 0;
}

.reviews-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  position: relative;
  z-index: 10;
}

.reviews-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--muted);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.reviews-carousel-dot:hover {
  background: var(--primary);
  transform: scale(1.3);
}

.reviews-carousel-dot.active {
  background: var(--primary);
  width: 30px;
  border-radius: 5px;
}

/* Responsive Design for Reviews Section */
@media (max-width: 1024px) {
  .reviews-carousel-wrapper {
    max-width: 750px;
    padding: 0 3.5rem;
  }

  .review-card {
    padding: 2.5rem;
  }
}

@media (max-width: 768px) {
  .reviews-section {
    padding: 4rem 0;
  }

  .reviews-carousel-wrapper {
    max-width: 100%;
    padding: 0 3.5rem;
  }

  .reviews-carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .reviews-carousel-container {
    min-height: 320px;
  }

  .review-card {
    padding: 2rem;
  }

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

  .review-stars {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .reviews-carousel-wrapper {
    padding: 0 3rem;
  }

  .reviews-carousel-btn {
    width: 35px;
    height: 35px;
    font-size: 0.8rem;
  }

  .reviews-carousel-container {
    min-height: 300px;
  }

  .review-card {
    padding: 1.5rem;
  }

  .review-text {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .review-stars {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
  }

  .review-author-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .review-author-name {
    font-size: 0.95rem;
  }
}

/* Photo Gallery Section */
.photo-gallery-section {
  position: relative;
  padding: 6rem 0;
  background: radial-gradient(circle at top, rgba(255, 215, 0, 0.05), transparent 50%),
              rgba(26, 26, 15, 0.95);
  overflow: hidden;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
  padding: 0 1rem;
}

.gallery-item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  background: rgba(45, 45, 27, 0.6);
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.gallery-item:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.7),
    0 0 30px rgba(255, 215, 0, 0.3);
}

.gallery-image-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 90%;
  overflow: hidden;
}

.gallery-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-image-wrapper img {
  transform: scale(1.15);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(220, 20, 60, 0.85) 0%,
    rgba(255, 215, 0, 0.75) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.gallery-overlay-content {
  text-align: center;
  color: var(--book-cream);
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

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

.gallery-overlay-content i {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
  animation: pulse 2s infinite;
}

.gallery-overlay-content span {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Lightbox Modal */
.gallery-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
}

.lightbox-content {
  position: relative;
  z-index: 10000;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  animation: lightboxFadeIn 0.3s ease;
  transition: opacity 0.3s ease;
}

@keyframes lightboxFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(45, 45, 27, 0.9);
  border: 1px solid rgba(255, 215, 0, 0.5);
  color: var(--book-yellow);
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  z-index: 10001;
  backdrop-filter: blur(10px);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 215, 0, 0.2);
  border-color: var(--book-yellow);
  transform: scale(1.1);
}

.lightbox-close {
  top: 2rem;
  right: 2rem;
}

.lightbox-prev {
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-counter {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(45, 45, 27, 0.9);
  border: 1px solid rgba(255, 215, 0, 0.5);
  color: var(--book-yellow);
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-size: 1rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  z-index: 10001;
}

/* Responsive Gallery Styles */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .photo-gallery-section {
    padding: 4rem 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.75rem;
    padding: 0 0.5rem;
  }

  .gallery-item {
    border-radius: 0.75rem;
  }

  .lightbox-close,
  .lightbox-prev,
  .lightbox-next {
    width: 3rem;
    height: 3rem;
    font-size: 1.25rem;
  }

  .lightbox-close {
    top: 1rem;
    right: 1rem;
  }

  .lightbox-prev {
    left: 1rem;
  }

  .lightbox-next {
    right: 1rem;
  }

  .lightbox-counter {
    bottom: 1rem;
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .gallery-overlay-content i {
    font-size: 2rem;
  }

  .gallery-overlay-content span {
    font-size: 0.95rem;
  }

  .lightbox-content {
    max-width: 95vw;
  }

  .lightbox-close,
  .lightbox-prev,
  .lightbox-next {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }
}

/* Contact Section - Get In Touch */
.contact-section {
  position: relative;
  padding: 6rem 0;
  background: rgba(26, 26, 15, 0.95);
  overflow: hidden;
}

.contact-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

/* Left Column - Contact Information */
.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-info-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: var(--foreground);
  font-size: 1rem;
  line-height: 1.6;
}

.contact-icon {
  color: var(--primary);
  font-size: 1.25rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.contact-detail-item a {
  color: var(--foreground);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-detail-item a:hover {
  color: var(--primary);
  text-decoration: underline;
}

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

.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-icon:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.social-icon-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon-facebook {
  background: #1877f2;
}

.social-icon-youtube {
  background: #ff0000;
}

/* Right Column - Contact Form */
.contact-form-column {
  background: var(--card);
  border-radius: 1rem;
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form .form-group {
  margin-bottom: 0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius);
  color: #1a1a2e;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #6b6b8a;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--book-yellow);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
  background: #ffffff;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
  font-family: "Inter", sans-serif;
}

.contact-submit-btn {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--book-red), var(--primary), var(--book-yellow));
  color: var(--primary-foreground);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
  border: 1px solid rgba(255, 215, 0, 0.4);
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.contact-submit-btn:hover {
  background: linear-gradient(135deg, var(--book-yellow), var(--book-gold), var(--book-red));
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.8);
}

.contact-submit-btn:active {
  transform: translateY(0);
}

/* Responsive Design for Contact Section */
@media (max-width: 1024px) {
  .contact-content-wrapper {
    gap: 3rem;
  }

  .contact-info-heading {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 4rem 0;
  }

  .contact-content-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-form-column {
    padding: 2rem;
  }

  .contact-info-heading {
    font-size: 1.75rem;
  }

  .contact-social-icons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .contact-form-column {
    padding: 1.5rem;
  }

  .contact-info-heading {
    font-size: 1.5rem;
  }

  .contact-detail-item {
    font-size: 0.95rem;
  }

  .social-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}

/* Contact Purple Box */
.contact-purple-box {
  background: #201C31;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin: 2rem auto;
  max-width: 32rem;
  position: relative;
  overflow: hidden;
}

.contact-purple-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.8s ease;
}

.contact-purple-box:hover::before {
  left: 100%;
}

.contact-purple-box .section-subtitle {
  margin: 0 0 2rem 0;
  color: #ffffff;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  text-align: center;
  position: relative;
  z-index: 1;
}

.contact-purple-box .contact-content {
  position: relative;
  z-index: 1;
}

.contact-form {
  max-width: 32rem;
  margin: 0 auto;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--foreground);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  background: var(--input);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--foreground);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--ring);
}

/* Background Card Section */
.background-card-section {
  position: relative;
  padding: 5rem 0;
  background: radial-gradient(circle at top, rgba(255, 215, 0, 0.06), transparent 50%),
              rgba(26, 26, 15, 0.98);
  overflow: hidden;
}

.background-card-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 4.5rem;
  border-radius: 1.75rem;
  background: radial-gradient(circle at top left, rgba(255, 215, 0, 0.12), transparent 65%),
              radial-gradient(circle at bottom right, rgba(220, 20, 60, 0.15), transparent 65%),
              rgba(45, 45, 27, 0.97);
  border: 1px solid rgba(255, 215, 0, 0.4);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.8),
    0 0 50px rgba(255, 215, 0, 0.2),
    inset 0 0 0 1px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.background-card-inner::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: conic-gradient(
    from 220deg,
    rgba(255, 215, 0, 0.06),
    transparent,
    rgba(220, 20, 60, 0.1),
    transparent,
    rgba(255, 215, 0, 0.06)
  );
  opacity: 0.85;
  mix-blend-mode: screen;
  pointer-events: none;
  animation: rotateBackground 20s linear infinite;
}

@keyframes rotateBackground {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.background-card-inner > * {
  position: relative;
  z-index: 1;
}

.background-card-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

.background-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.25rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 215, 0, 0.6);
  color: var(--book-yellow);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}

.background-card-tag::before {
  content: "✦";
  font-size: 0.95rem;
  color: var(--book-gold);
}

.background-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.background-card-author {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--book-yellow), var(--book-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.background-card-date {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted-foreground);
  padding: 0.5rem 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.background-card-content {
  font-size: 1.1rem;
  line-height: 1.95;
  color: var(--muted-foreground);
}

.background-card-content p {
  margin-bottom: 1.75rem;
  text-align: justify;
}

.background-card-content p:last-child {
  margin-bottom: 0;
}

.background-card-page-number {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255, 215, 0, 0.3);
  margin: 2.5rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.background-card-closing {
  margin-top: 2.5rem !important;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 215, 0, 0.3);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--book-cream) !important;
  line-height: 2;
}

/* Responsive styles for background card */
@media (max-width: 768px) {
  .background-card-section {
    padding: 3.5rem 0;
  }

  .background-card-inner {
    padding: 3rem 2.5rem;
    max-width: 95%;
  }

  .background-card-header {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
  }

  .background-card-author {
    font-size: 1.3rem;
  }

  .background-card-content {
    font-size: 1.05rem;
    line-height: 1.85;
  }

  .background-card-content p {
    margin-bottom: 1.5rem;
  }

  .background-card-closing {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .background-card-inner {
    padding: 2.5rem 2rem;
  }

  .background-card-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .background-card-author {
    font-size: 1.2rem;
  }

  .background-card-content {
    font-size: 1rem;
    line-height: 1.8;
  }

  .background-card-page-number {
    font-size: 1.5rem;
    margin: 2rem 0;
  }
}

/* Footer - Black background */
.footer {
  position: relative;
  background: #000000;
  border-top: 1px solid var(--border);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.footer-brand p {
  color: #ffffff;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: #ffffff;
}

/* Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.float-animation {
  animation: float 6s ease-in-out infinite;
}

.glow-animation {
  animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.6);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(26, 26, 15, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
  }

  .nav-links.mobile-active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu-btn {
    display: flex;
  }

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

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

  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0 0.5rem;
    gap: 2rem;
  }
  
  .hero-text {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .book-carousel {
    margin: 0 auto;
  }

  /* Single Book Carousel Responsive */
  .book-carousel-single {
    padding: 0 3rem;
    max-width: 100%;
  }

  .book-card-single {
    max-width: 100%;
    padding: 1.5rem;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .carousel-prev {
    left: 0.5rem;
  }

  .carousel-next {
    right: 0.5rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .section-title {
    font-size: 2rem;
  }

  .timeline-item {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  /* About section responsive */
  .author-content-box {
    padding: 2rem;
    margin-top: 2rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .about-text {
    order: 2;
  }

  .about-image {
    order: 1;
  }

  .author-image-container {
    width: 280px;
    height: 360px;
  }

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

  .timeline {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.5rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1rem;
  }

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

  .books-duo-display {
    gap: 1.5rem;
  }

  .book-card-duo {
    padding: 1.25rem;
  }

  .hero-text {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
