/* Video Section Styles */
.video-section {
  padding: 60px 0;
  background-color: #f5f5f5;
}

.video-section h2 {
  text-align: center;
  color: #254e93;
  font-family: "NunitoSans-SemiBold";
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}

@media (min-width: 768px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.video-item {
  text-decoration: none;
  display: block;
  transition: transform 0.3s ease;
}

.video-item:hover {
  transform: translateY(-5px);
}

.video-thumbnail {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.video-thumbnail img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-item:hover .video-thumbnail img {
  transform: scale(1.05);
}

.video-thumbnail .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(37, 78, 147, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.video-item:hover .play-button {
  background: #f9b234;
  transform: translate(-50%, -50%) scale(1.1);
}

.video-thumbnail .play-button svg {
  margin-left: 4px;
}

.video-item h4 {
  color: #254e93;
  font-family: "NunitoSans-SemiBold";
  font-size: 1.2rem;
  margin-top: 15px;
  text-align: center;
}

.video-item:hover h4 {
  color: #f9b234;
}

.video-section .btn-primary {
  background-color: #254e93;
  border-color: #254e93;
  padding: 12px 30px;
  font-family: "NunitoSans-SemiBold";
  border-radius: 25px;
  margin-top: 30px;
  transition: all 0.3s ease;
}

.video-section .btn-primary:hover {
  background-color: #f9b234;
  border-color: #f9b234;
}

/* Gallery Section Styles */
.gallery-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.gallery-section h2 {
  text-align: center;
  color: #254e93;
  font-family: "NunitoSans-SemiBold";
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}

.gallery-item {
  text-decoration: none;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-thumbnail {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.gallery-thumbnail img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-thumbnail img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(37, 78, 147, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  background: rgba(37, 78, 147, 0.7);
}

.gallery-icon {
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-icon {
  opacity: 1;
  transform: scale(1);
}

.gallery-item h4 {
  color: #254e93;
  font-family: "NunitoSans-SemiBold";
  font-size: 1.1rem;
  margin-top: 12px;
  text-align: center;
}

.gallery-item:hover h4 {
  color: #f9b234;
}

.gallery-section .btn-primary {
  background-color: #254e93;
  border-color: #254e93;
  padding: 12px 30px;
  font-family: "NunitoSans-SemiBold";
  border-radius: 25px;
  margin-top: 30px;
  transition: all 0.3s ease;
}

.gallery-section .btn-primary:hover {
  background-color: #f9b234;
  border-color: #f9b234;
}

/* Album Detail Page Styles */
.photo-gallery-details-section .album-header {
  margin-bottom: 30px;
}

.photo-gallery-details-section .album-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #254e93;
  font-family: "NunitoSans-SemiBold";
  margin: 0;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .photo-gallery-details-section .album-title {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .photo-gallery-details-section .album-title {
    font-size: 2.25rem;
  }
}

.photo-gallery-details-section .album-content {
  margin-bottom: 30px;
}
