* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary-color: #d4af37;
  --secondary-color: #aa8c2c;
  --dark-bg: #050505;
  --light-bg: #121212;
  --card-bg: rgba(255, 255, 255, 0.03);
  --text-light: #ffffff;
  --text-gray: #b3b3b3;
  --gradient-gold: linear-gradient(
    135deg,
    #bf953f 0%,
    #fcf6ba 45%,
    #b38728 50%,
    #fbf5b7 100%
  );
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.6);
  --glass-border: 1px solid rgba(255, 255, 255, 0.08);
}
body {
  font-family: "Tajawal", "Playfair Display", serif;
  background-color: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.8;
  overflow-x: hidden;
  font-weight: 300;
}

html {
  scroll-behavior: smooth;
}
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: transparent;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar:has(.nav-logo:hover) {
  border-bottom: 1px solid var(--primary-color);
  box-shadow: 0 5px 10px rgba(212, 175, 55, 0.3);
}

.navbar.scrolled {
  padding: 0.2rem 0;
  background: rgba(5, 5, 5, 0.95);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  min-height: 60px;
}
.nav-logo a {
  display: flex;
  align-items: center;
  width: 150px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.nav-logo:hover a {
  cursor: pointer;
  transform: scale(1.1);
}
.nav-logo img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-social {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-shrink: 0;
}

.nav-social a {
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.nav-social a:hover {
  color: var(--primary-color);
  transform: translateY(-3px);
}

.nav-social-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
  flex: 0 0 40px;
}

.nav-menu a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  font-size: 1rem;
  white-space: nowrap;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-menu a.active {
  color: var(--primary-color);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  flex: 0 0 30px;
  align-items: flex-end;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  border-radius: 5px;
  background: var(--primary-color);
  transition: all 0.3s ease;
}
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: left;
  position: relative;
  overflow: hidden;
  padding-top: 90px;
  margin-top: 50px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  background-image: url(../assets/img/Shymaa\ ELshayeb\ Cover.jpg);
  background-size: cover;
  background-position: center left;
  opacity: 1 !important;
  transform: none !important;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    transparent 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  z-index: 1;
}

.hero-bg-icon {
  position: absolute;
  font-size: 30rem;
  opacity: 0.03;
  z-index: 0;
  animation: float 6s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 1000px;
  padding: 0 1rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  animation: fadeInDown 1s ease both;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 1.2s ease 0.2s both;
  line-height: 1.2;
  letter-spacing: -2px;
}

.hero-description {
  font-size: 1.5rem;
  color: var(--text-gray);
  margin-bottom: 3rem;
  animation: slideInRight 1.5s ease 0.4s both;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  animation: zoomIn 1s ease 0.6s both;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--gradient-gold);
  color: #000;
  padding: 1.2rem 3.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
  animation:
    fadeInUp 1s ease 0.8s both,
    pulse 3s infinite ease-in-out;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.5);
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(201, 150, 61, 0.5);
  border-radius: 25px;
  animation: bounce 2s infinite;
}

.scroll-indicator::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 2px;
  animation: scroll 2s infinite;
}
section {
  padding: 6rem 2rem;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
  content-visibility: auto;
  contain-intrinsic-size: 1px 1000px;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

section.visible .section-title {
  animation: slideInLeft 1s ease forwards;
}

section.visible .section-divider {
  animation: zoomIn 0.8s ease forwards;
}

section.visible .lead-text {
  animation: slideInRight 1.2s ease forwards;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.section-divider {
  width: 80px;
  height: 4px;
  background: var(--gradient-gold);
  margin: 0 auto 4rem;
  border-radius: 2px;
}

.lead-text {
  font-size: 1.3rem;
  text-align: center;
  color: var(--text-gray);
  max-width: 800px;
  margin: 0 auto 1.5rem;
  line-height: 1.8;
}
#about {
  background: var(--dark-bg);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

.info-card {
  background: var(--card-bg);
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  border: var(--glass-border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  text-decoration: none;
  color: #ffffff;
}

.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top right,
    rgba(212, 175, 55, 0.1),
    transparent 70%
  );
  opacity: 0;
  transition: 0.4s;
}

.info-card:hover::before {
  opacity: 1;
}

.info-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
  animation: glow 2s infinite;
}

.info-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.info-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.info-card p {
  color: var(--text-gray);
  line-height: 1.6;
}
.albums-section {
  background: var(--dark-bg);
}

.albums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.album-card {
  background: var(--card-bg);
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: var(--glass-border);
  backdrop-filter: blur(10px);
}

.album-card:hover {
  transform: translateY(-15px) scale(1.03);
  border-color: var(--primary-color);
  box-shadow: 0 15px 45px rgba(212, 175, 55, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.album-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.album-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.album-card p {
  color: var(--text-gray);
  line-height: 1.6;
}
#music {
  background: linear-gradient(to bottom, var(--light-bg), var(--dark-bg));
}

.music-container {
  max-width: 1200px;
  margin: 0 auto;
}

.music-player-card {
  display: flex;
  background: var(--card-bg);
  border-radius: 20px;
  overflow: hidden;
  border: var(--glass-border);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
  min-height: 500px;
  transition: all 0.5s ease;
}
.music-player-card:has(.btn-listen-full:hover) {
  scale: 1.03;
  background-color: #3a000e;
  border: 1px solid #3a000e;
  box-shadow: 0px 0px 45px 5px #3a000e;
}

.player-image {
  flex: 0 0 40%;
  position: relative;
}

.player-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.player-interface {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  background: rgba(0, 0, 0, 0.6);
}

.player-header {
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.album-label {
  color: var(--primary-color);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 0.5rem;
}

.album-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--text-light);
  line-height: 1;
}

.btn-listen-full {
  background: #b59055;
  border: none;
  padding: 0.8rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-listen-full a {
  text-decoration: none;
  color: #fff;
}

.btn-listen-full:hover {
  background-color: #d4af37;
  border: 1px solid #b59055;
  transform: translateY(-2px);
}

/* Track List */
.track-list {
  flex: 1;
  padding: 1rem 2rem;
  overflow-y: auto;
  max-height: 300px;
}

.track-item {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--text-gray);
  position: relative; /* For progress bar positioning */
  overflow: hidden;
}

.item-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #bf953f, #fcf6ba, #b38728, #fbf5b7);
  width: 0%;
  transition: width 0.1s linear;
  z-index: 2;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

.track-item:hover {
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.02);
  padding-left: 10px;
}

.track-item.active {
  color: var(--primary-color);
}

.play-icon {
  margin-right: 1.5rem;
  font-size: 0.8rem;
}

.track-details {
  flex: 1;
}

.track-name {
  font-weight: 500;
  font-size: 1rem;
}

.track-duration {
  font-size: 0.9rem;
  opacity: 0.7;
  flex-shrink: 0;
  margin-left: 1rem;
}

/* Bottom Player Bar */
.active-track-bar {
  background: var(--card-bg);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: auto;
  position: relative;
}

.player-progress-container {
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--card-bg);
  cursor: pointer;
}

.player-progress-bar {
  height: 100%;
  background: var(--primary-color);
  width: 0%;
  transition: width 0.1s linear;
}

.current-track-info {
  display: flex;
  flex-direction: column;
}

.current-track-info .label {
  font-size: 0.7rem;
  color: var(--text-gray);
  margin-bottom: 2px;
}

.current-track-info .name {
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.9rem;
}

.player-controls {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.ctrl-btn {
  background: none;
  border: none;
  color: var(--text-gray);
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.ctrl-btn:hover {
  color: var(--primary-color);
}

.ctrl-btn.play-pause {
  background: #b59055;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.ctrl-btn.play-pause:hover {
  background: #d4af37;
  transform: scale(1.1);
  color: #fff;
}

.time-display {
  color: var(--text-gray);
  font-size: 0.9rem;
  min-width: 80px;
  text-align: right;
}

/* Scrollbar for track list */
.track-list::-webkit-scrollbar {
  width: 6px;
}
.track-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
}
.track-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

@media (max-width: 900px) {
  .player-header {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
    padding: 1.5rem;
  }
  .btn-listen-full {
    width: 100%;
    text-align: center;
    padding: 1rem;
  }
  .album-title {
    font-size: 1.8rem;
  }
  .music-player-card {
    flex-direction: column;
  }
  .player-image {
    height: 300px;
  }
  .player-interface {
    width: 100%;
  }
  .active-track-bar {
    padding: 1rem;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .current-track-info {
    align-items: center;
  }
  .player-controls {
    width: 100%;
    justify-content: center;
    gap: 2rem;
  }
  .time-display {
    text-align: center;
    width: 100%;
  }
}

.track {
  background: var(--card-bg);
  backdrop-filter: blur(15px);
  border: var(--glass-border);
  border-radius: 20px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.track:hover {
  border-color: var(--primary-color);
  transform: translateX(-5px);
  background: rgba(255, 255, 255, 0.05);
}

.track.active {
  border-color: var(--primary-color);
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
  background: rgba(212, 175, 55, 0.05);
}

.track-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.track-info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}

.track-info p {
  font-size: 0.9rem;
  color: var(--text-gray);
}

.play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-gold);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--dark-bg);
  font-size: 1.3rem;
}

.play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(201, 150, 61, 0.5);
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(201, 150, 61, 0.2);
  border-radius: 10px;
  overflow: hidden;
  display: none;
}

.progress-bar.active {
  display: block;
}

.progress {
  height: 100%;
  background: var(--gradient-gold);
  width: 0%;
  transition: width 0.3s ease;
}

.streaming-platforms {
  margin-top: 4rem;
  text-align: center;
}

.streaming-platforms h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.platform-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--card-bg);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-light);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: var(--glass-border);
  backdrop-filter: blur(10px);
}

.platform-btn:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.platform-btn i {
  font-size: 2.5rem;
}

.platform-btn div {
  text-align: left;
}

.platform-btn span {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
}

.platform-btn small {
  color: var(--text-gray);
  font-size: 0.85rem;
}

.platform-btn.anghami i {
  color: #a942c4;
}
.platform-btn.spotify i {
  color: #1db954;
}
.platform-btn.youtube i {
  color: #ff0000;
}
.videos-section {
  background: var(--light-bg);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.video-card {
  background: var(--card-bg);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: var(--glass-border);
  backdrop-filter: blur(10px);
}

.video-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0px 40px rgba(201, 150, 61, 0.3);
}

.video-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail img {
  transform: scale(1.1);
}

.video-icon {
  font-size: 5rem;
  opacity: 0.3;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 0.3s ease;
}

.video-thumbnail:hover .play-overlay {
  opacity: 1;
}

.play-overlay i {
  font-size: 4rem;
  color: var(--primary-color);
}

.video-info {
  padding: 1.5rem;
}

.video-info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.video-info p {
  color: var(--text-gray);
  font-size: 0.95rem;
}
#collaborations {
  background: var(--dark-bg);
}

.collab-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.collab-card {
  background: var(--card-bg);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  border: var(--glass-border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.collab-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.collab-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.collab-card h4 {
  font-size: 1.3rem;
}
.events-section {
  background: var(--light-bg);
}

.events-content {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.events-category {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 20px;
  border: var(--glass-border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.events-category h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.events-category h3 i {
  color: var(--primary-color);
}

.events-category p {
  text-align: center;
  color: var(--text-gray);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.social-section {
  background: var(--dark-bg);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.social-card {
  background: var(--card-bg);
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  text-decoration: none;
  color: var(--text-light);
  border: var(--glass-border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.social-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
}

.social-card i {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.social-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.followers {
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 600;
}

.social-card.facebook:hover i {
  color: #1877f2;
}
.social-card.youtube:hover i {
  color: #ff0000;
}
.social-card.tiktok:hover i {
  color: #000000;
  background: linear-gradient(45deg, #25f4ee, #fe2c55);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.social-card.instagram:hover i {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
#testimonials {
  background: var(--light-bg);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 4rem 2rem;
}

#testimonials .container {
  width: 100%;
  height: 100%;
  position: relative;
}

.testimonials-grid {
  display: grid;
  align-items: center;
  justify-items: center;
  grid-template-columns: 1fr 400px 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 5;
}

#testimonials .section-title {
  position: absolute;
  top: 40%;
  left: 0%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 100%;
  text-align: center;
  pointer-events: none;
  margin: 0;
  text-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}

#testimonials .section-divider {
  position: absolute;
  top: 55%;
  left: 48%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

/* TESTIMONIAL CARDS */
.testimonial-card {
  text-align: center;
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: 20px;
  border: var(--glass-border);
  backdrop-filter: blur(10px);
  width: 100%;
  max-width: 350px;
  position: relative;
  transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  pointer-events: auto;
  z-index: 5;
  opacity: 0;
  transform: scale(0.8) translateY(50px);
  visibility: hidden;
}

.testimonial-card:hover {
  border-color: var(--primary-color);
  transform: scale(1.05) translateY(0) !important;
  z-index: 20;
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
  background: rgba(20, 20, 20, 0.95);
}

/* LEFT COLUMN */
.testimonial-card:nth-child(1) {
  grid-area: 1 / 1 / 2 / 2;
  justify-self: end;
  align-self: end;
}
.testimonial-card:nth-child(3) {
  grid-area: 2 / 1 / 3 / 2;
  justify-self: end;
  align-self: center;
  margin-right: 2rem;
} /* Pushed in slightly */
.testimonial-card:nth-child(5) {
  grid-area: 3 / 1 / 4 / 2;
  justify-self: end;
  align-self: start;
}

/* RIGHT COLUMN */
.testimonial-card:nth-child(2) {
  grid-area: 1 / 3 / 2 / 4;
  justify-self: start;
  align-self: end;
}
.testimonial-card:nth-child(4) {
  grid-area: 2 / 3 / 3 / 4;
  justify-self: start;
  align-self: center;
  margin-left: 2rem;
} /* Pushed in slightly */
.testimonial-card:nth-child(6) {
  grid-area: 3 / 3 / 4 / 4;
  justify-self: start;
  align-self: start;
}

/* CENTER COLUMN TOP/BOTTOM */
.testimonial-card:nth-child(7) {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: center;
  align-self: end;
  margin-bottom: 2rem;
}

.testimonial-card:nth-child(8) {
  grid-area: 3 / 2 / 4 / 3;
  justify-self: center;
  align-self: start;
  margin-top: 2rem;
}

/* Hide extras */
.testimonial-card:nth-child(n + 9) {
  display: none;
}

/* ANIMATION STATE */
.testimonial-card.animate-in {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0);
}

/* CARD CONTENT STYLES */
.stars {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stars i {
  margin-right: 0.2rem;
  font-size: 0.8rem;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--text-gray);
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.testimonial-author strong {
  color: var(--text-light);
  font-size: 0.9rem;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  #testimonials {
    height: auto;
    min-height: auto;
    display: block;
    padding: 6rem 1rem;
  }

  /* Reset Absolute Positioning for Title on Mobile */
  #testimonials .section-title,
  #testimonials .section-divider {
    position: static;
    transform: none;
    margin-bottom: 2rem;
    text-align: center;
  }

  .testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: auto;
  }

  .testimonial-card {
    transform: none !important;
    opacity: 0;
    margin: 0 !important; /* Reset margins */
    width: 100%;
    grid-area: auto !important; /* Reset grid area */
    justify-self: auto !important;
    align-self: auto !important;
  }

  /* Reset specific margins from grid layout */
  .testimonial-card:nth-child(3),
  .testimonial-card:nth-child(4),
  .testimonial-card:nth-child(7),
  .testimonial-card:nth-child(8) {
    margin: 0 !important;
  }

  .testimonial-card.animate-in {
    opacity: 1;
    transform: none;
  }

  .testimonial-card:hover {
    transform: translateY(-5px) !important;
  }
}
.contact-section {
  background: var(--dark-bg);
  text-align: center;
}

.btn-booking {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  gap: 1rem;
  background: var(--gradient-gold);
  color: var(--dark-bg);
  padding: 1.5rem 3rem;
  border: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(201, 150, 61, 0.4);
}

.btn-booking:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201, 150, 61, 0.6);
}
.footer {
  background: linear-gradient(to bottom, #080808, #000000);
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.5),
    transparent
  );
}

.footer-content {
  display: flex;
  gap: 2rem;
  text-align: center;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
}

.footer-brand {
  max-width: 250px;
}

.footer-logo-img img {
  height: 60px;
  width: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.2));
}

.footer-brand p {
  color: var(--text-gray);
  line-height: 1.6;
  font-size: 1rem;
}

.footer-links-group h4,
.footer-social-group h4 {
  color: var(--text-light);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.footer-links-group h4::after,
.footer-social-group h4::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-gold);
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.footer-nav a {
  color: var(--text-gray);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-nav a::before {
  content: "→";
  margin-right: 10px;
  opacity: 0;
  color: var(--primary-color);
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: var(--primary-color);
}

.footer-nav a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-social-icons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1.1rem;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-icon:hover {
  background: var(--gradient-gold);
  color: #000;
  transform: translateY(-5px) rotate(360deg);
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  text-align: center;
  color: #666;
  font-size: 1rem;
}

.footer-bottom a {
  color: var(--primary-color);
  font-weight: 800;
  text-decoration: none;
  transition: 0.3s;
}

.footer-bottom a:hover {
  color: #9f4bd8;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes titleGlow {
  0%,
  100% {
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
  }
  50% {
    text-shadow:
      0 0 25px rgba(212, 175, 55, 0.5),
      0 0 35px rgba(212, 175, 55, 0.3);
  }
}

.hero-title {
  animation:
    fadeInUp 1.2s ease,
    titleGlow 4s infinite ease-in-out;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-15px);
  }
}

@keyframes scroll {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(12px);
    opacity: 0;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-5px);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translateX(5px);
  }
}

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
  }
  50% {
    box-shadow:
      0 0 20px rgba(212, 175, 55, 0.8),
      0 0 30px rgba(212, 175, 55, 0.6);
  }
}

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-200deg);
  }
  to {
    opacity: 1;
    transform: rotate(0);
  }
}
/* #endregion */
/* #region RESPONSIVE DESIGN */
@media (max-width: 900px) {
  .nav-container {
    justify-content: space-between;
    padding: 0 1.5rem;
  }

  .nav-logo {
    position: absolute;
    left: 46%;
    transform: translateX(-50%);
    width: 100px;
    z-index: 1001;
  }

  .nav-logo:hover {
    transform: translateX(-50%) scale(1.1);
  }

  .nav-social {
    position: fixed;
    left: -100%;
    top: 60px; /* Navbar height */
    bottom: 0;
    flex-direction: column;
    justify-content: flex-start; /* Items from top */
    background: rgba(0, 0, 0, 0.2);
    width: 70px;
    padding: 2rem 0;
    gap: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-right: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(20px);
    align-items: center;
    z-index: 1000;
    visibility: hidden;
    height: calc(100vh - 60px);
  }

  .nav-social.active {
    left: 0;
    visibility: visible;
  }

  .nav-social-toggle {
    display: flex;
    z-index: 1002;
  }

  .nav-menu {
    position: fixed;
    right: -100%;
    top: 60px; /* Navbar height */
    bottom: 0;
    flex-direction: column;
    justify-content: flex-start;
    background: rgba(0, 0, 0, 0.8);
    width: 250px;
    padding: 1rem 0;
    gap: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(20px);
    margin: 0;
    text-align: center;
    left: auto;
    transform: none;
    z-index: 1000;
    visibility: hidden;
    height: calc(100vh - 60px);
    overflow-y: auto;
  }

  .nav-menu.active {
    right: 0;
    visibility: visible;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu a {
    display: block;
    width: 100%;
    padding: 0.8rem 0;
    font-size: 1.2rem; /* Larger font for mobile */
  }

  .nav-toggle {
    display: flex;
    z-index: 1002;
  }

  .hero-content {
    padding: 2rem;
  }

  .hero {
    background-size: cover;
    background-position: calc(50% - 400px);
    justify-content: center;
  }
  .stat-number {
    font-size: 2rem;
  }

  section {
    padding: 4rem 1.5rem;
  }
  .testimonial-card {
    max-width: 90%;
  }

  .info-grid,
  .albums-grid,
  .platforms-grid,
  .videos-grid,
  .collab-grid,
  .social-grid,
  .testimonials-grid,
  .music-content-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    gap: 3rem;
  }

  .footer-brand {
    max-width: 100%;
    margin: 0 auto;
  }

  .footer-links-group h4::after,
  .footer-social-group h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-nav {
    gap: 0.5rem;
    align-items: center;
  }

  .footer-social-icons {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-description {
    font-size: 1.1rem;
  }
  .hero {
    background-size: cover;
    background-position: calc(50% - 400px);
    justify-content: center;
    padding: 2rem 1rem;
  }
  .hero-stats {
    gap: 1.5rem;
  }
  .stat-number {
    font-size: 1.8rem;
  }
  .btn-primary,
  .btn-booking {
    padding: 0.8rem 1.8rem;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .nav-logo {
    width: 120px;
  }

  /* Fix Testimonials on Mobile */
  .testimonials-grid {
    gap: 3rem;
    padding: 2rem 0;
  }

  .testimonial-card {
    max-width: 100%;
    padding: 2rem;
    margin: 0 !important; /* Override staggered margins */
    align-self: center !important; /* Center all cards */
    transform: scale(0.8) translateY(50px) !important; /* Simple fade up */
  }

  .testimonial-card.animate-in {
    transform: scale(1) translateY(0) !important;
  }

  .testimonial-card:hover {
    transform: scale(1.02) !important;
  }

  /* Footer Refinements for Mobile */
  .footer {
    padding-top: 3rem;
  }

  .footer-content {
    gap: 2.5rem;
    padding-bottom: 2rem;
  }

  .footer-brand h3 {
    font-size: 1.8rem;
  }

  .footer-links-group h4,
  .footer-social-group h4 {
    margin-bottom: 1.5rem;
  }
}

/* Smartwatch & Small Phones */
@media (max-width: 320px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .nav-logo {
    width: 90px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .footer-links-group a,
  .social-icon {
    font-size: 1rem;
  }
}

/* Custom Responsive additions for tablet */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }
  .hero {
    background-position: 30% center;
  }
  .info-grid,
  .albums-grid,
  .videos-grid,
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Retain vertical flow for testimonials on Tablet but adjust spacing */
  .testimonials-grid {
    gap: 8rem;
    padding: 3rem 0;
  }

  .testimonial-card {
    max-width: 40%;
  }
}

/* Large Screens */
@media (min-width: 1440px) {
  .container {
    max-width: 1600px;
  }

  .hero-title {
    font-size: 7rem;
  }

  .testimonials-grid {
    gap: 5rem;
    width: 100%;
    padding: 4rem;
  }

  .testimonial-card {
    width: 100%;
    padding: 3rem;
  }

  /* Footer Optimizations for Large Screens */
  .footer-content {
    gap: 8rem; /* More breathing room */
    padding-bottom: 6rem;
  }

  .footer-brand h3 {
    font-size: 2.5rem;
  }

  .footer-links-group h4,
  .footer-social-group h4 {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
  }

  .footer-nav {
    gap: 1.5rem;
  }

  .footer-nav a {
    font-size: 1.1rem;
  }

  .social-icon {
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
  }

  .footer-bottom {
    padding: 3rem 0 4rem;
    font-size: 1.1rem;
  }
}

/* ====================================
   VIDEO MODAL POPUP
==================================== */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-modal.active {
  display: flex;
  opacity: 1;
}

.video-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  aspect-ratio: 16/9;
  background: var(--dark-bg);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  animation: modalSlideIn 0.4s ease;
}

.video-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: var(--primary-color);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--dark-bg);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.video-modal-close:hover {
  transform: rotate(90deg) scale(1.1);
  background: var(--secondary-color);
}

.video-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.video-container iframe {
  border: none;
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .video-modal-content {
    width: 95%;
  }

  .video-modal-close {
    top: -45px;
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}
/* #endregion */
/* #region Developer Credit */
.developer-credit {
  width: 100%;
  text-align: center;
  align-self: center;
  font-size: 12px;
  color: #fff;
  letter-spacing: 0.5px;
  margin-top: 10px;
}

.developer-credit a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
  font-family: monospace;
}

.developer-credit a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: #4361ee;
  transition: width 0.3s ease;
}

.developer-credit a:hover {
  color: #4361ee;
}
.developer-credit a:hover::after {
  width: 100%;
}
/* #endregion */
