/* Hero Section Styling */
.project-hero {
  background: linear-gradient(to right, #2a3b5f, #1e2a44);
  color: white;
  padding: 100px 20px 60px;
  text-align: center;
  position: relative;
  z-index: 1;
  margin-top: 60px; /* pushes content below fixed nav */
}

.project-hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: bold;
}

.project-hero .breadcrumb {
  font-size: 16px;
  color: #ddd;
}

.project-hero .cta-subtext {
  font-size: 18px;
  color: #f0f0f0;
  margin-top: 15px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* General Section Styling */
.section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.section h2 {
  font-size: 28px;
  color: #2a3b5f;
  margin-bottom: 20px;
}

.section p {
  font-size: 18px;
  color: #333;
  line-height: 1.6;
}

.countdown-section {
  text-align: center;
  padding: 40px 20px;
  background-color: #f7f7f7;
}

.countdown-section h2 {
  font-size: 28px;
  color: #2a3b5f;
  margin-bottom: 20px;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 25px;
  font-size: 24px;
  font-weight: bold;
  color: #2a3b5f;
}

.countdown-timer span {
  display: block;
  font-size: 32px;
}

.countdown-timer small {
  display: block;
  font-size: 14px;
  color: #666;
  margin-top: 5px;
}

.fb-video-section {
  text-align: center;
  padding: 40px 20px;
}

.fb-video-fixed {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

.fb-video-fixed iframe {
  width: 100%;
  height: 555px;
  border: none;
}

/* Image Grid Styling */
.image-gallery .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.grid-item {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.grid-item:hover {
  transform: translateY(-5px);
}

.grid-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 250px;
}

.grid-item p {
  padding: 15px;
  font-size: 16px;
  color: #555;
}

.map-section {
  padding: 60px 20px;
  background-color: #f7f9fc;
  text-align: center;
}

.map-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #2a3b5f;
}

.map-wrapper {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
}

/* Reflection Section Tweaks */
.reflection {
  background-color: #f4f4f4;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.interest-form {
  background-color: #f9f9f9;
  padding: 40px 20px;
  border-top: 2px solid #2a3b5f;
  text-align: center;
}

.interest-form h2 {
  color: #2a3b5f;
  margin-bottom: 10px;
}

.interest-form-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.form-row {
  margin-bottom: 20px;
}

.form-row label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
  color: #2a3b5f;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.btn-blue {
  background-color: #2a3b5f;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-blue:hover {
  background-color: #1d2b45;
}

.share-section {
  text-align: center;
  padding: 40px 20px;
  background-color: #f4f4f4;
}

.share-section h3 {
  margin-bottom: 20px;
  font-size: 24px;
}

.share-buttons a {
  display: inline-block;
  margin: 0 10px;
}

.share-buttons img {
  width: 36px;
  height: 36px;
  transition: transform 0.2s ease;
}

.share-buttons img:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  /* Countdown Timer Mobile */
  .countdown-timer {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    font-size: 20px;
  }

  .countdown-timer span {
    font-size: 28px;
  }

  .countdown-timer small {
    font-size: 12px;
  }

  /* Form Mobile */
  .interest-form-container {
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
  }

  .form-row input,
  .form-row textarea {
    font-size: 14px;
    padding: 10px;
  }

  .btn-blue {
    width: 100%;
    font-size: 14px;
    padding: 12px;
  }

  /* Section padding adjustments */
  .section, .interest-form, .countdown-section, .map-section {
    padding: 40px 15px;
  }

  /* FB Video Mobile */
  .fb-video-fixed {
    position: relative;
    width: 100%;
    padding-top: 80%;
    overflow: hidden;
    height: 0;
  }

  .fb-video-fixed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }
}