/* Branding Section */
.branding-section {
  font-family: "IBM Plex Sans", serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
  height: calc(var(--vh, 1vh) * 100);
  padding-top: 100px;
  letter-spacing: 2px;
  }

/* Main Heading Styling */
.branding-section h1 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #000000;
}

/* Paragraph Styling */
.branding-section p {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #000000;
  font-weight: normal;
}

/* Photo Slider - Enables horizontal scrolling of images */
  .photo-slider {
    position: relative;
    width: 88%;
    overflow: hidden;
  }

/* Photo Container */
.photo-container {
  display: flex;
  animation: scroll-left 30s linear infinite;
  animation-direction: reverse;
}

/* Slider Images */
.photo-container img {
  width: calc(100% / 3);
  height: 60vh;
  margin-right: 1rem;
  border-radius: 0.5rem;
  flex-shrink: 0;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2),
              0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }
 
/* Animation for Continuous Scrolling */  
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* 
   Background Image 
   - Hidden by default; shown only in mobile view 
*/
.background-image {
  display: none; 
}


/* Mobile View (Max 768px) */
@media (max-width: 768px) {

    .branding-section{
      padding-top: 0;
    }

    .background-image {
      display: block;
      width: 100%;
      height: 100vh;
      background: url("../Images/mobile-background.jpg") center/cover no-repeat;
      position: absolute;
      top: 0;
      left: 0;
      z-index: -1; 
      opacity: 0.8;
  }

  .photo-slider {
      display: none; /* Hide slider on mobile */
  }

  .branding-section h1{
    font-size: 3rem;
  }

  .branding-section p{
    font-size: 1.5rem;
  }
}


/* Tablet View (769px - 1284px) */ 
@media (max-width: 1284px) and (min-width: 769px) {
  .branding-section {
      height: auto;  
      padding-bottom: 50px; 
  }

  .photo-container img {
    height: 40vh;
  }
}
