.intro {
    background-image: url('../../images/original_designs/houras/1.jpg');
    background-size: cover; 
    background-position: center;  
    background-repeat: no-repeat;  
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
    background-blend-mode: multiply; /* Blends colors */
    color: white;
    padding-top: 250px;
    font-size: 2.5rem;
    text-align: center;
}

.intro h1 {
    animation-name: animate;
    animation-duration: 1.4s;
}


/*******************************animation********************************/
@keyframes animate {
    from{
        transform: translateX(-300px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
    }
}


/*******************************scroll bar********************************/
 
::-webkit-scrollbar {
    width: 10px; 
    background-color: #000; 
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: var(--MAIN-LOGO-COLOR); 
    border-radius: 5px; 
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background-color: var(--MAIN-BG-COLOR); 
  }


  .article {
    margin: 5rem 0;
    background-color: #000;
    color: #ffff;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }

  .article p {
    width: 50%;
    font-size: 2rem;
  }


 .gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;

 }

 .row1, .row2 {
    display: flex;

    gap: 20px;
 }
.gallery img {
    width: 100%;  /* Keep the width flexible */
    height: 90vh; /* Set fixed height */
    object-fit: cover; /* Crop excess parts */
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
  /* Intro Section */
  .intro {
      padding-top: 150px;
      font-size: 2rem;
      height: 70vh;
  }

  .intro h1 {
      padding: 0 20px;
  }

  /* Article Section */
  .article {
      margin: 3rem 0;
      flex-direction: column;
      padding: 20px;
      gap: 2rem;
      text-align: center;
  }

  .article p {
      width: 90%;
      font-size: 1.5rem;
      margin-bottom: 20px;
  }

  .article img {
      width: 90%;
      height: auto;
  }

  /* Gallery Section */
  .gallery {
      gap: 10px;
      padding: 10px;
  }

  .row1, .row2 {
      flex-direction: column;
      gap: 10px;
      width: 100%;
  }

  .gallery img {
      height: 50vh;
      width: 100%;
  }

  /* Animation adjustment for mobile */
  @keyframes animate {
      from {
          transform: translateX(-100px);
          opacity: 0;
      }
      to {
          transform: translateX(0);
      }
  }
}

/* Medium screens */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .article {
      padding: 30px;
  }

  .article p {
      width: 45%;
      font-size: 1.8rem;
  }

  .gallery img {
      height: 70vh;
  }
}