/*HEADER , FOOTER , HOME PAGE STYLE & About page style*/




*{
    font-family: sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root{
    --black:#212121;
    --accent:#807ef3;
    --gray:#BEBFC5;
    --darkgray:#555555;
}
body{
    overflow-x: hidden;
}


nav{
    display: flex;
    width: 100%;
    padding: 20px 50px;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
  
}
.navnar-brand{
    display: flex;
    justify-content: center;
    align-items: center;

}
.navnar-brand img{
    width: 8%;
}
.title{
    text-decoration: none;
    color: var(--black);
   margin-top: 10px;
   margin-bottom: 4px;
}
.title h1{
    font-size: 28px;
    letter-spacing: 1px;
}
.sub-title{
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 5px;
    word-spacing: 6px;
    margin-bottom: 3rem;


   
}

.menu{
    display: flex;
    gap: 40px;
    align-items: center;
}

.link-hover{
    display: inline-block;
    position: relative;
    color: var(--black);
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.15em;
    font-weight: bold;
    font-size: 16px;
    
}

.link-hover::after{
   content: ""; 
   display: block;
   position: absolute;
   bottom: 1px;
   left: 50%;
   width: 0;
   height: 2px;
   background: var(--gray);
   transition: width 0.3s ease, left 0.3s ease;
}

.link-hover:hover::after{
    width: 100%;
    left: 0;
}

.collection-dropdown{
    position: relative;
}
.dropdown-title{
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;

}

.dropdown-title i{
    font-size: 25px;
    
    transform: rotate(180deg);
    color: var(--black);
    transition:  all 0.2s ease-in-out;
}

.dropdown-title:hover i{
    color: var(--gray);
}

.dropdown-title.rotate-0 i{
    transform: rotate(0deg);
}

.dropdown-content{
    display: none;
    position: absolute;
    z-index: 2;
    top: 40px;
    width: 290px;
    background-color: white;
    border-radius: 12px;
    border: 1px solid var(--gray);
    padding: 24px;
    transition: all 0.3s ease-in-out;
}

.dropdown-content.show{
    display: block;
}

.dropdown-content a{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2px;
    padding: 10px 5px;
    color: black;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 0.15em;
    font-size: 16px;
    transition: all 0.3s ease-in-out;

}

.dropdown-content a:hover{
    gap:5px;
}

.dropdown-item {
  position: relative;
  display: inline-block;
  padding: 10px 15px;
  transition: transform 0.2s ease;
  overflow: hidden;
}

.dropdown-item:hover {
  animation: shakeX 0.2s ease;
}
/* Add underline animation */
.dropdown-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background-color:white; /* underline color */
  transition:width 0.4s ease-in-out;
}

.dropdown-item:hover::after {
  width: 50%;
}
/* Shake animation */
@keyframes shakeX {
  0% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  50% { transform: translateX(4px); }
  75% { transform: translateX(-2px); }
  100% { transform: translateX(0); }
}


.close-btn{
    position: absolute;
    display: none;
}
.open-btn{
    font-size: 32px;
    margin: 0 20px;
    display: none;
}

/* img amination style hero page */
   .image-container {
      position: relative;
  
      max-width: 1120px;
      width: 100%;
      height: 100vh;
      margin-top: 40px !important;
      margin-bottom: 60px !important;
      overflow: hidden;
      margin: 0 auto;
    box-sizing: border-box;
        box-shadow: 10px 10px 25px rgba(0,0,0,0.3);
    }

    /* Common style for each background layer */
    .bg-slide {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center bottom;
       box-shadow: 10px 10px 25px rgba(0,0,0,0.3);
      opacity: 0;
      animation: fadeCycle 16s infinite;
    }

    /* Individual images with staggered delay */
    .bg1 { background-image: url("images/Home Page/Covers/DSC_0105.jpg"); animation-delay: 0s; }
    .bg2 { background-image: url("images/Home Page/Covers/DSC_0138.jpg"); animation-delay: 4s; }
    .bg3 { background-image: url("images/Home Page/Covers/DSC_0321.JPG"); animation-delay: 8s; }
    .bg4 { background-image: url("images/Home Page/Covers/U2.jpg"); animation-delay: 12s; }
                                      

    /* Fade animation keyframes */
    @keyframes fadeCycle {
      0% { opacity: 0; }
      5% { opacity: 1; }
      25% { opacity: 1; }
      30% { opacity: 0; }
      100% { opacity: 0; }
    }
    
    .image-container .text-overlay {
      position: relative;
      z-index: 1;
      width: 100%;
      height: 100%;
      padding: 5vw;
      background: rgba(0, 0, 0, 0.5);
      color: white;

      display: flex;
      align-items: center;
      justify-content: center;
      line-height: 1.2;
      text-align: center;
      font-size: 20px;
      overflow-y: auto;
    }

   .image-container .text-overlay p {
      max-width: 900px;
    }

    .image-container .text-overlay::-webkit-scrollbar {
      width: 0;
      background: transparent;
    }

   



    /*sub imges section text */
    .hero-flex{
       background:black;
       display: grid;
       grid-template-columns: 60% 40%;
       margin-left: 60px;
       margin-right: 60px;
     
       
      

       
    }
    .hero-img-side img{
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
      max-width: 100%;
      max-height: 100vh;
      box-shadow: 10px 10px 25px rgba(0,0,0,0.3);
    }

    .hero-text-side{
        display: flex;
        background: black;
        color:white;
        box-shadow: 10px 10px 25px rgba(0,0,0,0.3);
      
    }
    .hero-text-side p {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 20px;
    padding: 65px;
    padding-top:-40px;
    position: relative;
    font-family: sans-serif;
    }

    /* Fade In Animation 
    .hero-text-side p{
      opacity: 0;
      transform: translateY(40px);
      animation: fadeInUp 1.2s ease-out 0.3s forwards;
    }
    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    } */


/* ZOOM EFFECT */
  .hero-text-side p{
  opacity: 0;
  transform: scale(0.8);
  animation: scaleUp 0.7s ease-out forwards;
}
@keyframes scaleUp {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* BOUNCE IN EFFECT */

/*.hero-text-side P {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  animation: bounceIn 1.1s cubic-bezier(0.22, 0.68, 0.26, 1.22) 0.2s forwards;
}
@keyframes bounceIn {
  60% {
    opacity: 1;
    transform: translateY(-10px) scale(1.07);
  }
  80% {
    transform: translateY(5px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
} */




    /* Featured Section */
  
 .featu-title{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}

.featu-title h2{
  text-transform: uppercase;
  font-weight: bolder;
  font-size: 1.7rem;
  letter-spacing: 2px;

}
.slider-container {
  position: relative;
  width: 95%;
 
  max-width: 1400px;
  margin: 50px auto;
  overflow: hidden;
  background:transparent;

}
.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(.42,.8,.56,1);
  will-change: transform;
}
.slide {
  min-width: 33.3333%;
  box-sizing: border-box;
  padding: 4px;
  text-align: center;
  transition: 0.3s;
}
.slide img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  object-position: bottom;
  background: #111;
  ;
}
.slider-dots {
  
  text-align: center;
  margin-top: -30px;
}
.slider-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background: #bbb;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
  margin-bottom: 20px;
  margin-top: 20px;
}
.slider-dot.active {
  background: #333;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  cursor: pointer;
  font-size: 22px;
  line-height: 40px;
}
.slider-btn.prev {
   left: 10px; 
  }
.slider-btn.next {
   right: 10px; 
  }
.slider-btn:hover { 
  background: #000; 
}
 
  

   /* About Us page styling */

   .aboutus-container-text{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
    
   }

   .aboutus-container-text h2{
    margin-top: 2rem;
    font-size: 1.7rem;
    
}

   .aboutus-text{
    line-height: 1.1rem;
    padding: 10rem;
    padding-top: 0;
    padding-bottom: 3rem;

   }
  .bio-output-container {
  width: 100%;
  max-width: 800px;
  margin: 60px auto 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -10px;
  margin-bottom: 30px;
}

.bio-output-list {
  display: flex;
  gap: 44px;
  justify-content: center;
  align-items: flex-start;
}
.bio-link-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bio-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
}
.bio-link img {
  width: 100px;
  height: 100px;
  margin-top: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: #71705f;
  margin-bottom: 9px;
  transition: box-shadow 0.16s, border 0.18s;
}
.chirag_img{
  object-position: bottom center;

  
}
.bio-link:hover img {
  box-shadow: 0 0 8px #e4b93262;
  border: 3px solid #4a4a3d;
}
.bio-link span {
  font-size: 1.1rem;
  color: black;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  transition: color 0.2s;
}
.bio-link:hover span {
  color: var(--gray)
}

/* Centered bio card below all links */
#bio-inline-center {
  display: none;
  margin-top: 36px;
  width: 510px;
  background: white;
  /*border: 1px solid #fff5ad;
  border-radius: 15px;
  box-shadow: 0 3px 12px #b3ae3370;*/
  color: #232226;
  
  animation: slideDown 0.18s;
  position: static;
  margin-bottom: 30px;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-18px);}
  to { opacity: 1; transform: translateY(0);}
}
.bio-inline-content {
  padding: 18px 20px 10px 20px;
  position: relative;
}
.bio-inline-content .bio-name {
  font-size: 1.18rem;
  font-weight: bold;
  margin-bottom: 8px;
  letter-spacing: 0.7px;
  color: #232226;
  margin-bottom: 30px;
}
.bio-inline-content .bio-text {
  margin: 0 0 4px 0;
  font-size: 1rem;
  color:black;
  line-height: 1.1rem;
  text-align: center;
 
}
.bio-name{
  text-align: center;
 
 
}

.close-bio {
  position: absolute;
  top: 8px;
  right: 14px;
  color:black;
  border: none;
  padding: 2px 11px;
  font-size: 2.17rem;
  border-radius: 50%;
  cursor: pointer;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.17s;
}
.close-bio:hover {
   color: #c42525; 
  }

/* Footer styling */
.footer-distributed{
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    bottom: 0;
    margin-bottom: 100px;
    gap: 100px;
    margin-top: 50px;
  
    
}
.footer h3{
    margin-bottom: 10px;
    text-align: center;
    margin-top: 10px;
}

.footer a{
    text-decoration: none;
    color: black;
    transition: all 0.3s ease;
    
}
.footer a:hover{
    color: var(--gray);
}
.footer span{
    line-height: 7px;
    font-size: 17px;
 
}
   .center{
    margin-top: 40px;
}

.left{
    margin-top: 24px;
}


.center-newsletter {
  
  background: #000;
  color: #fff;
  padding: 24px 0;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: -20px;
  margin-left: 10px;
  
  


}
.center-newsletter input {
  font-size: 1.2rem;
  padding: 7px 15px;
  border: none;
  width: 320px;
  height: 35px;
}
.center-newsletter button {
  font-size: 1.05rem;
  padding: 8px 20px;
  border-radius: 5px;
  border: none;
  background: #1e90ff;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}
.center-newsletter button:hover {
   background: #115aa3; 
  }
.full-width-bottom-img {
  position: relative;
  width: 100vw;
  min-height: 380px;
  margin-bottom: 60px;
  margin-top: 0;
  padding: 0;
  overflow: hidden;
  
}
.full-width-bottom-img img {

   max-width: 99vw; 
  width: 100%;
  height: 100vh;                
  object-fit: cover;
  display: block;
  margin-left: 10px;
  
  border-radius: 0;
  background: #181818;
  transition: all 0.3s;
}

.copy-text{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  font-size: 16px;

  color: white;
}
/*Laptop and Tablet */

@media(max-width:1920px) and (min-width: 0px){
  
  .image-container{
      box-sizing: border-box;
      max-width: 1400px;


}


@media(max-width:1024px) and (min-width: 0px){
    nav{
        padding: 20px;
    }
    .menu{
        gap: 22px;
    }
    .link-hover{
        font-size: 12px;
    }
    .dropdown-content{
        color: black;
    }
  .image-container{
      box-sizing: border-box;
          max-width: 1120px;
  }
  
.slider-container {
 

  max-width: 1150px;
  

}

}



@media(max-width:820px) and (min-width: 0px){
 .image-container .text-overlay {
        font-size: 1.2rem;
        padding: 6vw;
      }
      .image-container {
        width: calc(100% - 50px); /* both side  15px gap */
        margin: 0 auto;           /* both side equal space space */
        height: 45vh;
        
        
      }
.hero-flex{
    margin-left: 30PX;
    margin-right: 30PX;
    
}


.hero-text-side p{
    padding: 20px;
}
.footer-distributed{
    display: flex;
    flex-wrap: wrap;
    
    justify-content: center;
    align-items: center;
    /*border-top: 1px solid var(--gray);*/

}
.right{
    margin-top: -50px;
}
 .full-width-bottom-img img {
    height: 40vh;
    min-height: 240px;
  }
  .full-width-bottom-img {
    min-height: 240px;
    margin-bottom: 80px;
  }



/*Phone */
@media(max-width:767px) and (min-width: 0px){
.open-btn{
    display: block;
    position: relative;
    left: 40%;
    top:-160px;
}
.navnar-brand img{
    width: 15%;

}
.close-btn{
    display: block;
    top: 0;
    right: 0;
    margin: 48px;
    font-size: 24px;
    color: white;
}
.menu{
    flex-direction: column;
    position: fixed;
    z-index: 9999;
    background-color: var(--black);
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    justify-content: center;
    padding: 50px;
    gap: 44px;
    transition: left 0.5s;
    overflow-y: scroll;
}
.menu-active{
    left: -100%;
}
.link-hover{
    color: white;
    font-size: 28px;
    font-weight: bolder;
    letter-spacing: 0;
}
.dropdown-title{
    gap: 10px;
}
.dropdown-title i{
    color: white;
}
.collection-dropdown{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.dropdown-content{
    position: relative;
    background-color: var(--black);
    min-width: 70vw;
    top: 0;
    border: none;
   
}
.dropdown-content a{
    color: white;
    padding: 15px 20px;
    font-size: 18px;
    
    
}
.dropdown-item:last-child {
  margin-bottom: -30px;  /* ya jitna space chahiye */
}
.container{
   
    margin: 20px;
    margin-top: -20px;
   
}
.image-container .text-overlay {
        font-size: 0.9rem;
        padding: 5vw;
      }
      .image-container {
        width: calc(100% - 30px); /* both side  15px gap */
        margin: 0 auto;           /* both side equal space space */
        margin-top: -40px !important;
        height: 45vh;
        
        
      }
.hero-flex{
    grid-template-columns: 1fr;
    
    margin-top: 50px;
    padding: 0;
    width: 92%;
    max-width: 100%;
    margin-left: 20px;
    margin-right: 30px;
    
}

 
.hero-text-side p{
    font-size: 20px;
    padding: 10px;
}
.slide { 
    min-width: 50%;
 }
.aboutus-container-text{
 margin-top: -60px;
}
.aboutus-container-text h2{
    margin-top: 2rem;
}
.aboutus-text{
    line-height: 1.1rem;
    padding: 10px;
    text-align: center;
    padding-top: 0;

   }
   .bio-output-list {
     gap: 20px;
     }
  .bio-link img { 
    width: 80px; 
    height: 80px; 
    margin-top: 30px;
  }
  #bio-inline-center { 
    width: 98vw;
     max-width: 99vw;
    }
  .close-bio{
    right: 50px;
    top: 0;
  }
 .bio-inline-content , .bio-text{
  text-align: center;
 }


.footer-distributed{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
   /* border-top: 1px solid var(--gray);*/

}
.footer{

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
   
}
.footer h3{
    margin-top: 30px;
}

   .center{
    margin-top: -80px;
}
.right{
    margin-top: -70px;
}
.center-newsletter{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
 
}

.center-newsletter {
    flex-direction: column;
    gap: 12px;
    font-size: 1.48rem;
  }
  .center-newsletter input{
    width: 100%;
    max-width: 90vw;
    border-radius: 5px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .center-newsletter button {
    width: 100%;
    max-width: 80vw;
  }

   .full-width-bottom-img img {
    height: 34vh;
    min-height: 140px;
   
  }
  .full-width-bottom-img {
    min-height: 140px;
  }
   
}
}

    