html {
  scroll-padding-top: 60px; 
  scroll-behavior: smooth;
}

body{
    background-color: black !important;
    font-family: Inter;
}

@font-face {
    font-family: Inter;
    src: url('../fonts/Inter/Inter-VariableFont_slnt\,wght.ttf');
}

li,ul{
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.active-link {
    color: red !important;
}

/* Override Bootstrap's default active state */
.nav-link.active-link {
    color: red !important;
}


.loading-area{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9999;

    background-color: black;
    height: 100vh;
    width: 100vw;
}


.landing-page-wrap{
    margin: 50px;
}

.navbar{
    background-color:  rgba(0, 0, 0, 0.615) !important;
}

.logo-text{
    font-weight: bold;

}

.tokyo,.kyoto,.osaka{
        width: 100%;
        height: 100vh;
        object-fit: fill;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
}

.tokyo{
    background-image: url(../images/tokyo.avif);
}

.kyoto{
    background-image: url(../images/kyoto.avif);
}

.osaka{
    background-image: url(../images/osaka.avif);
}


.banner-txt-div{
position: absolute; 
top: 50%;
left: 50%;
transform: translate(-50%, -50%);

text-align: center;
}


p,h1{
    margin: 0;
    padding: 0;
}
.banner-place-txt,.banner-tagline-txt,.logo-text{
    color: #fff;
    font-family: Inter;
    
}

.banner-welcome-txt{
    font-size: 1.5rem;
    color: #fff;
    font-family: "Alegreya Sans SC", sans-serif;
    
}


.banner-place-txt{
    font-size: 9rem !important;
    font-weight: 700;
    line-height: 120px;

}

.banner-place-japanese{
    font-size: 2.5rem  ;
    color:red;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 4px 4px rgba(0, 0, 0, 0.25);

font-family: 'Inter';
font-style: normal;
font-weight: 700;
line-height: 77px;

}

.banner-tagline-txt{
    font-size: 1rem;;
    font-weight: 400;

}


.banner-button-explore{
    background-color: red;
    color: white;
    border-radius: 50px;
    border: none;
    width: 250px;
    height: 40px;
    font-weight: 600;
    margin-top: 10px;
    font-size: 18px;

}
.banner-button-explore:hover{
    background-color: rgba(0, 0, 0, 0);
    border-style:solid ;
    border-width: 1px;
    border-color:white ;
   
}


/* Discover CSS */

.discover-area{
    padding: 50px 10px 50px 10px;
}

.discover-title-txt,.coordinates-jp,.discover-maintext-txt{
    color: #fff;
    font-family: Inter;
   
}

.coordinates-jp{
    font-size: 1.5rem;
    font-weight: 400;
    font-weight: bold;
}



.discover-title-txt{
    font-weight: bold;
    text-decoration: underline;
    text-decoration-color: red;
    text-decoration-thickness: 4px;
    text-underline-offset: 8px;
    margin-bottom: 20px;
}

.discover-maintext-txt{
    font-weight: Light;
    padding: 50px;
}
.discover-image-area{
  height: 300px;
  width: 100%;
  background-image: url(../images/discoverimg.avif);
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Ios Fixed on Background of Discover Image Area */
@supports (-webkit-touch-callout: none) {
  .discover-image-area {
      background-attachment: scroll;
  }
}

/*  */

/* Gallery Section */
.gallery-section{
    margin-bottom: 50px;
}

.gallery-image-container {
    overflow: hidden;
  }
  
  .gallery-image-container img {
    transition: transform 0.3s;
  }
  
  .gallery-image-container:hover img {
    transform: scale(1.1);
  }

/* Footer Area */

.footer-area{
    background-color: rgb(182, 12, 12);
    padding-top: 10px;
    padding-bottom: 10px;
}

.social-icons {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
  }
  
  @media (max-width: 767px) {
    .social-icons {
      justify-content: center;
    }
  }
  
  .social-icon {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease, transform 0.2s ease;
  }
  
  .social-icon:hover {
    color: white;
    transform: translateY(-3px);
  }
  
  .copyright-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
  }



/* Interactive Map Styles */
  .map-section{
    padding: 50px 10px 50px 10px;
  }
  
  .map-subtitle {
    color: #777;
    font-size: 1.1rem;
  }
  
  #japan-map {
    height: 500px;
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .map-info-panel {
    background-color: #1a1a1a;
    border-radius: 8px;
    padding: 20px;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .map-info-title {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.5rem;
  }
  
  .map-location-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .map-location-item {
    padding: 12px 10px;
    border-bottom: 1px solid #333;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }
  
  .map-location-item:last-child {
    border-bottom: none;
  }
  
  .map-location-item:hover {
    background-color: #333;
  }
  
  .leaflet-popup-content-wrapper {
    background-color: #222;
    color: white;
    border-radius: 6px;
  }
  
  .leaflet-popup-tip {
    background-color: #222;
  }
  
  .map-popup-content h4 {
    color: #ff0000;
    margin-bottom: 5px;
  }
  
  .map-popup-content p {
    margin-bottom: 5px;
  }

  /* Tips And Guides */

  .tips-subtitle{
    color: #777;
    font-size: 1.1rem;
  }

  .tip-card-title{
    text-decoration: underline;
    text-decoration-color: red;
    text-decoration-thickness: 4px;
    text-underline-offset: 8px;
    line-height: 60px;
    font-weight: 700;
  }

  .tip-card-desc{
    font-family: Inter;
  }

  .tip-image-container {
    overflow: hidden;
  }
  
  .tip-image-container img {
    transition: transform 0.3s ease;
  }
  
  .tip-image-container:hover img {
    transform: scale(1.1);
  }
  

  /* Logo Section */

  .big-logo{
    width: 120px;
  }



@media screen and (max-width: 576px) {
    .banner-place-txt{
        font-size: 5rem !important;
        line-height: 70px;
    }

    .banner-place-japanese{
        font-size: 2rem;
    }

    .coordinates-jp{
        font-size: 1rem;
    }
    .discover-title-txt{
        font-size: 2.5rem;
    }
    .discover-image-area{
        height: 200px;
    }

    .discover-maintext-txt{
        padding: 0px;
    }

    .tip-card-title{
      font-size:36px
    }


}
    


.social-icons {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
}

.social-icons li {
  display: inline-block;
}

.social-icons a {
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.social-icons a:hover {
  opacity: 0.7;
}