body {
  margin: 0;
  padding: 0;
  background-color: #1A1C1E;
  color: rgb(255, 112, 0);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  overflow-x: hidden;
}

.container {
  text-align: center;
  padding: 40px 20px;
  padding-top: 100px;
}

.top-logo {
  width: 40vmin;
  max-width: 700px;
  opacity: 1;
  animation: float 6s ease-in-out infinite;
  margin-bottom: 2rem;
}

.text-content {
  position: relative;
  z-index: 1;
}

.fade-in {
  font-size: 1.2rem;
  color: rgb(255, 112, 0);
  opacity: 0;
  animation: fadeIn 2s ease-in-out forwards;
}

.under-construction {
  font-size: 1.2rem;
  color: rgb(255, 112, 0);
  opacity: 0;
  animation: fadeIn 2s ease-in-out 1s forwards;
  margin-top: 0.5rem;
}

/* Animations */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

/* --- Navigation Bar --- */
.top-nav {
  width: 100%;
  background-color: #1A1C1E;
  padding: 10px 20px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0, 0%, 15%, 0.887);
}

.nav-content {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between; /* ← important */
  gap: 3rem;
}


.nav-logo {
  height: 40px;
  width: auto;
  display: block;
}

.logo-link {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #FF5800;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #888;
}

/* --- Burger Menu --- */
.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: #FF7000;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    background-color: white;
    position: absolute;
    top: 60px;
    left: 0;
    padding: 10px 20px;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    display: block;
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
  }
}
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 per row on desktop */
  gap: 16px;
  padding-top: 100px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on mobile */
  }
}

@media (max-width: 768px) {
  body {
    height: auto;
    display: block;
    justify-content: initial;
    align-items: initial;
    flex-direction: initial;
  }
}




.gallery-item {
  width: 100%;
  padding-top: 100%; /* square ratio */
  position: relative;
  border-radius: 12px;
  overflow: visible; /* ← allow glow outside */
  z-index: 1;
}


.gallery-item img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: none; /* Start without glow */
}

.gallery-item img:hover {
  transform: scale(1.03);
  box-shadow:
    0 0 3px 2px rgb(255, 112, 0),
    0 0 7px 5px rgb(255, 112, 0);
  z-index: 10;
}

.music-container {
  padding-top: 100px;
  text-align: center;
  color: #ff7000;
}

.music-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 2rem auto;
}

.music-card {
  background-color: #1c1c1c;
  border-radius: 12px;
  padding: 1rem;
  text-decoration: none;
  color: #ff7000;
  box-shadow: 0 0 10px rgba(255, 112, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.music-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(255, 112, 0, 0.6);
}

.music-thumb {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.language-dropdown {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.language-dropdown select {
  font-size: 1rem;
  padding: 6px 10px;
  border-radius: 8px;
  border: none;
  background-color: #222;
  color: #ff7000;
  box-shadow: 0 0 10px rgba(255, 112, 0, 0.3);
  cursor: pointer;
  transition: box-shadow 0.3s;
}

.language-dropdown select:hover {
  box-shadow: 0 0 15px rgba(255, 140, 0, 0.5);
}

.right-section {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.language-select {
  background-color: #1f1f1f;
  color: #ff5800;
  border: none;
  padding: 5px 10px;
  font-size: 0.9rem;
  border-radius: 5px;
}

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

.card {
  background-color: #1a1a1a;
  border: 1px solid #ff5800;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  color: #ff7000;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 12px rgba(255, 112, 0, 0.6);
}

/* Base link */
.nav-links li a {
  text-decoration: none;
  color: #FF5800;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s, text-shadow 0.3s;
}

/* Hover effect (for all links) */
.nav-links li a:hover,
.nav-links li a.active:hover {
  color: #FF5800;
  text-shadow:
    0 0 1px #ffb347,
    0 0 2px #ff8000,
    0 0 3px #ff6600,
    0 0 4px #ff3300,
    0 0 6px #ff0000;
}


/* Active link (gray) */
.nav-links li a.active {
  color: #888; /* or your preferred gray */
}

/* Active link hover effect */
.nav-links li a.active:hover {
  color: #888;
  text-shadow:
    0 0 1px #ffb347,
    0 0 2px #ff8000,
    0 0 3px #ff6600,
    0 0 4px #ff3300,
    0 0 6px #ff0000;
}

/* Logo glow on hover */
.nav-logo:hover {
  filter: drop-shadow(0 0 1px #ffb347)
          drop-shadow(0 0 2px #ff8000)
          drop-shadow(0 0 3px #ff6600)
          drop-shadow(0 0 4px #ff3300)
          drop-shadow(0 0 6px #ff0000);
  transition: filter 0.3s ease;
}

.language-select:hover {
  filter: drop-shadow(0 0 1px #ffb347)
          drop-shadow(0 0 2px #ff8000)
          drop-shadow(0 0 3px #ff6600)
          drop-shadow(0 0 4px #ff3300)
          drop-shadow(0 0 6px #ff5900);
  transition: filter 0.3s ease;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* two cards per row */
  gap: 2rem;
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 1rem;
}

/* Default (desktop) behavior */
.top-row {
  display: none;
}

/* Mobile layout */
@media (max-width: 768px) {
  .nav-content {
    flex-direction: column;
    align-items: center;
  }

  .top-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .nav-links {
    display: none;
  }

  .burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .burger div {
    width: 30px;
    height: 3px;
    background-color: orange;
  }

  .language-select {
    margin: 0;
  }

  .nav-logo {
    height: 40px;
  }
}

/* Desktop row layout (logo | nav | language) */
.desktop-row {
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  height: 60px;
}


@media (min-width: 769px) {
  .desktop-row {
    display: flex;
    padding: 0 20px;
    height: 60px;
  }

  .top-row {
    display: none;
  }

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

  .logo-link {
    flex-shrink: 0;
  }

  .language-select {
    flex-shrink: 0;
  }
}

/* Right-side block for desktop nav */
.right-block {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.mobile-nav-links {
  display: none;
  flex-direction: column;
  width: 100%;
  background-color: #1A1C1E;
  position: absolute;
  top: 70px;
  left: 0;
  padding: 10px 20px;
  list-style: none;
  z-index: 99;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.mobile-nav-links li {
  padding: 10px 0;
  border-bottom: 1px solid #333;
}

.mobile-nav-links li a {
  color: #FF5800;
  font-weight: 600;
  text-decoration: none;
  display: block;
}

.mobile-nav-links li a:hover {
  color: #888;
}

/* Open state */
.mobile-nav-links.open {
  display: flex;
}

@media (min-width: 769px) {
  .mobile-nav-links {
    display: none !important;
  }
}
