* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  color: #ffffff;
  scroll-behavior: smooth;
  font-family: 'Montserrat', sans-serif;
}

.navbar {
  position: sticky;
  top: 0;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0rem;
  border-bottom: 1px solid #ff4655;
}

.logo {
  position: absolute;
  left: 2rem;
}

.logo img {
  height: 32px;
}

@media (max-width: 800px) {
  .logo {
    display: none;
  }
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-links a {
  color: #ff4655;
  text-decoration: none;
  margin: 0 1rem;
  font-weight: 600;
  font-family: 'Orbitron', sans-serif;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #B69C5F;
}


.section {
  padding: 5rem 2rem;
  border-bottom: 1px solid #ff0000;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  color: #ff4655;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}


.vct-logo img {
  width: 100px;
  margin-bottom: 2rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  width: 90%;
  margin: 2rem auto;
}

.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

.about-text {
  max-width: 700px;
  line-height: 1.7;
  font-size: 1rem;
  margin: 1rem auto;
}

.about-text a {
  color: #ff4655;
  text-decoration: none;
}

.about-text a:hover {
  text-decoration: underline;
}


.section-info {
  max-width: 650px;
  font-size: 1rem;
  line-height: 1.6;
}

.section-info a {
  color: #ff4655;
  text-decoration: none;
}

.section-info a:hover {
  text-decoration: underline;
}


.learn-more {
  display: inline-block;
  margin-top: 2rem;
  color: #ffffff;
  background-color: #ff4655;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-family: 'Orbitron', sans-serif;
  transition: 0.3s;
}

.learn-more:hover {
  background-color: #B69C5F;
  transform: translateY(-3px);
}


.footer {
  background-color: #111;
  text-align: center;
  padding: 2rem 1rem;
  border-top: 1px solid #222;
  font-size: 0.9rem;
  color: #aaaaaa;
}

.footer a {
  color: #ff4655;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}
