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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f7f8fa;
  color: #172033;
  transition: 0.3s;
}

/*  NAVBAR  */

.navbar {
  width: 100%;
  padding: 20px 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo,
.footer-logo {
  font-size: 25px;
  font-weight: 800;
  text-decoration: none;
  color: inherit;
}

.logo span,
.footer-logo span,
.hero h1 span,
.about span {
  color: #f47b20;
}

.nav-links {
  display: flex;
  gap: 35px;
}

.nav-links a {
  text-decoration: none;
  color: #172033;
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
  color: #f47b20;
}

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.dark-btn {
  border: none;
  background: #f2f3f5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
}

.login-btn {
  border: none;
  background: linear-gradient(135deg, #f47b20, #e8621a);
  color: white;
  padding: 11px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 14px rgba(244, 123, 32, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 123, 32, 0.55);
}

.login-btn:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(244, 123, 32, 0.35);
}

.menu-btn {
  display: none;
  border: none;
  background: none;
  font-size: 25px;
  cursor: pointer;
}

/*  HERO  */

.hero {
  min-height: 650px;
  padding: 80px 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  background: #fff;
}

.hero-content {
  max-width: 600px;
}

.hero-small,
.section-small {
  color: #f47b20;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.hero h1 {
  font-size: clamp(40px, 5vw, 70px);
  line-height: 1.05;
  margin-bottom: 25px;
}

.hero-text {
  color: #697386;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.hero-btn {
  display: inline-block;
  text-decoration: none;
  background: #f47b20;
  color: white;
  padding: 15px 25px;
  border-radius: 8px;
  font-weight: bold;
}

.hero-image {
  width: 48%;
}

.hero-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 20px;
}

/*  EVENTS  */

.events-section {
  padding: 90px 7%;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 35px;
}

.section-heading h2,
.about h2,
.contact h2 {
  font-size: 40px;
}

.section-heading > p {
  color: #697386;
}

/* SEARCH */

.event-controls {
  display: flex;
  gap: 15px;
  margin-bottom: 35px;
}

.event-controls input,
.event-controls select {
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: white;
  outline: none;
}

.event-controls input {
  flex: 1;
}

.event-controls select {
  width: 200px;
}

/* EVENT GRID */

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.event-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.event-card:hover {
  transform: translateY(-6px);
}

.event-image {
  height: 210px;
  position: relative;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.favorite {
  position: absolute;
  top: 15px;
  right: 15px;
  border: none;
  background: white;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
}

.favorite.active {
  color: red;
}

.event-body {
  padding: 20px;
}

.category {
  display: inline-block;
  background: #fff0e6;
  color: #f47b20;
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 12px;
}

.event-body h3 {
  margin-bottom: 15px;
  font-size: 21px;
}

.event-details {
  color: #697386;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.event-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.view-btn,
.register-btn {
  border: none;
  padding: 11px 15px;
  border-radius: 7px;
  cursor: pointer;
  font-weight: bold;
}

.view-btn {
  background: #f2f3f5;
  color: #172033;
}

.register-btn {
  background: #f47b20;
  color: white;
}

.register-btn:disabled {
  background: #aaa;
  cursor: not-allowed;
}

.no-events {
  grid-column: 1 / -1;
  text-align: center;
  padding: 50px;
  color: #697386;
}

/*  ABOUT SECTION  */

.about-section {
  padding: 100px 7%;
  background: #172033;
  color: white;
}

.about-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 20px;
}

.about-content h2 {
  font-size: 48px;
  line-height: 1.15;
  margin-bottom: 25px;
}

.about-content h2 span {
  color: #f47b20;
}

.about-content > p {
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 18px;
  font-size: 16px;
}

.about-content .about-intro {
  color: white;
  font-size: 19px;
  font-weight: 500;
}

/* ABOUT FEATURES */

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 35px;
}

.feature {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: 0.3s;
}

.feature:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
}

.feature-icon {
  min-width: 45px;
  height: 45px;
  background: #f47b20;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
}

.feature h3 {
  margin-bottom: 7px;
}

.feature p {
  color: #aeb7c5;
  font-size: 13px;
  line-height: 1.5;
}

/* ABOUT STATS */

.about-stats {
  margin-top: 80px;
  padding-top: 45px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.stat h3 {
  font-size: 38px;
  color: #f47b20;
  margin-bottom: 8px;
}

.stat p {
  color: #aeb7c5;
}

/*  CONTACT SECTION  */

.contact-section {
  padding: 100px 7%;
  background: #f7f8fa;
}

.contact-heading {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
}

.contact-heading h2 {
  font-size: 48px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.contact-heading h2 span {
  color: #f47b20;
}

.contact-heading > p:last-child {
  color: #697386;
  line-height: 1.7;
}

/* CONTACT CONTAINER */

.contact-container {
  max-width: 1100px;
  margin: auto;

  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
}

/* CONTACT INFO */

.contact-info {
  background: #172033;
  color: white;
  padding: 40px;
  border-radius: 15px;
}

.contact-info h3,
.contact-form-container h3 {
  font-size: 25px;
  margin-bottom: 12px;
}

.contact-description {
  color: #b8c0cc;
  line-height: 1.7;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-icon {
  width: 45px;
  height: 45px;
  background: #f47b20;
  border-radius: 10px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
}

.contact-item h4 {
  margin-bottom: 5px;
}

.contact-item p {
  color: #b8c0cc;
  font-size: 14px;
}

/* SOCIALS */

.contact-socials {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  margin-top: 30px;

  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.contact-socials a {
  color: white;
  text-decoration: none;
  font-size: 13px;

  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;

  transition: 0.3s;
}

.contact-socials a:hover {
  background: #f47b20;
  border-color: #f47b20;
}

/* CONTACT FORM */

.contact-form-container {
  background: white;
  padding: 40px;
  border-radius: 15px;

  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
}

.contact-form-container > p {
  color: #697386;
  margin-bottom: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;

  border: 1px solid #ddd;
  border-radius: 8px;

  outline: none;
  font-family: inherit;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #f47b20;
}

.contact-submit {
  width: 100%;
  border: none;
  padding: 15px;

  background: #f47b20;
  color: white;

  border-radius: 8px;
  font-weight: bold;
  font-size: 15px;

  cursor: pointer;
  transition: 0.3s;
}

.contact-submit:hover {
  transform: translateY(-2px);
}

/*  DARK MODE  */

body.dark .contact-section {
  background: #0f172a;
}

body.dark .contact-form-container {
  background: #1e293b;
  color: white;
}

body.dark .contact-form-container > p,
body.dark .contact-heading > p:last-child {
  color: #cbd5e1;
}

body.dark .form-group input,
body.dark .form-group textarea {
  background: #0f172a;
  color: white;
  border-color: #334155;
}

/*  RESPONSIVE  */

@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-image img {
    height: 400px;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .about-section,
  .contact-section {
    padding: 70px 5%;
  }

  .about-content h2,
  .contact-heading h2 {
    font-size: 36px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  .stat h3 {
    font-size: 30px;
  }

  .contact-info,
  .contact-form-container {
    padding: 25px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* MISSION & VISION */

.mission-section {
  padding: 90px 7%;
  background: #f7f8fa;
}

.mission-heading {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 55px;
}

.mission-heading h2 {
  font-size: 42px;
  margin-bottom: 12px;
}

.mission-heading h2 span {
  color: #f47b20;
}

.mission-heading > p {
  color: #697386;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

.mission-card {
  background: white;
  border-radius: 16px;
  padding: 35px 30px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.06);
  transition: transform 0.3s;
}

.mission-card:hover {
  transform: translateY(-6px);
}

.mission-icon {
  font-size: 36px;
  margin-bottom: 18px;
}

.mission-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.mission-card p {
  color: #697386;
  line-height: 1.7;
  font-size: 15px;
}

/* HOW IT WORKS */

.how-section {
  padding: 90px 7%;
  background: #172033;
  color: white;
}

.how-section .mission-heading h2 span {
  color: #f47b20;
}

.how-section .mission-heading > p {
  color: #94a3b8;
}

.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 1000px;
  margin: auto;
  flex-wrap: wrap;
}

.step {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 35px 30px;
  flex: 1;
  min-width: 220px;
  transition: 0.3s;
}

.step:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-4px);
}

.step-number {
  font-size: 42px;
  font-weight: 800;
  color: #f47b20;
  margin-bottom: 15px;
  line-height: 1;
}

.step h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.step p {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.7;
}

.step-divider {
  font-size: 28px;
  color: #f47b20;
  font-weight: bold;
  flex-shrink: 0;
}

/* TEAM */

.team-section {
  padding: 90px 7%;
  background: #f7f8fa;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

.team-card {
  background: white;
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0,0,0,0.06);
  transition: transform 0.3s;
}

.team-card:hover {
  transform: translateY(-6px);
}

.team-avatar {
  font-size: 52px;
  margin-bottom: 15px;
}

.team-card h3 {
  font-size: 17px;
  margin-bottom: 5px;
}

.team-role {
  color: #f47b20;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.team-bio {
  color: #697386;
  font-size: 13px;
  line-height: 1.6;
}

/* ABOUT CTA */

.about-cta {
  padding: 90px 7%;
  background: linear-gradient(135deg, #f47b20, #e8621a);
  text-align: center;
  color: white;
}

.about-cta h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.about-cta h2 span {
  color: #172033;
}

.about-cta > p {
  font-size: 17px;
  margin-bottom: 35px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.about-cta .hero-btn {
  background: white;
  color: #f47b20;
}

.cta-outline {
  display: inline-block;
  text-decoration: none;
  border: 2px solid white;
  color: white;
  padding: 15px 25px;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.2s;
}

.cta-outline:hover {
  background: white;
  color: #f47b20;
}

/* DARK MODE — new about sections */

body.dark .mission-section,
body.dark .team-section {
  background: #0f172a;
}

body.dark .mission-card,
body.dark .team-card {
  background: #1e293b;
  color: white;
}

body.dark .mission-card p,
body.dark .team-bio {
  color: #94a3b8;
}

/* RESPONSIVE — new about sections */

@media (max-width: 900px) {
  .mission-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .step-divider {
    display: none;
  }

  .steps {
    flex-direction: column;
  }

  .step {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .mission-heading h2,
  .about-cta h2 {
    font-size: 32px;
  }
}

/* SCROLL TO TOP */

.scroll-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #f47b20, #e8621a);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(244, 123, 32, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  z-index: 999;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(244, 123, 32, 0.6);
}

/* ANIMATIONS */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}

.animate {
  opacity: 0;
}

.animate.in-view {
  animation-fill-mode: both;
  animation-duration: 0.7s;
  animation-timing-function: ease;
}

.fade-up.in-view    { animation-name: fadeInUp; }
.fade-left.in-view  { animation-name: fadeInLeft; }
.fade-right.in-view { animation-name: fadeInRight; }
.fade-in.in-view    { animation-name: fadeIn; }
.scale-in.in-view   { animation-name: scaleIn; }

.delay-1.in-view { animation-delay: 0.1s; }
.delay-2.in-view { animation-delay: 0.2s; }
.delay-3.in-view { animation-delay: 0.3s; }
.delay-4.in-view { animation-delay: 0.4s; }

/*  FOOTER  */

footer {
  padding: 50px 7%;
  background: #111827;
  color: white;
  text-align: center;
}

footer > p {
  color: #9ca3af;
  margin: 15px 0;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin: 25px 0;
}

.socials a {
  color: white;
  text-decoration: none;
}

.copyright {
  border-top: 1px solid #374151;
  padding-top: 25px;
}

/*  MODALS  */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}

.modal-overlay.show {
  display: flex;
}

.modal {
  background: white;
  max-width: 600px;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal > img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.modal-content {
  padding: 30px;
}

.modal-content h2 {
  font-size: 30px;
  margin-bottom: 15px;
}

.modal-content > p {
  color: #697386;
  line-height: 1.7;
  margin-bottom: 20px;
}

.modal-info {
  line-height: 2;
  margin-bottom: 20px;
}

.close-btn {
  position: absolute;
  right: 15px;
  top: 15px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: white;
  font-size: 25px;
  cursor: pointer;
  z-index: 5;
}

/* LOGIN MODAL */

.login-box {
  background: white;
  width: 100%;
  max-width: 440px;
  padding: 40px;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.login-header {
  text-align: center;
  margin-bottom: 30px;
}

.login-logo {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
}

.login-logo span {
  color: #f47b20;
}

.login-header h2 {
  font-size: 26px;
  margin-bottom: 6px;
}

.login-header p {
  color: #697386;
  font-size: 14px;
}

.password-wrapper {
  position: relative;
}

.password-wrapper input {
  width: 100%;
  padding-right: 48px;
}

.toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  padding: 0;
  margin: 0;
  line-height: 1;
}

.login-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: -4px 0 20px;
  font-size: 13px;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-weight: normal;
}

.remember-me input {
  width: auto;
  margin: 0;
  padding: 0;
  accent-color: #f47b20;
}

.forgot-link {
  color: #f47b20;
  text-decoration: none;
  font-weight: 500;
}

.forgot-link:hover {
  text-decoration: underline;
}

.login-submit {
  width: 100%;
  font-size: 15px;
  background: linear-gradient(135deg, #f47b20, #e8621a);
  box-shadow: 0 4px 14px rgba(244, 123, 32, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.login-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 123, 32, 0.55);
}

.login-footer {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: #697386;
}

.login-footer a {
  color: #f47b20;
  font-weight: 600;
  text-decoration: none;
}

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

body.dark .login-box {
  background: #1e293b;
  color: white;
}

body.dark .login-header p,
body.dark .login-footer {
  color: #94a3b8;
}

body.dark .login-box form input {
  background: #0f172a;
  color: white;
  border-color: #334155;
}

/* REGISTRATION */

.registration-box {
  background: white;
  width: 100%;
  max-width: 500px;
  padding: 35px;
  border-radius: 15px;
  position: relative;
}

.registration-box h2 {
  margin-bottom: 8px;
}

.form-subtitle {
  color: #697386;
  margin-bottom: 25px;
}

form {
  display: flex;
  flex-direction: column;
}

form label {
  margin-bottom: 7px;
  font-weight: bold;
  font-size: 14px;
}

form input {
  padding: 13px;
  border: 1px solid #ddd;
  border-radius: 7px;
  margin-bottom: 18px;
  outline: none;
}

.submit-btn {
  border: none;
  padding: 14px;
  border-radius: 8px;
  background: #f47b20;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

/* TOAST */

.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #172033;
  color: white;
  padding: 15px 22px;
  border-radius: 8px;
  transform: translateY(100px);
  opacity: 0;
  transition: 0.3s;
  z-index: 5000;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/*  DARK MODE  */

body.dark {
  background: #0f172a;
  color: white;
}

body.dark .navbar,
body.dark .hero,
body.dark .event-card,
body.dark .modal,
body.dark .registration-box,
body.dark .event-controls input,
body.dark .event-controls select {
  background: #1e293b;
  color: white;
}

body.dark .nav-links a {
  color: white;
}

body.dark .hero-text,
body.dark .section-heading > p,
body.dark .event-details,
body.dark .contact p {
  color: #cbd5e1;
}

body.dark .view-btn,
body.dark .dark-btn {
  background: #334155;
  color: white;
}

body.dark .about {
  background: #020617;
}

/*  MOBILE  */

@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    background: white;
    padding: 25px;
    flex-direction: column;
    text-align: center;
  }

  body.dark .nav-links {
    background: #1e293b;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-btn {
    display: block;
  }

  .nav-actions {
    margin-left: auto;
    margin-right: 15px;
  }

  .hero {
    flex-direction: column;
    padding-top: 60px;
  }

  .hero-image {
    width: 100%;
  }

  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 600px) {
  .navbar {
    padding: 18px 5%;
  }

  .login-btn {
    display: none;
  }

  .hero,
  .events-section,
  .about,
  .contact {
    padding-left: 5%;
    padding-right: 5%;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-image img {
    height: 300px;
  }

  .section-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .section-heading h2,
  .about h2,
  .contact h2 {
    font-size: 32px;
  }

  .event-controls {
    flex-direction: column;
  }

  .event-controls select {
    width: 100%;
  }

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

  .socials {
    flex-direction: column;
    gap: 15px;
  }
}
