/* Modern Elegant Design with Color Scheme */
/* Primary: #5A2AFD | Accent: #FE3EE8 | Accent2: #F5D63C */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

:root {
  --primary: #5a2afd;
  --accent: #fe3ee8;
  --accent2: #f5d63c;
  --bg-dark: #0a0a0f;
  --bg-card: #1a1a2e;
  --text-primary: #ffffff;
  --text-secondary: #b8b8d1;
  --gradient-primary: linear-gradient(135deg, #5a2afd 0%, #7b4fff 100%);
  --gradient-accent: linear-gradient(135deg, #fe3ee8 0%, #ff6b9d 100%);
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

html {
  overflow-x: hidden;
  width: 100%;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

/* Navigation - Top Left Logo, Center Menu, Top Right Icons */
.navbar {
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(90, 42, 253, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  box-shadow: 0 4px 30px rgba(90, 42, 253, 0.1);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.logo {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.logo::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40%;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 3rem;
  justify-content: center;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-accent);
  transition: width 0.3s ease;
}

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

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

.nav-icons {
  display: flex;
  gap: 1rem;
}

.icon-btn {
  background: rgba(90, 42, 253, 0.1);
  border: 1px solid rgba(90, 42, 253, 0.3);
  color: var(--primary);
  cursor: pointer;
  padding: 0.6rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.icon-btn:hover {
  background: var(--gradient-primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(90, 42, 253, 0.4);
}

/* Hero Section - Left: Book Image, Right: Content */
.hero {
  padding: 8rem 0 6rem;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(90, 42, 253, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(254, 62, 232, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -30px) scale(1.1);
  }
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.book-cover {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.book-image {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(90, 42, 253, 0.3),
    0 0 0 1px rgba(90, 42, 253, 0.1);
  transition: all 0.4s ease;
}

.book-image:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 80px rgba(90, 42, 253, 0.4),
    0 0 0 1px rgba(90, 42, 253, 0.2);
}

.availability-badge {
  background: var(--gradient-primary);
  color: #fff;
  padding: 1rem 2rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 2rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(90, 42, 253, 0.3);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.availability-badge a {
  color: #fff;
  text-decoration: none;
}

.availability-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(90, 42, 253, 0.5);
  background: var(--gradient-accent);
}

.hero-text {
  padding: 2rem 0;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  line-height: 1.1;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    var(--text-primary) 0%,
    var(--primary) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.75rem;
  color: var(--accent);
  margin-bottom: 2rem;
  font-weight: 600;
}

.hero-description {
  color: var(--text-secondary);
  margin: 0 auto 3rem;
  line-height: 1.8;
  font-size: 1.05rem;
  max-width: 90%;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: var(--gradient-primary);
  color: #fff;
  padding: 1.2rem 3rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(90, 42, 253, 0.4);
  border: 2px solid transparent;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(90, 42, 253, 0.6);
  border-color: var(--accent2);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--text-primary);
  padding: 1.2rem 3rem;
  text-decoration: none;
  border: 2px solid var(--primary);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.btn-secondary:hover {
  background: var(--gradient-primary);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(90, 42, 253, 0.4);
}

.btn-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.btn-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.btn-link:hover::after {
  transform: scaleX(1);
}

.btn-link:hover {
  color: var(--accent);
}

/* About Section - Left Image, Right Content */
.about-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-card) 100%);
  position: relative;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-image {
  --image-max-width: 500px;
  --offset: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image::before {
  content: "";
  position: absolute;
  top: calc(var(--offset) * -1);
  left: calc(var(--offset) * -1);
  bottom: var(--offset);
  right: var(--offset);
  background: var(--gradient-primary);
  border-radius: 20px;
  opacity: 0.2;
  z-index: 0;
}

.author-photo {
  width: 100%;
  max-width: var(--image-max-width);
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
  border: 3px solid rgba(90, 42, 253, 0.3);
  object-fit: contain;
  object-position: center;
  display: block;
}

.about-content {
  text-align: left;
}

.section-title {
  font-size: 3.5rem;
  margin-bottom: 2rem;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    var(--text-primary) 0%,
    var(--primary) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: var(--gradient-accent);
  margin-top: 1rem;
  border-radius: 2px;
}

.section-title.centered {
  text-align: center;
}

.section-title.centered::after {
  margin-left: auto;
  margin-right: auto;
}

/* DJ Scipio Section */
.dj-section {
  padding: 8rem 0;
  background: var(--bg-dark);
  position: relative;
}

.dj-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(254, 62, 232, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.dj-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.dj-image {
  --image-max-width: 450px;
  --offset: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dj-image::after {
  content: "";
  position: absolute;
  top: var(--offset);
  right: calc(var(--offset) * -1);
  bottom: calc(var(--offset) * -1);
  left: var(--offset);
  background: var(--gradient-accent);
  border-radius: 20px;
  opacity: 0.2;
  z-index: 0;
}

.dj-photo {
  width: 100%;
  max-width: var(--image-max-width);
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(254, 62, 232, 0.3);
  position: relative;
  z-index: 1;
  border: 3px solid rgba(254, 62, 232, 0.3);
  object-fit: contain;
  object-position: center;
  display: block;
}

.dj-content {
  padding-top: 2rem;
}

.dj-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 800;
  color: var(--text-primary);
}

.dj-subtitle {
  color: var(--accent2);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

.dj-bio p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.9;
  font-size: 1.05rem;
}

/* Books Section */
.books-section {
  padding: 8rem 0;
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
}

.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
  justify-content: center;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.book-card {
  background: rgba(26, 26, 46, 0.6);
  backdrop-filter: blur(10px);
  padding: 0;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(90, 42, 253, 0.2);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.book-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.book-card:hover::before {
  transform: scaleX(1);
}

.book-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 20px 50px rgba(90, 42, 253, 0.3);
}

.book-card-image {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(
    135deg,
    rgba(90, 42, 253, 0.1),
    rgba(254, 62, 232, 0.1)
  );
}

.book-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

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

.book-card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 1rem;
}

.book-card h3 {
  font-size: 1.5rem;
  margin: 0;
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.3;
}

.book-card p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 1rem;
  flex-grow: 1;
}

.book-card .btn-link {
  margin-top: auto;
}

/* Reviews Section */
.reviews-section {
  padding: 8rem 0;
  background: var(--bg-dark);
  position: relative;
}

.reviews-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.review-card {
  background: linear-gradient(
    135deg,
    rgba(90, 42, 253, 0.05) 0%,
    rgba(26, 26, 46, 0.8) 100%
  );
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 20px;
  border-left: 4px solid var(--primary);
  position: relative;
  transition: all 0.4s ease;
  border: 1px solid rgba(90, 42, 253, 0.2);
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 15px 40px rgba(254, 62, 232, 0.2);
}

.review-stars {
  color: var(--accent2);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.review-text {
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.9;
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}

.review-author {
  color: var(--text-primary);
  font-weight: 600;
  text-align: right;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

/* Gallery Section */
.gallery-section {
  padding: 8rem 0;
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
}

.gallery-intro {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.3rem;
  margin-bottom: 4rem;
  font-weight: 500;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  aspect-ratio: 4/3;
  border: 2px solid transparent;
  transition: all 0.4s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(90, 42, 253, 0.3) 0%,
    rgba(254, 62, 232, 0.3) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover {
  border-color: var(--primary);
  box-shadow: 0 15px 40px rgba(90, 42, 253, 0.4);
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: var(--bg-card);
  transition: transform 0.6s ease;
}

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10, 10, 15, 0.95), transparent);
  backdrop-filter: blur(10px);
  padding: 2rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: 2;
}

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

.gallery-overlay p {
  color: var(--text-primary);
  margin: 0;
  font-weight: 600;
  font-size: 1.05rem;
  text-align: center;
}

/* Breakfast Club Section - Center */
.breakfast-club {
  padding: 8rem 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.breakfast-club::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 1000px;
  background: radial-gradient(
    circle,
    rgba(245, 214, 60, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.video-container {
  max-width: 1000px;
  margin: 4rem auto 0;
  position: relative;
  z-index: 1;
}

.video-container iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 25px;
  border: 3px solid rgba(90, 42, 253, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
}

.video-container iframe:hover {
  border-color: var(--accent2);
  box-shadow: 0 25px 80px rgba(90, 42, 253, 0.4);
  transform: scale(1.02);
}

.video-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--bg-card);
  border-radius: 25px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid rgba(90, 42, 253, 0.3);
  transition: all 0.4s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-placeholder:hover {
  border-color: var(--accent2);
  box-shadow: 0 25px 80px rgba(90, 42, 253, 0.4);
  transform: scale(1.02);
}

.video-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
  filter: drop-shadow(0 10px 30px rgba(90, 42, 253, 0.5));
}

.play-button circle {
  fill: var(--primary);
  transition: all 0.3s ease;
}

.play-button polygon {
  fill: white;
}

.video-placeholder:hover .play-button {
  transform: translate(-50%, -50%) scale(1.15);
}

.video-placeholder:hover .play-button circle {
  fill: var(--accent);
}

/* Contact Section - Bottom with Strong CTA */
.contact-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-dark) 100%);
  position: relative;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.contact-form {
  max-width: 700px;
  margin: 4rem auto 0;
  padding: 3rem;
  background: rgba(26, 26, 46, 0.6);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  border: 1px solid rgba(90, 42, 253, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-input {
  background: rgba(10, 10, 15, 0.8);
  border: 2px solid rgba(90, 42, 253, 0.3);
  color: var(--text-primary);
  padding: 1.2rem 1.5rem;
  border-radius: 15px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-input::placeholder {
  color: var(--text-secondary);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(90, 42, 253, 0.1);
  background: rgba(10, 10, 15, 0.95);
}

.form-input.full-width {
  width: 100%;
  margin-bottom: 1.5rem;
}

textarea.form-input {
  resize: vertical;
  min-height: 150px;
}

/* Newsletter Section - Bottom Right CTA */
.newsletter {
  padding: 5rem 0;
  background: var(--bg-dark);
  text-align: center;
  position: relative;
}

.newsletter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent2), transparent);
}

.newsletter h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--text-primary) 0%,
    var(--accent) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto 3rem;
  gap: 1rem;
}

.newsletter-input {
  flex: 1;
  background: rgba(26, 26, 46, 0.6);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(90, 42, 253, 0.3);
  color: var(--text-primary);
  padding: 1.2rem 1.5rem;
  border-radius: 50px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.newsletter-input::placeholder {
  color: var(--text-secondary);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(90, 42, 253, 0.1);
}

.btn-arrow {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 0 2rem;
  border-radius: 50px;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(90, 42, 253, 0.4);
}

.btn-arrow:hover {
  background: var(--gradient-accent);
  transform: translateX(5px);
  box-shadow: 0 6px 25px rgba(254, 62, 232, 0.5);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.social-links a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(90, 42, 253, 0.1);
  border: 2px solid rgba(90, 42, 253, 0.3);
  border-radius: 50%;
  color: var(--primary);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--gradient-primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(90, 42, 253, 0.4);
}

/* Footer */
.footer {
  background: var(--bg-dark);
  padding: 3rem 0;
  text-align: center;
  border-top: 1px solid rgba(90, 42, 253, 0.2);
  color: var(--text-secondary);
}

.footer p {
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container,
  .nav-container {
    padding: 0 30px;
  }

  .hero-content,
  .about-container,
  .dj-container {
    gap: 4rem;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .nav-container {
    grid-template-columns: auto auto;
    padding: 0 20px;
    justify-content: space-between;
    width: 100%;
  }

  .container {
    padding: 0 20px;
    width: 100%;
  }

  .hero {
    padding: 4rem 0 3rem;
  }

  .hero-container {
    padding: 0 20px;
    width: 100%;
  }

  .hero-content,
  .about-container,
  .dj-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    width: 100%;
  }

  .book-cover {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }

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

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
    margin: 0 auto;
    justify-content: center;
  }

  .gallery-item {
    width: 100%;
    margin: 0 auto;
  }

  .gallery-overlay {
    transform: translateY(0);
    padding: 1.5rem;
    background: linear-gradient(
      to top,
      rgba(10, 10, 15, 0.95),
      rgba(10, 10, 15, 0.7)
    );
  }

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

  .about-section,
  .dj-section,
  .books-section,
  .reviews-section,
  .gallery-section,
  .breakfast-club,
  .contact-section {
    padding: 5rem 0;
  }

  .section-title::after {
    margin-left: 0;
  }

  .contact-form {
    padding: 2rem;
  }

  .about-image,
  .dj-image {
    order: -1;
    max-width: 350px;
    margin: 0 auto;
  }

  .about-content,
  .dj-content {
    text-align: center;
    width: 100%;
  }

  .dj-bio p,
  .about-content p {
    text-align: left;
    width: 100%;
  }

  .section-title.centered {
    text-align: center;
    width: 100%;
  }

  .availability-badge {
    font-size: 0.75rem;
    padding: 0.8rem 1.2rem;
  }

  .video-container iframe {
    height: 400px;
  }

  .review-card {
    padding: 2rem;
  }

  .social-links {
    gap: 1.5rem;
  }

  .social-links a {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .navbar {
    padding: 1rem 0;
    width: 100%;
  }

  .logo {
    font-size: 1.3rem;
  }

  .hero {
    padding: 3rem 0 2rem;
    width: 100%;
  }

  .hero-container,
  .container,
  .nav-container {
    padding: 0 15px;
    width: 100%;
    max-width: 100%;
  }

  .hero-title {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-description {
    font-size: 0.95rem;
    line-height: 1.7;
  }

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

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

  .dj-subtitle {
    font-size: 0.95rem;
  }

  .dj-bio,
  .about-content p {
    font-size: 0.95rem;
  }

  .nav-icons {
    gap: 0.5rem;
  }

  .icon-btn {
    padding: 0.5rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 1rem 2rem;
    font-size: 0.9rem;
    width: 100%;
  }

  .book-cover {
    max-width: 280px;
  }

  .book-image {
    max-height: 400px;
  }

  .availability-badge {
    font-size: 0.65rem;
    padding: 0.6rem 1rem;
  }

  .about-image,
  .dj-image {
    max-width: 280px;
    --image-max-width: 280px;
    --offset: 15px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .gallery-item {
    height: 300px;
    width: 100%;
    margin: 0 auto;
  }

  .gallery-overlay {
    transform: translateY(0);
    padding: 1rem;
    background: linear-gradient(
      to top,
      rgba(10, 10, 15, 0.95),
      rgba(10, 10, 15, 0.7)
    );
  }

  .gallery-overlay p {
    font-size: 0.85rem;
  }

  .gallery-intro {
    font-size: 1rem;
  }

  .book-card-image {
    height: 350px;
  }

  .book-card-content {
    padding: 1.5rem;
  }

  .video-container iframe {
    height: 300px;
  }

  .about-section,
  .dj-section,
  .books-section,
  .reviews-section,
  .gallery-section,
  .breakfast-club,
  .contact-section {
    padding: 3rem 0;
  }

  .newsletter {
    padding: 3rem 0;
  }

  .newsletter h3 {
    font-size: 1.5rem;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 1rem;
  }

  .newsletter-input {
    padding: 1rem 1.2rem;
    font-size: 0.95rem;
  }

  .btn-arrow {
    padding: 1rem 2rem;
    width: 100%;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .form-input {
    padding: 1rem;
    font-size: 0.95rem;
  }

  .review-card {
    padding: 1.5rem;
  }

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

  .book-card h3 {
    font-size: 1.3rem;
  }

  .book-card p {
    font-size: 0.95rem;
  }

  .footer {
    padding: 2rem 0;
  }

  .footer p {
    font-size: 0.85rem;
  }

  .social-links {
    gap: 1rem;
  }

  .social-links a {
    width: 40px;
    height: 40px;
  }
}

/* Extra small devices (320px and below) */
@media (max-width: 320px) {
  .container,
  .nav-container,
  .hero-container {
    padding: 0 15px;
  }

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

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

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

  .logo {
    font-size: 1.1rem;
  }

  .book-cover {
    max-width: 220px;
  }

  .about-image,
  .dj-image {
    max-width: 220px;
    --image-max-width: 220px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 0.9rem 1.5rem;
    font-size: 0.85rem;
  }
}
