* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0d0d0d;
  color: white;
  font-family: 'Inter', Arial, sans-serif;
}

/* ================= NAVBAR ================= */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 14px 6%;

  background: rgba(0,0,0,0.72);

  position: sticky;
  top: 0;
  z-index: 100;

  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* LOGO */
.logo-link {
  display: flex;
  align-items: center;
}

.logo {
  height: 42px;
  width: auto;
  display: block;
}

/* MENU */
.navbar nav {
  display: flex;
  gap: 10px;
}

.navbar nav a {
  color: white;
  text-decoration: none;

  padding: 10px 18px;

  border-radius: 16px;

  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);

  font-size: 0.95rem;
  font-weight: 500;

  transition: 0.25s ease;
}

.navbar nav a:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

/* ================= GALERIA ================= */
.gallery {
  column-count: 2;
  column-gap: 16px;

  padding: 30px 8% 80px;
}

.gallery img {
  width: 100%;
  display: block;

  margin-bottom: 16px;

  border-radius: 16px;

  height: auto;
}

/* DESKTOP */
@media (min-width: 900px) {
  .gallery {
    column-count: 4;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .hero h2 {
    font-size: 2.3rem;
  }

  .gallery {
    column-count: 2;
  }
}

/* ================= ALBUMS GRID ================= */
.albums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;

  padding: 30px 8%;
}

.album-card {
  display: flex;
  flex-direction: column;

  text-decoration: none;
  color: white;

  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);

  border-radius: 16px;
  overflow: hidden;

  transition: 0.25s ease;
}

.album-card:hover {
  transform: translateY(-4px);
}

.album-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;

  display: block;
}

.album-info {
  padding: 12px;
}

.album-info h2 {
  font-size: 1rem;
}

.album-info p {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-top: 4px;
}

/* ================= LIGHTBOX ================= */
.lightbox {
  position: fixed;
  inset: 0;

  background: rgba(0,0,0,0.85);

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 9999;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;

  border-radius: 12px;
}

.lightbox.hidden {
  display: none;
}
#album-header {
  padding: 40px 8% 10px;
}

#album-header h2 {
  margin-bottom: 10px;
}

#album-header p {
  max-width: 700px;
  line-height: 1.6;
  opacity: 0.8;
}
