/* CONTAINER */
.container {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

/* TYPOGRAPHY */
h1, h2, h3 {
  margin-bottom: 20px;
  color: #602C6D;
}

p, li {
  margin-bottom: 15px;
  font-weight: 500;
  color: #444;
}

/* BUTTON */
.btn {
  text-decoration: none;
  margin-top: 10px;
  font-weight: bold;
}

.btn:hover {
  opacity: 0.85;
}

/* HERO */
.womentech-hero {
  position: relative; /* FIXED overlay issue */
  text-align: center;
  padding: 140px 20px;
  background: url("../img/community.jpeg") center/cover no-repeat;
}

/* Dark overlay */
.womentech-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.womentech-hero-overlay {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(4px);
}

.womentech-hero-content {
  position: relative;
  z-index: 2;
}

.womentech-hero h1 {
  font-size: 2.5rem;
  color: #fff;
}

.womentech-hero h3 {
  color: #fff;
}

.womentech-hero p {
  color: #cfcfcf;
}

.colored {
  color: #D98638;
}

/* ABOUT SECTION */
.event-about {
  display: flex;
  gap: 20px;
  align-items: center;
}

.event-about img {
  width: 100%;
  max-width: 350px;
  border-radius: 16px;
}

/* SCHEDULE */
.schedule {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.schedule-item {
  flex: 1 1 120px;
  border: 1px solid rgba(0,0,0,0.1);
  padding: 15px;
  border-radius: 8px;
  color: #444;
  background: #fff;
}

.schedule-item strong {
  display: block;
  color: #d4a373;
  margin-bottom: 5px;
}

/* GET INVOLVED */
.get-involved {
  padding: 0 20px 60px;
  max-width: 1100px;
  margin: auto;

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

  text-align: center;
}

.get-involved p {
  margin-bottom: 15px;
  font-weight: 500;
  color: #444;
}

/* ========================= */
/* 📱 MOBILE RESPONSIVENESS */
/* ========================= */

@media (max-width: 768px) {

  /* HERO */
  .womentech-hero {
    padding: 100px 20px;
  }

  .womentech-hero h1 {
    font-size: 2rem;
  }

  /* ABOUT STACK */
  .event-about {
    flex-direction: column;
    text-align: center;
  }

  .event-about img {
    max-width: 100%;
    margin: 0;
  }

  /* SCHEDULE STACK */
  .schedule {
    flex-direction: column;
  }

  .schedule-item {
  padding: px;
}

  /* TEXT */
  h1, h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.2rem;
  }

}

/* EXTRA SMALL DEVICES */
@media (max-width: 480px) {

  .container {
    padding: 40px 15px;
  }

  .womentech-hero {
    padding: 80px 15px;
  }

  .womentech-hero h1 {
    font-size: 1.7rem;
  }

  .cta-btn-white{
    margin-top: 16px;
  }
  
}

footer p {
    color: #fff;
}