@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400&display=swap');

/*
.about_me{
  background-image: url("about-me.png");
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
      
  
}
  */
  
.para_text{

    font-family: 'roboto', sans-serif;
    font-weight: 400;
    color: #232323;
    font-size: 18px;
    padding:20px;

}

.para_header{
    font-weight: 700;
}


.para_list li {background:url(calligraphy_bullet.png) no-repeat; 
  background-repeat:no-repeat;
  background-size:32px 32px; padding-left:45px; min-height:32px;
 line-height:normal;  
 width:auto; margin-bottom:20px; line-height:1.4em; text-align:left;
  list-style: none;

  margin-bottom: 1.2em;
  list-style: none;
  
	
}


/* Gallery Grid */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Thumbnails */
.gallery img {
  width: 100%;
  cursor: pointer;
  border-radius: 8px;
  transition: 0.3s;
}

.gallery img:hover {
  transform: scale(1.04);
}

/* Popup */
#videoPopup {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
}

.popup-content {
  width: 80%;
  max-width: 800px;
  background: #000;
  margin: 8% auto;
  position: relative;
}

.popup-content iframe {
  width: 100%;
  height: 450px;
}

/* Close Button */
.close {
  position: absolute;
  top: -35px;
  right: 0;
  font-size: 30px;
  color: white;
  cursor: pointer;
}


/* Slider Starts Here */

.slider {
      position: relative;
      max-width: 900px;
      margin: 40px auto;
      overflow: hidden;
      border-radius: 14px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
      background: #000;
    }

    .slides {
      display: flex;
      transition: transform 0.6s ease-in-out;
    }

    .slides img {
      width: 100%;
      flex-shrink: 0;
      object-fit: cover;
    }

    .nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0,0,0,0.6);
      color: #fff;
      border: none;
      font-size: 22px;
      padding: 10px 16px;
      cursor: pointer;
      border-radius: 50%;
    }

    .prev { left: 15px; }
    .next { right: 15px; }

    .dots {
      position: absolute;
      bottom: 12px;
      width: 100%;
      text-align: center;
    }

    .dots span {
      display: inline-block;
      height: 10px;
      width: 10px;
      margin: 0 5px;
      background: rgba(255,255,255,0.6);
      border-radius: 50%;
      cursor: pointer;
    }

    .dots .active {
      background: #fff;
    }
    
/* Slider Ends Here */

/* Responsive */
@media (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}


/*
.youtube-link{
    font
}

.youtube-player-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    pointer-events: none;
}

.youtube-player-overlay.active{
    opacity: 1;
    pointer-events: auto;
}

.youtube-player-popup{
    position: fixed;
    width:80%;
    left: 50%;
    transform: translate(-50%, -100%);
    transition: all 400ms ease;

}

.youtube-player-overlay.active .youtube-player-popup{
    transform: translate(-50%,0);

}

.youtube-player-popup iframe{
    width:100%;
    aspect-ratio: 16/9;
}
    */



        