/* ===== Base Theme Tweaks ===== */
body {
  background-color: #1f1f1f;
  color: #e5e5e5;
  font-family: 'Inter', sans-serif;
  margin: 0;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.landing-page {
  background-color: #1f1f1f;
  color: #e5e5e5;
}

/* ===== Hero Section ===== */
.hero {
  text-align: center;
  padding: 60px 20px;
  background-color: #2a2a2a;
  border-bottom: 2px solid #3c3c3c;
  color: #f4f4f4;
}

.logo {
  height: 200px;
  width: auto;
  max-width: 100%;
  margin-bottom: 20px;
  transition: height 0.3s ease;
}

@media (max-width: 600px) {
  .logo {
    height: 100px;
  }
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: 1px;
}

.tagline {
  font-size: 1.3rem;
  color: #d1d1d1;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1rem;
  margin-bottom: 30px;
  color: #aaa;
}

.announcement {
  font-size: 1.1rem;
  margin-top: 20px;
  color: #ffcccb;
}

.follow {
  font-size: 1rem;
  color: #ccc;
  margin-top: 10px;
}

.social-link {
  color: #3aaf4a;
  font-weight: bold;
  text-decoration: none;
}

.social-link:hover {
  text-decoration: underline;
  color: #33943f;
}

/* ===== Feature Section ===== */
.feature-section {
  padding: 50px 20px;
  background-color: #262626;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

.feature-section h2 {
  font-size: 1.6rem;
  color: #f0f0f0;
  margin-bottom: 12px;
  font-weight: 600;
}

.feature-section p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 10px;
  line-height: 1.6;
}

/* ===== Thumbnail Grid ===== */
.images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.images img {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  border: 1px solid #444;
  background-color: #111;
}

.images img:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  border-color: #666;
}

/* ===== Lightbox Viewer ===== */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.lightbox-image {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
}

/* ===== Footer ===== */
.footer {
  text-align: center;
  padding: 40px 20px;
  font-size: 0.9rem;
  color: #888;
  background-color: #1c1c1c;
  border-top: 1px solid #333;
}
