/* Base Styling */
body {
  margin: 0;
  background-color: #fff;
  color: #222;
}

/* Hero Section */
.projects-hero {
  text-align: center;
  padding: 4rem 1rem 2rem;
  background-color: #f8f8f8;
}

.projects-hero h1 {
  font-size: 2.5rem;
  color: #1b1b1b;
  margin-bottom: 0.5rem;
}

.projects-hero p {
  color: #555;
  font-size: 1.1rem;
}

/* Gallery Grid */
.projects-gallery {
  padding: 3rem 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

/* Videos Section */
/* ===== PROJECT VIDEOS SECTION ===== */
.projects-videos {
  background-color: #F7F7F7;
  padding: 5rem 5%;
  text-align: center;
}

.projects-videos h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0E2C28; /* match brand dark green */
  margin-bottom: 2.5rem;
}

/* Video Grid Layout */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Each video frame */
.video-grid video {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(14, 44, 40, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-grid video:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 25px rgba(14, 44, 40, 0.12);
}

/* YouTube Button CTA */
.youtube-link {
  margin-top: 3rem;
}

.youtube-link a {
  display: inline-block;
  text-decoration: none;
  background-color: #c4302b;
  color: #fff;
  padding: 0.9rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.youtube-link a:hover {
  background-color: #e03b33;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .projects-videos {
    padding: 3rem 1.5rem;
  }

  .projects-videos h2 {
    font-size: 1.6rem;
  }

  .youtube-link a {
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
  }
}
