body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #111;
  color: #eee;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1c1c1c;
  padding: 1rem 2rem;
}

.logo {
  font-size: 1.2rem;
  font-weight: bold;
}

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

.nav-links a {
  color: white;
  text-decoration: none;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: #222;
  min-width: 180px;
  list-style: none;
  padding: 0;
  margin: 0;
  top: 100%;
}

.dropdown-content li a {
  display: block;
  padding: 10px;
}

.dropdown:hover .dropdown-content {
  display: block;
}

#gallery {
  column-count: 4;
  column-gap: 16px;

  padding: 20px;
}

.photo-card {
  break-inside: avoid;

  margin-bottom: 16px;

  cursor: pointer;

  border-radius: 12px;

  overflow: hidden;

  position: relative;
}

.photo-card img {
  width: 100%;
  display: block;
}
.photo-info {
  position: absolute;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  width: 100%;
  padding: 10px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.photo-card:hover .photo-info {
  transform: translateY(0);
}

#about {
  padding: 2rem;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background: rgba(0,0,0,0.85);

  display: flex;
  justify-content: center;
  align-items: center;

  z-index: 1000;
}

.hidden {
  display: none;
}

.modal-content {
  width: 90%;
  max-width: 1400px;
  height: 85%;

  background: #1a1a1a;

  border-radius: 12px;

  display: flex;

  overflow: hidden;

  position: relative;
}

.modal-image-container {
  flex: 2;

  background: black;

  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-image-container img {
  max-width: 100%;
  max-height: 100%;

  object-fit: contain;
}

.modal-meta {
  flex: 1;

  padding: 2rem;

  overflow-y: auto;

  background: #202020;
}

.modal-meta h2 {
  margin-top: 0;
}

.close-btn {
  position: absolute;

  top: 15px;
  right: 20px;

  font-size: 2rem;

  cursor: pointer;

  color: white;

  z-index: 1001;
}


.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  font-size: 2.5rem;
  background: rgba(0,0,0,0.4);
  color: white;
  border: none;

  cursor: pointer;
  padding: 10px 15px;
  z-index: 1001;
}

#prev-btn {
  left: 10px;
}

#next-btn {
  right: 10px;
}

.nav-btn:hover {
  background: rgba(0,0,0,0.7);
}
.home-hero {
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

.home-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 1s ease;
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  padding: 20px;
}

.album-card {
  padding: 20px;
  background: #222;
  cursor: pointer;
  border-radius: 8px;
  text-align: center;
}

.album-card:hover {
  background: #333;
}
#featured-image {
  width: 100%;
  height: 70vh;
  object-fit: cover;
  transition: opacity 0.4s ease;
}
