@import url('./main.css');

/* Gallery page specific styles */
.gallery-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.gallery-item {
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(30, 60, 120, 0.06);
    overflow: hidden;
  border: 1.5px solid var(--color-accent);
  transition: box-shadow 0.2s, border 0.2s;
}
.gallery-item:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 16px rgba(30, 60, 120, 0.12);
}

.gallery-item img {
    width: 100%;
    display: block;
}

.hero-section {
    background: #000 !important;
    color: #fff;
  padding: 4rem 0 2rem 0;
  text-align: center;
}
.hero-title, .hero-subtitle, .hero-description {
  color: #1a237e;
} 

/* Video Gallery Styles */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.video-item {
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(30, 60, 120, 0.06);
  overflow: hidden;
  border: 1.5px solid var(--color-accent);
  transition: box-shadow 0.2s, border 0.2s;
  display: flex;
  flex-direction: column;
}

.video-item:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 16px rgba(30, 60, 120, 0.12);
}

.video-embed iframe {
  width: 100%;
  height: 320px;
  display: block;
  border: none;
}

.video-info {
  padding: 1rem;
}

/* Visually hidden for accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.video-thumbnail {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(26, 35, 126, 0.8);
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: background 0.2s, color 0.2s;
  z-index: 2;
}

.video-thumbnail:hover .play-button {
  background: #6ec6f7;
  color: #1a237e;
}

.video-thumbnail img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.gallery-hero-section {
  background: url('../images/Hero Backgrounds/gallery_bg.png') center center/cover no-repeat;
  position: relative;
}
.gallery-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}
.gallery-hero-section .hero-container,
.gallery-hero-section .hero-content {
  position: relative;
  z-index: 2;
} 