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

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&family=Poppins:wght@400;600;700&display=swap');

:root {
  --red: #b31217;
  --red-light: #e03a3e;
  --red-dark: #630a0c;

  --bg-dark: #000;
  --bg-mid: #0a0a0a;
  --bg-accent: #111;

  --text-main: #f5f5f5;
  --text-sub: #b3b3b3;
  --text-muted: #777;

  --font-primary: 'Poppins', 'Inter', sans-serif;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 2.5rem;

  --transition: 0.3s ease;
  --spacing-section: 10rem;
}

html, body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  color: var(--text-main);
  background-color: var(--bg-dark);
  line-height: 1.8;
  letter-spacing: 0.2px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;

}

h1, h2, h3, h4 {
  color: var(--text-main);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.6em;
}

h1 {
  font-family: 'Reem Kufi', sans-serif;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #b31217;
}

h2 {
  font-family: 'Reem Kufi', sans-serif;
  font-size: 2rem;
  color: var(--red);
}

p { 
  color: var(--text-sub);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  max-width: 700px;
  margin-inline: auto;
}

a {
  color: var(--red);
  text-decoration: none;
  transition: color var(--transition), text-shadow var(--transition);
}

a:hover, a:focus {
  color: var(--red-light);
  text-shadow: 0 0 6px rgba(224, 58, 62, 0.5);
  outline: none;
}

button, .btn {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  border: 1px solid var(--red);
  padding: 0.8rem 1.6rem;
  border-radius: 6px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
  transition:
  background 0.8s cubic-bezier(0.22, 1, 0.36, 1),
  box-shadow 0.6s ease,
  transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

button:hover, .btn:hover {
  background: linear-gradient(135deg, var(--red-light), var(--red));
  color: #fff;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 16px rgba(179, 18, 23, 0.6);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

button:focus, .btn:focus {
  outline: 2px solid var(--red-light);
  outline-offset: 3px;
}

.cinematic-glow {
  text-shadow: 0 0 8px rgba(179, 18, 23, 0.6),
               0 0 16px rgba(179, 18, 23, 0.3);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: center;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  transition:
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.3s ease;
}

.navbar.hide {
  transform: translateY(-100%);
  opacity: 0;
}


@media (min-width: 1025px) {
  .navbar {
    transform: none !important;
    opacity: 1 !important;
  }

  .navbar.hide {
    transform: none !important;
    opacity: 1 !important;
  }
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.nav-inner {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;

}

.nav-links a {
  position: relative;
  color: var(--text-main);
  text-decoration: none;
  transition: color 0.5s cubic-bezier(0.22, 1, 0.36, 1); /* slower and smoother */
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: var(--red-light);
  box-shadow: 0 0 8px rgba(224, 58, 62, 0.6);
  transition:
  width 0.6s cubic-bezier(0.22, 1, 0.36, 1),
  box-shadow 0.4s ease;
}

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

.nav-links a:hover {
  color: var(--red-light);
  text-shadow: 0 0 6px rgba(224, 58, 62, 0.3);
}


.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  z-index: 1100;
  transition: transform 0.3s ease;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: #fff;
  transition: all 0.4s ease;
  border-radius: 1px;
}

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

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

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

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(12px);
    opacity: 0;
    transform: translateY(-10px); /* small offset instead of -100% */
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
    z-index: 999;
   visibility: hidden;
  }

  .nav-links.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;

  }
  .nav-links a {
    font-size: 1.6rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

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

  .nav-links.active a:nth-child(1) { transition-delay: 0.1s; }
  .nav-links.active a:nth-child(2) { transition-delay: 0.2s; }
  .nav-links.active a:nth-child(3) { transition-delay: 0.3s; }
  .nav-links.active a:nth-child(4) { transition-delay: 0.4s; }

  .hamburger {
    display: flex;
  }
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%; 
  background: #000;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
  transition: background 0.5s ease;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: fadeInUp 2s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.hero-title {
  font-size: 3rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #ccc;
  margin-top: 10px;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30vh;
  background: linear-gradient(to bottom, transparent, #000);
  pointer-events: none;
}

.about-hero,
.media-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slider-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.slider-image.active {
  opacity: 1;
  z-index: 1;
}

.music-section {
  padding: 6rem 2rem;
  background-color: #0d0d0d; /* Matches dark theme */
  color: #fff;
  text-align: center; /* Centers section titles and paragraphs nicely */
}


.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  justify-items: center; /* Keeps cards aligned in the center of their grid cells */
}

.album-card {
  background-color: #1a1a1a;
  padding: 1rem;
  width: 100%;
  max-width: 320px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.05); /* subtle border for depth */
}

.album-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.album-cover {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.album-cover img {
  width: 100%;
  display: block;
  border-radius: 10px;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.album-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden; /* hide from click/touch */
  pointer-events: none; /* block clicks when hidden */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  color: #fff;
  border-radius: 10px;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.album-cover:hover img {
  transform: scale(1.08);
  filter: brightness(0.6);
}

.album-cover:hover .album-overlay {
  opacity: 1;
  visibility: visible; /* now clickable */
  pointer-events: auto;
}

.album-overlay h3 {
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  margin: 0;
}

.album-actions {
  display: flex;
  gap: 1rem;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  transition: transform 0.3s ease, background 0.3s ease;
  cursor: pointer;
}

.icon-link img {
  width: 26px;
  height: 26px;
  filter: brightness(1.2);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.icon-link:hover img {
  filter: brightness(2);
  transform: scale(1.1);
}

.icon-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: scale(1.1);
}

.album-card h3 {
  font-size: 1.25rem;
  margin: 1rem 0 0.5rem;
}

.album-links .btn {
  margin: 0.25rem;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
}

.video-section {
  padding: 6rem 2rem;
  background-color: #121212;
  color: #fff;
  text-align: center;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
}

.about-content {
  text-align: left;
  margin: 1rem auto 0;
  line-height: 1.7;
  max-width: 700px;
  opacity: 0;
  transform: translateY(30px);
  filter: blur(6px);
  transition: 
    opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.2s ease;
}

.about-content.loaded {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.about-content p {
  text-align: center;
}

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

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

.video-category h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
  text-align: left;
}

.category-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.video-scroll {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 1.5rem;
  padding: 1rem 0;
  scrollbar-width: none; /* Firefox */
}

.video-scroll-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.video-scroll::-webkit-scrollbar {
  display: none;
}


.video-scroll::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 4px;
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #e63946; /* red accent */
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.2s ease;
}

.scroll-btn:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}


.scroll-btn.left {
  left: -1rem;
}

.scroll-btn.right {
  right: -1rem;
}

@media (hover: none) and (pointer: coarse) {
  .scroll-btn {
    opacity: 0.9;
    pointer-events: auto;
  }
}


.scroll-btn:focus {
  outline: none;
}

.scroll-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.video-card {
  flex: 0 0 300px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  cursor: pointer;
  transition: transform 0.3s;
}

.video-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
  border-radius: 8px;
}

.video-card:hover img {
  transform: scale(1.03);
  filter: brightness(1.05);
}

.video-card:hover {
  transform: scale(1.05);
}

.video-scroll-wrapper:hover .scroll-btn {
  opacity: 0.9;
  pointer-events: auto;
}

.play-button {
display: none;
}

.video-card:hover .play-button {
  opacity: 1;
  text-shadow: 0 0 15px #b31217;
}

.video-lightbox {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
}

.video-lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  width: 900px;
  aspect-ratio: 16 / 9;
  background: #000;
}

.lightbox-content iframe {
  width: 100%;
  height: 100%;
}

.close-lightbox {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

.close-lightbox:hover {
  opacity: 0.6;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  opacity: 0.85;
  transition: opacity 0.4s ease;
}

.scroll-mouse {
  width: 26px;
  height: 45px;
  border: 2px solid red;
  border-radius: 18px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background-color: red;
  border-radius: 2px;
  animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {
  0% {
    transform: translateY(-6px);
    opacity: 0;
  }
  50% {
    transform: translateY(4px);
    opacity: 1;
  }
  100% {
    transform: translateY(10px);
    opacity: 0;
  }
}

body.scrolled .scroll-indicator {
  opacity: 0;
  pointer-events: none;
}


.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), #000);
  z-index: 2;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), #000);
  z-index: 2;
}

#main-content {
  position: relative;
  z-index: 2;
  margin-top: 5rem;
  background: var(--color-bg);
}

.section {
  position: relative;
  padding: 6rem 2rem;
  background: var(--color-bg-alt);
  opacity: 0; 
  transform: translateY(80px) scale(0.98);
  filter: blur(8px);
  transition:
    opacity 1.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.5s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.2s ease;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  will-change: opacity, transform, filter; 
  backface-visibility: hidden;
  -webkit-transform: translateZ(0); 
  border-radius: 12px;
}

.section.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.section:nth-child(even) {
  background: #0c0c0c;
}

.section-inner {
  max-width: 900px;
  margin: 0 auto;
}

.section.visible h2 {
  color: var(--red-light);
  text-shadow: none; /
  transition: text-shadow 1.2s ease, color 1.2s ease;
  text-align: center;
}

.section.visible .section-inner > * {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeCascade 1s ease forwards;
}

.section.visible p {
  animation: fadeUpCinematic 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes fadeUpCinematic {
  0% {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.section.visible .section-inner > *:nth-child(1) { animation-delay: 0.05s; }
.section.visible .section-inner > *:nth-child(2) { animation-delay: 0.15s; }
.section.visible .section-inner > *:nth-child(3) { animation-delay: 0.3s; }
.section.visible .section-inner > *:nth-child(4) { animation-delay: 0.45s; }
.section.visible .section-inner > *:nth-child(5) { animation-delay: 0.6s; }
.section.visible .section-inner > *:nth-child(6) { animation-delay: 0.75s; }


@keyframes fadeCascade {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-footer {
  background: #000;
  color: #ccc;
  text-align: center;
  padding: 40px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-content p {
  margin: 0;
  font-size: 0.9rem;
  color: #888;
  letter-spacing: 0.5px;
}

.footer-socials {
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;

}

.footer-socials a {
  display: inline-block;
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-socials img {
  width: 100%;
  height: 100%;
  filter: brightness(0) invert(1); /* makes SVGs white */
  transition: filter 0.3s ease;
}

.footer-socials a:hover {
  transform: scale(1.15);

}

.footer-socials a:hover img {

}

@media (max-width: 600px) {
  .footer-socials {
    gap: 14px;
  }
  .footer-socials a {
    width: 24px;
    height: 24px;
  }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

.contact-section {
  padding: 6rem 2rem;
  background-color: #121212;
  color: #fff;
  text-align: center;
}

.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--red);
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.contact-section p {
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
  color: #ccc;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  position: relative;
}

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

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #fff;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #333;
  border-radius: 6px;
  background: #111;
  color: #fff;
  font-family: inherit;
  transition: box-shadow 0.4s ease, border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 8px var(--red);
  outline: none;
}

.contact-form .btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  font-weight: bold;
}






