/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  padding-top: 44px;
  background: #000;
  color: #C3CCD6;
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0.04em;
  line-height: 1.7;
}

a {
  color: #8FA0B1;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #5FD4F0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== Navigation ===== */
.menu-bar {
  width: 100%;
  background: #000;
  padding: 0;
  margin: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-bar ul {
  list-style: none;
  margin: 0;
  padding: 0 16px;
  display: flex;
  gap: 32px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

.menu-bar li {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 44px;
  cursor: pointer;
  user-select: none;
}

.menu-bar a {
  color: #C3CCD6;
}

.menu-bar a:hover {
  color: #5FD4F0;
}

/* ===== Footer ===== */
.footer-bar {
  position: static;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 60px;
}

/* ===== Banners ===== */
.banner {
  width: 100%;
  background: #000;
}

.banner-secondary {
  width: 100%;
  background: #000;
  margin-top: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-secondary img {
  max-width: 900px;
}

@media (min-width: 769px) {
  .banner img {
    max-width: 70vw;
    margin: 0 auto;
  }
  .banner-secondary img {
    max-width: 60vw;
  }
}

/* ===== Content Sections ===== */
.intro-text {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 18px;
  text-align: center;
}

.intro-text p {
  margin: 18px 0;
}

.about-intro {
  max-width: 700px;
  margin: 40px auto 0;
  padding: 0 18px 24px;
  text-align: left;
}

.content {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 24px 24px;
  text-align: center;
}

/* ===== Gallery ===== */
.gallery-grid {
  max-width: 960px;
  margin: 40px auto 0;
  padding: 0 18px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
  filter: brightness(1.1);
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #C3CCD6;
  font-size: 2rem;
  cursor: pointer;
  font-family: 'Orbitron', Arial, sans-serif;
}

/* ===== Blog ===== */
.blog-list {
  max-width: 700px;
  margin: 40px auto 0;
  padding: 0 18px;
  text-align: left;
}

.blog-post {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-post:last-child {
  border-bottom: none;
}

.blog-post h2 {
  font-size: 1.2rem;
  color: #C3CCD6;
  margin: 0 0 8px;
  letter-spacing: 0.06em;
}

.blog-date {
  font-size: 0.72rem;
  color: #5a6a78;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.blog-post p {
  margin: 14px 0;
  color: #9aabb8;
  font-size: 0.95rem;
  line-height: 1.85;
}

/* ===== Connect ===== */
.connect-intro {
  max-width: 520px;
  margin: 0 auto;
  padding: 40px 18px 0;
  text-align: center;
  color: #9aabb8;
  font-size: 0.95rem;
}

.connect-form {
  max-width: 520px;
  margin: 0 auto;
  padding: 0 18px;
  text-align: left;
}

.connect-form label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8FA0B1;
  margin: 28px 0 8px;
}

.connect-form input,
.connect-form textarea {
  width: 100%;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #C3CCD6;
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 0.88rem;
  padding: 12px 14px;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s;
}

.connect-form input:focus,
.connect-form textarea:focus {
  border-color: #5FD4F0;
}

.connect-form textarea {
  resize: vertical;
  min-height: 150px;
}

.connect-form button {
  margin-top: 28px;
  padding: 12px 40px;
  background: transparent;
  border: 1px solid #C3CCD6;
  color: #C3CCD6;
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
  transition: border-color 0.2s, color 0.2s;
}

.connect-form button:hover {
  border-color: #5FD4F0;
  color: #5FD4F0;
}

/* ===== Mobile ===== */
@media (max-width: 600px) {
  .menu-bar li {
    font-size: 0.8rem;
  }

  .menu-bar ul {
    gap: 18px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
