/* Global Styles */
body {
  margin-top: 52px;
  background-color: white;
}

h3,
p {
  font-family: Oswald, Arial;
  color: #000000; /* Black text for better readability */
}

.about-abrl {
  font-family: Oswald, Arial;
  margin: 2rem 0;
}

/* About Title Header */
.about-title {
  background: linear-gradient(135deg, #232526 0%, #414345 100%);
  color: #f8fafc;
  padding: 1rem 10px;
  display: flex;
  justify-content: center;
  font-size: 35px;
  margin: 0;
  text-decoration: underline;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(30,40,90,0.13), 0 1.5px 6px rgba(120,154,233,0.13);
  user-select: none;
}

.about-content {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.about-description {
  flex: 1;
  min-width: 250px;
  font-size: 17px;
  font-weight: 500;
  text-align: center;
  color: #232323;
}

/* ====== LIGHTER NEWS SECTION ====== */
.about-news {
  flex: 1;
  min-width: 250px;
  background: #ffffff; /* Light background */
  color: #232323;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  position: relative;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(30,40,90,0.1), 0 1.5px 6px rgba(120,154,233,0.15);
  padding: 1.5rem 1rem 1rem 1rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.about-news h2 {
  color: white;
  text-decoration: underline;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.news-ticker {
  width: 100%;
  max-width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
  background: #f7f9ff; /* light tone */
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(120,154,233,0.12);
  margin-bottom: 1rem;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  box-sizing: border-box;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: disc inside;
  transition: transform 0.5s;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.news-list li {
  min-height: 30px;
  padding: 0.5rem 0;
  width: 100%;
  color: #333;
  font-size: 1.05rem;
  border-left: 3px solid #3949ab; /* Blue accent line */
  padding-left: 0.7rem;
  background: #f0f4ff; /* Light blue box */
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-break: break-word;
}

.news-list li:hover {
  background: #e0e7ff;
  color: #1a237e;
}

.about-news ul {
  color: #232323;
  font-size: 17px;
  font-weight: 500;
  list-style: disc inside;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
  width: 100%;
  box-sizing: border-box;
}

/* Responsive News Section */
@media (max-width: 800px) {
  .about-content {
    flex-direction: column;
    gap: 10px;
  }
  .about-description, .about-news {
    min-width: 0;
    width: 100%;
    text-align: center;
  }
  .about-news ul {
    align-items: center;
  }
}

/* Group Activity Section Styles */
.home-activities-showcase {
  padding: 48px 0 32px 0;
  margin-top: 32px;
}
.activities-showcase-header {
  text-align: center;
  margin-bottom: 18px;
}
.activities-showcase-header h2 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 45px;
  color: #1a237e;
  text-decoration: underline;
  margin-bottom: 7px;
  letter-spacing: 1px;
}
.activities-showcase-header p {
  font-family: 'Roboto', Arial, sans-serif;
  color: #333;
  font-size: 1.1rem;
  margin-top: 0;
}
.activities-mini-gallery {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 0 auto 18px auto;
  max-width: 800px;
  flex-wrap: wrap;
}
.mini-gallery-img-link {
  display: block;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px #e3e3e3;
  transition: transform 0.18s;
  width: 120px;
  height: 90px;
}
.mini-gallery-img-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.2s;
}
.mini-gallery-img-link:hover img,
.mini-gallery-img-link:focus img {
  filter: brightness(0.7) blur(1px);
}
.mini-gallery-more {
  position: relative;
  width: 100%;
  height: 100%;
}
.mini-gallery-more img {
  filter: brightness(0.7) blur(1px);
}
.mini-gallery-more span {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(26, 35, 126, 0.95); /* Blue overlay */
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 7px 18px;
  border-radius: 20px;
  letter-spacing: 1px;
  box-shadow: 0 2px 8px #b3c6ff;
}
.activities-showcase-cta {
  text-align: center;
  margin-top: 12px;
}
.showcase-btn {
  display: inline-block;
  background: #3949ab;
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: bold;
  padding: 11px 32px;
  border-radius: 24px;
  text-decoration: none;
  box-shadow: 0 2px 8px #b3c6ff;
  transition: background 0.18s;
  letter-spacing: 1px;
}
.showcase-btn:hover, .showcase-btn:focus {
  background: #1a237e;
  color: #fff;
}
@media (max-width: 700px) {
  .activities-mini-gallery {
    gap: 10px;
  }
  .mini-gallery-img-link {
    width: 40vw;
    height: 28vw;
    max-width: 140px;
    max-height: 110px;
  }
}

/* Contact Us Section Styles */
#contact-us-section {
  background: #f5f5f5;
  padding: 40px 10px 30px 10px;
}
#contact-us-section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-family: 'Oswald', Arial, sans-serif;
  color: #1a237e;
  font-size: 45px;
  letter-spacing: 1px;
  text-decoration: underline
}
.contact-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 950px;
  margin: 0 auto;
  gap: 32px;
  justify-content: center;
}
.contact-info, #contact-form, .contact-map {
  background: #fff;
  padding: 24px 18px;
  border-radius: 8px;
  box-shadow: 0 2px 8px #eee;
  min-width: 220px;
  flex: 1 1 260px;
}
.contact-info {
  font-size: 17px;
  color: #333;
}
.contact-info a {
  color: #3949ab;
  text-decoration: underline;
}
#contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#contact-form input,
#contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: inherit;
  font-size: 15px;
  resize: none;
}
#contact-form textarea {
  min-height: 80px;
  resize: vertical;
}
#contact-form button {
  background: #3949ab;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 12px 0;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}
#contact-form button:hover {
  background: #1a237e;
}
.contact-map {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  min-height: 240px;
}
@media (max-width: 1000px) {
  .contact-container {
    flex-direction: column;
    gap: 18px;
  }
  .contact-map iframe {
    width: 100% !important;
    min-width: 0;
  }
}
