* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #121212;
  color: #6cc2e4;
  font-family: Arial, sans-serif;
}

/* Main Content Layout */
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: calc(100vh - 80px); /* 80px accounts for footer height */
  padding: 20px;
}

/* Mobile - Inline Links */
.nav-links {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.nav-links a {
  color: #6cc2e4;
  text-decoration: none;
  font-weight: bold;
}

.nav-links a:hover {
  text-decoration: underline;
}

/* Desktop - Stack Links Vertically */
@media (min-width: 768px) {
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
}


/* About Section */
.about-section {
  max-width: 400px;
  text-align: center;
}

/* Footer */
.site-footer {
  width: 100%;
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #333;
  background-color: #1a1a1a;
}

.site-footer a {
  color: #6cc2e4;
  text-decoration: none;
  margin: 0 5px;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* ---------- Desktop Layout ---------- */
@media (min-width: 768px) {
  .content-wrapper {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }

  .nav-links {
    align-items: flex-start;
  }

  .about-section {
    text-align: left;
  }
}



/*------Gallery Grid------*/
.gallery-wrapper {
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #6cc2e4;
  padding: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  max-width: 900px;
  margin: 20px auto;
}

.gallery-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 2px solid #6cc2e4;
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery-thumb:hover {
  transform: scale(1.05);
}

.hidden {
  display: none;
}

.load-more-btn {
  background-color: transparent;
  border: none;
  color: #6cc2e4;
  font-size: 2em;
  cursor: pointer;
  margin-top: 20px;
}

.load-more-btn:hover {
  color: #4ea8c4;
}
