.index-header {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;   /* 👈 change this */
}

.index-header > *:not(.bg-video) {
  z-index: 2;
}

.text-box-index{
  text-shadow:
    0 2px 10px rgba(0,0,0,0.7),
    0 5px 30px rgba(0,0,0,0.6);
}

/* Button shadow */
.hero-btn {
  box-shadow:
    0 10px 25px rgba(0,0,0,0.6),
    0 5px 15px rgba(252,63,64,0.3);
  transition: all 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 15px 35px rgba(0,0,0,0.8),
    0 10px 25px rgba(252,63,64,0.5);
}

.mosaic-section {
  background: #000;
  padding: 60px 40px;
}

.top-text-container h2{
  color: #fc3f40;
}


/* ---------- TEXT BOXES ---------- */

.top-text-container {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.text-box {
  padding: 40px;
  border-radius: 16px;
  width: 600px;
  color: white;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  text-align: center;
}

.text-box h2 {
  font-size: 38px;
  margin-bottom: 15px;
}

.text-box p {
  opacity: 0.7;
  line-height: 1.6;
}

.collage-wrapper {
  max-width: 1400px;
  margin: auto;
  padding: 16px;
  opacity: 0;
  transition: opacity 1s ease;
}

.collage-wrapper img {
  width: 100%;
  height: auto; /* Keeps aspect ratio */
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

/* Fade in whole collage */
body.loaded .collage-wrapper {
  opacity: 1;
}

.png-backdrop-section {
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px;
  position: relative;
}


.corporate-section {
  background: url("WebsiteImages/corporateback.png") center center no-repeat;
  background-size: 350% 350%;
}

.youtube-section {
  background: url("WebsiteImages/youtubeback.png") center center no-repeat;
  background-size: 350% 350%;
}

.wedding-section {
  background: url("WebsiteImages/weddingback.png") center center no-repeat;
  background-size: 350% 350%;
}

.docs-section {
  background: url("WebsiteImages/docsback.png") center center no-repeat;
  background-size: 350% 350%;
}

.sports-section {
  background: url("WebsiteImages/sportsback.png") center center no-repeat;
  background-size: 350% 350%;
}

.musicvid-section {
  background: url("WebsiteImages/musicvidback.png") center center no-repeat;
  background-size: 350% 350%;
}

.shortfilms-section {
  background: url("WebsiteImages/shortfilmsback.png") center center no-repeat;
  background-size: 350% 350%;
}

.liveEvents-section {
  background: url("WebsiteImages/liveEventsback.png") center center no-repeat;
  background-size: 350% 350%;
}


.png-text-box {
  background: transparent !important;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Distribute space so h2 and button align */
  position: relative;
  max-width: none;
  text-align: center;
  color: #fff;
}

.png-text-box h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #fc3f40;
  font-style: italic;
}

.corporate-btn {
  margin-top: 40px;
  margin-bottom: 0;
  align-self: center; /* Center button horizontally */
}

.services-section {
  width: 100%;
  align-items: center;
}

.service-row {
  display: flex;
  width: 100%;
  gap: 60px; /* No gap for closest possible cards */
  align-items: center;
  justify-content: center; /* Center the cards horizontally */
}

.service-card {
  flex: 1 1 180px; /* allow shrinking, set base width */
  min-height: 350px;
  max-width: 500px; /* make cards narrower */
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: stretch;
  background-size: 350% 350% !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  margin: 0 2px; /* Even closer */
}

@media (max-width: 768px) {
  .service-row {
    flex-direction: column;
    align-items: center;
    gap: 5px; /* Reduce gap between cards on mobile */
  }
  .service-card {
    max-width: 95vw;
    min-width: 0;
    width: 100%;
  }
  .png-text-box {
    justify-content: flex-start; /* Remove space-between for mobile */
    height: auto;
  }
  .collage-wrapper {
    display: block !important;
    max-width: 98vw;
    padding: 4vw;
    opacity: 1 !important;
  }
  .collage-wrapper img {
    width: 100%;
    height: auto;
    display: block;
  }
}