@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600&display=swap');

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

body {
  font-family: 'Orbitron', sans-serif;
  background: #000; 
  color: #cce7ff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}


a {
  text-decoration: none;
  color: #0ff;
  transition: text-shadow 0.3s ease, color 0.3s ease;
}

a:hover,
a:focus {
  color: #fff;
  text-shadow: 0 0 8px #0ff, 0 0 16px #00f7ff;
  outline: none;
}

header {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid #0ff;
  box-shadow: 0 0 15px #00f7ff;
}

.navbar {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 600;
  font-size: 2rem;
  color: #0ff;
  text-shadow: 0 0 12px #0ff, 0 0 24px #00f7ff;
}

.logo span {
  color: #0077ff;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.8rem;
}

.nav-link {
  font-weight: 600;
  font-size: 1rem;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  color: #cce7ff;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link:focus {
  background-color: rgba(0, 255, 255, 0.15);
  color: #0ff;
  box-shadow: 0 0 10px #0ff, 0 0 20px #0077ff;
  outline: none;
}

html {
  scroll-behavior: smooth;
}


main {
  flex-grow: 1;
  max-width: 1100px;
  margin: 3rem auto 5rem;
  padding: 0 1rem;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  color: #0ff;
  text-shadow: 0 0 10px #0ff, 0 0 25px #0077ff;
}

.about-section {
  background: #050505;
  border: 2px solid #0ff;
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.3);
  animation: fadeInUp 1s ease forwards;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.profile-pic {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #0ff;
  box-shadow: 0 0 20px #0ff, 0 0 35px #0077ff;
  flex-shrink: 0;
}

.about-section h2 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  color: #fff;
  text-shadow: 0 0 8px #0077ff;
}

.highlight {
  color: #0ff;
  text-shadow: 0 0 6px #0ff;
}

.about-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 600px;
  color: #a8d8ff;
  margin-bottom: 1.8rem;
}

.btn-primary {
  background: linear-gradient(90deg, #0ff, #0077ff);
  color: #000;
  padding: 0.9rem 2.5rem;
  border: none;
  border-radius: 35px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 0 12px #0ff, 0 0 25px #0077ff;
  transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus {
  transform: translateY(-4px) scale(1.05);
  background: linear-gradient(90deg, #00f7ff, #0ff);
  box-shadow: 0 0 20px #0ff, 0 0 40px #0077ff;
  outline: none;
}

.activities-section {
  margin-top: 4rem;
}

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

.activity-card {
  background: #0a0a0a;
  border: 2px solid #0077ff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 119, 255, 0.4);
  transition: all 0.35s ease;
  cursor: pointer;
}

.activity-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 0 25px #0ff, 0 0 50px #0077ff;
}

.activity-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 2px solid #0ff;
}

.activity-info {
  padding: 1.2rem 1.8rem 2rem;
  color: #cce7ff;
}

.activity-info h3 {
  margin-bottom: 0.6rem;
  font-weight: 700;
  font-size: 1.4rem;
  color: #0ff;
  text-shadow: 0 0 10px #0077ff;
}

.activity-info p {
  font-size: 1.05rem;
  line-height: 1.5;
  color: #a8d8ff;
}


.contact-section {
  background: #111122;
  border-radius: 15px;
  padding: 2.5rem; /* more padding inside the box */
  box-shadow: 0 0 25px rgba(0, 200, 255, 0.2);
  max-width: 600px;
  margin: 4rem auto 0; /* more top margin */
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem; /* consistent spacing between fields */
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem; /* spacing between label and input */
}

label {
  font-weight: 600;
  color: #0ff;
}

input,
textarea {
  padding: 0.9rem 1.2rem; /* more breathing space */
  border-radius: 10px;
  border: none;
  font-size: 1rem;
  background: #1a1a2a;
  color: #fff;
  transition: box-shadow 0.3s ease;
}

input:focus,
textarea:focus {
  outline: none;
  box-shadow: 0 0 8px #0ff, 0 0 15px #3f00ff;
}

textarea {
  min-height: 120px; /* ensures it's not too short */
  resize: vertical;
}

.btn-submit {
  align-self: flex-start;
  width: 160px;
  padding: 0.85rem 0;
  border-radius: 30px;
  background: linear-gradient(90deg, #0ff, #3f00ff);
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 15px #0ff, 0 0 25px #3f00ff;
  border: none;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px #0ff, 0 0 35px #3f00ff;
}



footer {
  text-align: center;
  padding: 1.8rem 1rem;
  background: #000;
  color: #0077ff;
  font-size: 0.95rem;
  border-top: 2px solid #0ff;
  box-shadow: 0 0 15px #0ff;
}


.modal {
  display: none;
  position: fixed;
  z-index: 200;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 5, 10, 0.95);
  backdrop-filter: blur(8px);
  overflow-y: auto; 
}

.modal-content {
  background-color: #050505;
  margin: 5% auto;
  padding: 25px;
  border-radius: 16px;
  max-width: 600px;
  width: 90%;
  color: #0ff;
  text-align: center;
  position: relative;
  border: 2px solid #0ff;
  box-shadow: 0 0 25px #0ff, 0 0 40px #0077ff;
  max-height: 90vh; 
  overflow-y: auto;
}


.modal-content img {
  max-width: 100%;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 0 15px #0ff;
}

.close-btn {
  position: absolute;
  top: 14px;
  right: 22px;
  color: #0ff;
  font-size: 30px;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.3s ease;
  background: none;
  border: none;
}

.close-btn:hover {
  color: #fff;
  text-shadow: 0 0 12px #0ff;
}


@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    text-align: center;
  }

  .about-content {
    flex-direction: column;
  }

  .profile-pic {
    margin-bottom: 1.5rem;
  }

  .nav-links {
    gap: 1rem;
  }
}
