/* ===========================================
   GET INVOLVED PAGE STYLING
   =========================================== */

/* #region : Hero Section */
.getinvolved-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('/images/hero-bg-1614x500.jpg') center/cover no-repeat;
    color: #fff;
    padding: 120px 20px;
    text-align: center;
}

.getinvolved-hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.getinvolved-hero-content p {
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto;
}
/* #endregion */

/* #region : Involvement Options */
.involve-options {
    padding: 60px 20px;
    text-align: center;
}

.options-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.option-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    width: 300px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.option-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.option-card h3 {
    margin: 15px 0 10px;
    color: #4b0082;
    font-size: 20px;
}

.option-card p {
    font-size: 15px;
    color: #555;
    padding: 0 15px 15px;
}
/* #endregion */

/* #region : Sponsor Project */
.sponsor-project {
    padding: 60px 20px;
}

.sponsor-project p {
    max-width: 700px;
    margin: 10px auto 40px;
}

.project-highlight {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.project-highlight img {
    width: 100%;
    max-width: 400px;
    object-fit: cover;
    flex: 1 1 400px;
    border-radius: 18px;
}

.project-details {
    flex: 1 1 300px;
    padding: 20px;
}

.project-details h3 {
    color: #4b0082;
    margin-bottom: 10px;
}

.project-details p {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
}

.project-details .cta-btn {
    background: #f04e30;
    color: #fff;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 30px;
    transition: background 0.3s, transform 0.2s;
    display: inline-block;
}

.project-details .cta-btn:hover {
    background: #d74228;
    transform: translateY(-3px);
}
/* #endregion */

/* #region : Interest Form */
.interest-form-section {
    background: #f7f7f7;
    padding: 60px 20px;
    text-align: center;
}

.interest-form {
    max-width: 500px;
    margin: 30px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.interest-form input,
.interest-form select,
.interest-form textarea {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 15px;
    width: 100%;
}

.interest-form button {
    background: #4b0082;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.interest-form button:hover {
    background: #350066;
    transform: translateY(-2px);
}
/* #endregion */

/* #region : Responsive */
@media (max-width: 768px) {
    .options-grid {
        flex-direction: column;
        align-items: center;
    }

    .project-highlight {
        flex-direction: column;
    }
}
/* #endregion */

/* ===========================================
   UPCOMING PROJECTS (Alternating Layouts)
   =========================================== */
.upcoming-projects {
  padding: 60px 20px;
}

.upcoming-projects h2 {
  margin-bottom: 40px;
}

.project-highlight {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  margin-bottom: 40px;
  padding: 15px;
}

.project-highlight img {
  width: 100%;
  max-width: 400px;
  object-fit: cover;
  flex: 1 1 400px;
  border-radius: 12px;
}

.project-details {
  flex: 1 1 300px;
  padding: 20px;
}

.project-details h3 {
  color: #4b0082;
  margin-bottom: 10px;
}

.project-details p {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
}

.project-details .cta-btn {
  background: #f04e30;
  color: #fff;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 30px;
  transition: background 0.3s, transform 0.2s;
  display: inline-block;
}

.project-details .cta-btn:hover {
  background: #d74228;
  transform: translateY(-3px);
}

/* Alternate layout */
.project-highlight.alt {
  flex-direction: row-reverse;
}

/* ===========================================
   IMPACT STORIES
   =========================================== */
.impact-stories {
  padding: 60px 20px;
  text-align: center;
  background: #fafafa;
}

.impact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.impact-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px;
  width: 280px;
  text-align: center;
}

.impact-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.impact-card p {
  font-size: 14px;
  color: #444;
  font-style: italic;
}

/* ===========================================
   SUGGEST A PROJECT
   =========================================== */
.suggest-project-section {
  padding: 60px 20px;
  background: #f7f7f7;
}

.suggest-card {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.suggest-card h2 {
  color: #4b0082;
  margin-bottom: 10px;
}

.suggest-card p {
  margin-bottom: 20px;
  color: #555;
}

.suggest-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.suggest-form input,
.suggest-form textarea {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
}

.suggest-form button {
  background: #4b0082;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.suggest-form button:hover {
  background: #350066;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .project-highlight,
  .project-highlight.alt {
    flex-direction: column;
  }

  .impact-grid {
    flex-direction: column;
    align-items: center;
  }
}

/* Thank You Card */
.thank-you-card {
  text-align: center;
  padding: 20px;
  background: #f7f7f7;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.thank-you-card h3 {
  color: #4b0082;
  margin-bottom: 10px;
}

.thank-you-card button {
  margin-top: 15px;
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  background: #4b0082;
  color: #fff;
  cursor: pointer;
}

.thank-you-card button:hover {
  background: #350066;
}

/* ===========================================
   SUCCESS ANIMATION
   =========================================== */
.success-animation {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(2px);
}

.success-animation.show {
  display: flex;
  animation: fadeIn 0.3s ease-out;
}

.success-animation img {
  width: 90px;
  height: 90px;
  margin-bottom: 12px;
}

.success-animation p {
  margin: 0;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

