@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Open+Sans:ital,wght@0,400;0,600;0,700;0,800;1,400&display=swap");

:root {
  --bg-dark: #0b1628;
  --bg-darker: #060d18;
  --accent: #e67e23;
  --accent-hover: #d35400;
  --text: #ffffff;
  --text-muted: #a0aec0;
  --section-bg: #f5f5f5;
  --section-text: #333;
  --sidebar-width: 300px;
  --sidebar-collapsed: 80px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  background: var(--bg-darker);
  color: var(--text);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Layout */
.site-wrapper {
  display: flex;
  min-height: 100vh;
}

/* Sidebar */
.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: var(--sidebar-width);
  height: 100vh;
  background: var(--bg-dark);
  z-index: 100;
  display: flex;
  flex-direction: column;
  transition: width 0.3s ease, transform 0.3s ease;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar.collapsed {
  width: var(--sidebar-collapsed);
}

.sidebar-logo {
  padding: 30px 20px 20px;
  text-align: center;
}

.sidebar-logo img {
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  border-radius: 4px;
}

.sidebar-nav {
  flex: 1;
  overflow-y: auto;
  padding: 10px 0;
}

.sidebar-nav ul {
  list-style: none;
}

.sidebar-nav a {
  display: block;
  padding: 12px 30px;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
  color: var(--accent);
}

.sidebar-social {
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-social ul {
  display: flex;
  justify-content: center;
  gap: 12px;
  list-style: none;
}

.sidebar-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  font-size: 14px;
  color: var(--text-muted);
  transition: all 0.2s;
}

.sidebar-social a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.sidebar-toggle {
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: var(--accent);
  border: none;
  border-radius: 4px;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  z-index: 101;
}

/* Main content */
.main-content {
  margin-left: var(--sidebar-width);
  width: calc(100% - var(--sidebar-width));
  transition: margin-left 0.3s ease, width 0.3s ease;
}

.sidebar.collapsed ~ .main-content {
  margin-left: var(--sidebar-collapsed);
  width: calc(100% - var(--sidebar-collapsed));
}

/* Hero */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
  animation: kenburns 12s ease infinite alternate;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide--book {
  animation: none;
  display: block;
  background: radial-gradient(ellipse at center bottom, rgba(30, 45, 70, 0.45) 0%, transparent 65%);
}

.hero-slide-book-inner {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 72px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 0 24px;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  pointer-events: none;
}

.hero-slide-book-inner .hero-slide-cta {
  pointer-events: auto;
}

.hero-section:has(.hero-slide--book.active) .hero-content {
  transform: translateY(-6vh);
}

.hero-section:has(.hero-slide--book.active) .hero-name {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
}

.hero-slide-book-cover {
  width: auto;
  max-width: min(200px, 38vw);
  max-height: min(36vh, 320px);
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  pointer-events: none;
}

@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 22, 40, 0.85) 0%, rgba(6, 13, 24, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-name {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 1.1;
}

.hero-name span {
  color: var(--accent);
}

.hero-typing {
  margin-top: 20px;
  font-size: 1.1rem;
  color: var(--text-muted);
  min-height: 1.5em;
}

.hero-arrow {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.hero-arrow a {
  color: white;
  font-size: 24px;
  opacity: 0.7;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* Sections */
.section {
  padding: 100px 0;
  position: relative;
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text);
}

.section-light {
  background: var(--section-bg);
  color: var(--section-text);
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.section-title span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.section-light .section-title span {
  color: #888;
}

/* About layout */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}

.about-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  display: block;
  object-fit: contain;
  object-position: center top;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.about-image::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 3px solid var(--accent);
  border-radius: 4px;
  z-index: -1;
}

.about-text h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--accent);
}

.about-text p {
  line-height: 1.8;
  margin-bottom: 16px;
  color: inherit;
  opacity: 0.9;
}

.about-text a:not(.btn) {
  color: var(--accent);
}

.about-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 12px;
  margin-top: 30px;
  align-items: stretch;
}

.about-buttons .btn {
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
  padding: 12px 14px;
  font-size: 11px;
  letter-spacing: 0.5px;
  white-space: nowrap;
  color: var(--accent);
  background: transparent;
}

.about-buttons .btn-primary {
  background: var(--accent);
  color: #fff !important;
  border-color: var(--accent);
}

.about-buttons .btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff !important;
}

.about-buttons .btn:not(.btn-primary):hover {
  background: var(--accent);
  color: #fff !important;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid var(--accent);
  color: var(--accent);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
}

.btn:hover,
.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

/* Episodes list */
.episodes-list {
  list-style: none;
  margin-top: 20px;
}

.episodes-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.episodes-list a {
  color: var(--accent);
  font-weight: 600;
}

.episodes-list a:hover {
  text-decoration: underline;
}

.video-embed {
  margin: 20px 0;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 4px;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-embed-lazy .video-play-btn {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: #000;
  cursor: pointer;
}

.video-embed-lazy .video-play-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-embed-lazy .video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 24px;
  border-radius: 50%;
  pointer-events: none;
}

/* Songs grid */
.songs-filters {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.songs-filters button {
  background: none;
  border: none;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #888;
  cursor: pointer;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}

.songs-filters button.active,
.songs-filters button:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.songs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}

.song-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1;
  background: #0a1220;
  display: flex;
  align-items: center;
  justify-content: center;
}

.song-card-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.song-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 8px;
  transition: transform 0.5s;
}

.song-card:hover img {
  transform: scale(1.08);
}

.song-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.15) 70%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}

.song-card:hover .song-card-overlay {
  opacity: 1;
}

.song-card-overlay h4 {
  font-size: 0.95rem;
  color: white;
  margin-bottom: 4px;
}

.song-card-overlay p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.song-card-yt {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(230, 126, 35, 0.95);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  z-index: 2;
  transition: transform 0.2s;
}

.song-card-yt:hover {
  transform: scale(1.08);
}

/* Timeline */
.timeline {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(230, 126, 35, 0.3);
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
  position: relative;
}

.timeline-year {
  background: var(--accent);
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(230, 126, 35, 0.3);
}

.timeline-event {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 24px;
}

.timeline-event h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.timeline-event small {
  color: var(--accent);
  font-weight: 600;
}

.timeline-event p {
  margin-top: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  white-space: pre-line;
  font-size: 0.9rem;
}

.timeline-item.right .timeline-year-wrap {
  text-align: right;
}

.timeline-item.left .timeline-year-wrap {
  text-align: left;
  order: 2;
}

.timeline-item.left .timeline-event {
  text-align: right;
  order: 1;
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}

.blog-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.blog-card-image {
  height: 200px;
  overflow: hidden;
  background: #f4efe8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 8px;
  transition: transform 0.5s;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 24px;
}

.blog-card-date {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 8px;
}

.blog-card-body h3 {
  font-size: 1rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card-body h3 a:hover {
  color: var(--accent);
}

.blog-card-excerpt {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
}

.read-more {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
}

.blog-card--seri .blog-card-image {
  position: relative;
  background: #f4efe8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card--seri .blog-card-image img {
  object-fit: contain;
  max-height: 100%;
}

.blog-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 10px;
  border-radius: 4px;
}

.blog-schedule-note {
  text-align: center;
  max-width: 640px;
  margin: 40px auto 0;
  padding: 16px 20px;
  background: rgba(230, 126, 35, 0.08);
  border-radius: 8px;
  color: #555;
  line-height: 1.55;
  font-size: 0.95rem;
}

.blog-detail-seri {
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.blog-content p {
  margin-bottom: 1.1em;
  line-height: 1.75;
}

.blog-content em {
  font-style: italic;
  color: #333;
}

.blog-bolum-link {
  margin-top: 28px;
}

.detail-container--blog .content {
  max-width: 680px;
}

.blog-share {
  margin: 20px 0 28px;
  padding: 18px 20px;
  background: #f8f8f8;
  border-radius: 10px;
  border: 1px solid #eee;
}

.blog-share-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 12px;
}

.blog-share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  border-radius: 6px;
  border: 1px solid #ddd;
  background: #fff;
  color: #444;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.blog-share-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.blog-share-btn--facebook:hover { background: #1877f2; border-color: #1877f2; color: #fff; }
.blog-share-btn--x:hover { background: #000; border-color: #000; color: #fff; }
.blog-share-btn--whatsapp:hover { background: #25d366; border-color: #25d366; color: #fff; }
.blog-share-btn--linkedin:hover { background: #0a66c2; border-color: #0a66c2; color: #fff; }
.blog-share-btn--instagram:hover { background: #e4405f; border-color: #e4405f; color: #fff; }
.blog-share-btn--copy.is-copied { background: #2ecc71; border-color: #2ecc71; color: #fff; }

.blog-share-hint {
  margin-top: 10px;
  font-size: 0.8rem;
  color: #999;
}

.blog-comments {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid #e8e8e8;
  max-width: 680px;
}

.blog-comments-title {
  font-size: 1.35rem;
  margin-bottom: 24px;
}

.blog-comments-count {
  font-weight: 400;
  color: #888;
  font-size: 1rem;
}

.blog-comments-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}

.blog-comment {
  padding: 18px 0;
  border-bottom: 1px solid #eee;
}

.blog-comment-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 16px;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.blog-comment-meta time {
  color: #999;
  font-size: 0.8rem;
}

.blog-comment-text {
  line-height: 1.65;
  color: #444;
}

.blog-comments-empty {
  color: #888;
  margin-bottom: 24px;
  font-style: italic;
}

.blog-comment-form-wrap {
  background: #fafafa;
  border-radius: 10px;
  padding: 24px;
  border: 1px solid #eee;
}

.blog-comment-form-title {
  font-size: 1rem;
  margin-bottom: 16px;
}

.blog-comment-form input,
.blog-comment-form textarea {
  background: #fff;
  color: #333;
  border-color: #ddd;
}

.blog-comment-form input::placeholder,
.blog-comment-form textarea::placeholder {
  color: #aaa;
}

@media (max-width: 600px) {
  .blog-share-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .blog-share-btn--copy {
    grid-column: 1 / -1;
  }
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  aspect-ratio: 1;
  background: #0a1220;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 8px;
  transition: transform 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}

.contact-info h4 {
  font-size: 1.2rem;
  margin-bottom: 24px;
  color: var(--accent);
}

.contact-info ul {
  list-style: none;
}

.contact-info li {
  margin-bottom: 16px;
  display: flex;
  gap: 10px;
}

.contact-info label {
  font-weight: 700;
  min-width: 80px;
  color: var(--text-muted);
}

.contact-info a {
  color: var(--accent);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: white;
  font-family: "Open Sans", sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-status {
  margin-top: 12px;
  font-size: 0.9rem;
}

.form-status.success { color: #2ecc71; }
.form-status.error { color: #e74c3c; }

/* Footer */
.footer {
  text-align: center;
  padding: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* WhatsApp */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 200;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

/* Mobile menu */
.mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: var(--bg-dark);
  padding: 15px 20px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-header img {
  height: 40px;
  width: auto;
}

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  margin: 5px 0;
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--bg-dark);
  z-index: 149;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Detail pages */
.detail-page {
  margin-left: var(--sidebar-width);
  min-height: 100vh;
  background: var(--section-bg);
  color: var(--section-text);
  padding: 60px 30px;
}

.detail-container {
  max-width: 800px;
  margin: 0 auto;
}

.detail-back {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
}

.detail-back:hover {
  text-decoration: underline;
}

.detail-cover {
  width: 100%;
  max-height: 480px;
  object-fit: contain;
  object-position: center;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  background: #0a1220;
}

.detail-page h1 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.detail-page .content {
  line-height: 1.8;
}

.detail-page .content p {
  margin-bottom: 16px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 300;
  align-items: center;
  justify-content: center;
  padding: 20px;
  cursor: pointer;
}

.lightbox:not([hidden]) {
  display: flex;
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 36px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 1024px) {
  .sidebar {
    transform: translateX(-100%);
  }

  .sidebar.mobile-open {
    transform: translateX(0);
  }

  .main-content,
  .detail-page {
    margin-left: 0;
    width: 100%;
  }

  .mobile-header {
    display: flex;
  }

  .main-content {
    padding-top: 70px;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    padding-left: 50px;
  }

  .timeline-item.left .timeline-year-wrap,
  .timeline-item.left .timeline-event {
    order: unset;
    text-align: left;
  }

  .timeline-item.right .timeline-year-wrap {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 60px 0;
  }

  .hero-name {
    font-size: 2.5rem;
  }

  .songs-grid,
  .blog-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.sidebar.collapsed ~ .detail-page { margin-left: var(--sidebar-collapsed); }
.mobile-menu ul { list-style: none; }

/* Kitap QR dinleme sayfası (/1/hem_okudum_hem_yazdim vb.) */
body.page-qr {
  background: var(--bg-dark);
  color: var(--text-light);
}

.qr-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px 48px;
}

.qr-inner {
  width: 100%;
  max-width: 640px;
  text-align: center;
}

.qr-back {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--accent);
  font-size: 0.95rem;
}

.qr-meta {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.qr-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.qr-hint {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.qr-player {
  margin: 0 auto 16px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.qr-alt a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.qr-alt a:hover {
  color: var(--accent);
}

.qr-empty {
  padding: 32px 20px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  margin-bottom: 20px;
}

.qr-coming-soon {
  border: 1px solid rgba(230, 126, 35, 0.35);
  background: rgba(230, 126, 35, 0.08);
}

.qr-soon-icon {
  display: block;
  font-size: 2rem;
  margin-bottom: 12px;
  opacity: 0.7;
}

.qr-soon-message {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 12px;
  color: var(--text-light);
}

.qr-soon-date {
  font-size: 0.9rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.chapter-release-note {
  background: rgba(230, 126, 35, 0.1);
  border-left: 4px solid var(--accent);
  padding: 14px 18px;
  margin-bottom: 20px;
  border-radius: 0 8px 8px 0;
  color: #444;
  line-height: 1.55;
}

.chapter-card--soon {
  opacity: 0.92;
}

.chapter-card--soon .chapter-no {
  background: #555;
  color: #ddd;
}

.chapter-lock {
  flex-shrink: 0;
  font-size: 14px;
  opacity: 0.65;
}

.qr-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.qr-nav-link {
  color: var(--accent);
  font-size: 0.9rem;
}

/* ——— Yeniden yapı: net bilgi mimarisi ——— */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-head {
  margin-bottom: 48px;
  max-width: 720px;
}

.section-head-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-kicker {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-head h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.section-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.section-light .section-lead {
  color: #666;
}

.section-foot {
  margin-top: 40px;
}

.section-foot.center {
  text-align: center;
}

.section-compact {
  padding-top: 40px !important;
  padding-bottom: 80px !important;
}

.hero-tagline {
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero-slide-caption {
  position: absolute;
  left: 24px;
  bottom: 100px;
  z-index: 3;
  max-width: 420px;
  text-align: left;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s, transform 0.6s;
  padding-right: 16px;
}

.hero-slide-caption--below {
  position: static;
  left: auto;
  bottom: auto;
  max-width: 100%;
  text-align: center;
  opacity: 1;
  transform: none;
  padding: 20px 8px 0;
  margin-top: 0;
}

.hero-slide.active .hero-slide-caption:not(.hero-slide-caption--below) {
  opacity: 1;
  transform: translateY(0);
}

.hero-slide.active .hero-slide-caption--below {
  opacity: 1;
  transform: none;
}

.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 8px;
}

.hero-slide-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.hero-slide-sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
  line-height: 1.5;
}

.hero-slide-meta {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 14px;
  line-height: 1.5;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 12px;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 14px;
}

.about-grid-pro .about-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.about-fact dt {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 4px;
}

.about-fact dd {
  font-weight: 600;
  font-size: 0.95rem;
}

.section-light .about-fact dd {
  color: #222;
}

.release-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.release-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

.release-card:hover {
  border-color: rgba(230, 126, 35, 0.4);
  transform: translateY(-2px);
}

.release-card.is-new {
  border-color: rgba(230, 126, 35, 0.35);
}

.release-cover {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #0a1220;
  display: flex;
  align-items: center;
  justify-content: center;
}

.release-cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 8px;
}

.release-body {
  padding: 20px;
}

.release-meta {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.release-body h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.release-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.release-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 10px;
  border-radius: 4px;
  z-index: 2;
}

.card-badge-lg {
  top: 16px;
  left: 16px;
  font-size: 11px;
  padding: 6px 12px;
}

.book-hero {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 56px;
}

.book-covers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.book-cover-wrap {
  position: relative;
  margin: 0;
}

.book-cover-wrap figcaption {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
  margin-top: 10px;
}

.book-cover-meta {
  text-align: center;
  font-size: 0.9rem;
  color: #555;
  margin: 8px 0 0;
  line-height: 1.45;
}

.book-cover-back .book-cover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.book-publisher {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}

.book-blurb {
  margin: 20px 0;
  padding: 16px 20px;
  border-left: 3px solid #c45a20;
  background: rgba(196, 90, 32, 0.06);
  font-style: italic;
  color: #444;
  line-height: 1.65;
  border-radius: 0 8px 8px 0;
}

.book-cover {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  object-position: center top;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.book-features {
  list-style: none;
  margin: 20px 0;
}

.book-features li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: #444;
}

.book-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.book-qr-hint {
  background: #fff;
  border-left: 4px solid var(--accent);
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  margin-top: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.book-hero-cta {
  margin-top: 24px;
}

.book-gallery {
  margin-bottom: 56px;
}

.book-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.book-gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  background: #eee;
}

.book-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 8px;
  display: block;
  transition: transform 0.35s ease;
}

.book-gallery-item:hover img {
  transform: scale(1.04);
}

.subsection-title {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.subsection-lead {
  color: #666;
  margin-bottom: 24px;
}

.chapter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
  margin-bottom: 48px;
}

.chapter-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
  color: #333;
}

.chapter-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.chapter-no {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-dark);
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chapter-title {
  flex: 1;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
}

.chapter-play {
  color: var(--accent);
  font-size: 12px;
}

.book-shop {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #152238 100%);
  border-radius: 16px;
  padding: 40px;
  color: #fff;
}

.book-shop-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 32px;
  align-items: center;
}

.book-shop-cover {
  width: 120px;
  flex-shrink: 0;
}

.book-shop-cover img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.book-shop .section-kicker {
  color: var(--accent);
}

.book-price {
  font-size: 1.5rem;
  margin: 16px 0 8px;
}

.book-price span {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 400;
}

.book-shipping-note {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.book-shop-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.contact-note {
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-links {
  margin-top: 8px;
  font-size: 0.85rem;
}

.footer-links a {
  color: var(--accent);
}

.songs-grid {
  padding: 0;
  max-width: none;
}

.songs-filters {
  margin-bottom: 32px;
}

@media (max-width: 900px) {
  .book-hero,
  .book-shop-inner {
    grid-template-columns: 1fr;
  }

  .book-covers {
    grid-template-columns: 1fr 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .book-cover-wrap {
    max-width: 320px;
    margin: 0 auto;
  }

  .about-grid-pro .about-facts {
    grid-template-columns: 1fr;
  }

  .hero-slide-caption {
    left: 16px;
    right: 16px;
    bottom: 90px;
    max-width: none;
  }

  .hero-slide-book-inner {
    bottom: 64px;
    padding: 0 16px;
  }

  .hero-slide-book-cover {
    max-width: min(160px, 42vw);
    max-height: 30vh;
  }

  .about-buttons {
    flex-wrap: wrap;
  }

  .about-buttons .btn {
    flex: 1 1 calc(33.333% - 8px);
    min-width: 100px;
    font-size: 10px;
    padding: 10px 8px;
  }

  .book-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.footer-stats {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.stats-page {
  min-height: 100vh;
  background: var(--bg-dark);
  color: var(--text);
  padding: 48px 20px;
}

.stats-box {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px;
}

.stats-box h1 {
  font-size: 1.75rem;
  margin-bottom: 8px;
}

.stats-lead {
  color: var(--text-muted);
  margin-bottom: 28px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.stats-card {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.stats-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 6px;
}

.stats-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stats-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
  font-size: 0.9rem;
}

.stats-table th,
.stats-table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

.stats-messages {
  list-style: none;
  margin-bottom: 24px;
}

.stats-messages li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-messages span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.stats-foot {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.stats-table-songs td:nth-child(3),
.stats-table-songs td:nth-child(4),
.stats-table-songs td:nth-child(5) {
    white-space: nowrap;
}

.stats-table-songs td:last-child {
    font-size: 0.85rem;
    color: var(--text-muted, #666);
}

.stats-foot a {
  color: var(--accent);
}
