@import url('./fonts.css'); 
@import url('./common.css');


/* NAVBAR STYLE*/
.navbar-container{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    height: 100px;
    background-color: #ffffff; /* default for inner pages */
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar-container > div {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Home page initial state: transparent over hero image */
.navbar-home{
    background-color: transparent;
}

/* Shadow when scrolled (all pages) */
.navbar-scrolled{
    box-shadow: 0 4px 12px rgba(15,23,42,0.12);
}

/* Shadow for inner pages (about & projects) - always visible */
.navbar-inner{
    box-shadow: 0 4px 12px rgba(15,23,42,0.12);
}

.navbar-container .logo-container{
    width: 110px;
    height: 110px;
}
.navbar-container .logo-container img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.navbar-container .logo-container svg{
    width: 100%;
    height: 100%;
    display: block;
}
.navbar-container .navbar-logo{
    color: #0f172a;
}
.navbar-container .navbar-menu-icon{
    color: #0f172a;
}
.navbar-container.navbar-home .navbar-logo{
    color: #ffffff;
}
.navbar-container.navbar-home .navbar-menu-icon{
    color: #ffffff;
}
.navbar-container.navbar-scrolled .navbar-logo{
    color: #0f172a;
}
.navbar-container.navbar-scrolled .navbar-menu-icon{
    color: #0f172a;
}
.navbar-container .link-container a{
     margin-left: 10px;
}

#menuitem{
    transition: all 1.5s linear;
}
.swiper {
    width: 100%;
    height: 100%;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .swiper {
    margin-left: auto;
    margin-right: auto;
  }

/* GALLERY MODAL STYLES */
.gallerySwiper {
  width: 100%;
  height: 100%;
  max-height: 90vh;
}

.gallerySwiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.gallerySwiper .swiper-slide img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
}

/* Gallery Navigation Arrows */
.gallery-next,
.gallery-prev {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.gallery-next:hover,
.gallery-prev:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

.gallery-next::after,
.gallery-prev::after {
  font-size: 20px;
  font-weight: bold;
}

.gallery-next {
  right: 20px;
}

.gallery-prev {
  left: 20px;
}

@media (max-width: 640px) {
  .gallery-next,
  .gallery-prev {
    width: 40px;
    height: 40px;
  }

  .gallery-next::after,
  .gallery-prev::after {
    font-size: 16px;
  }

  .gallery-next {
    right: 10px;
  }

  .gallery-prev {
    left: 10px;
  }
}

/* MARQUEE STYLES */
marquee {
  overflow: hidden;
  white-space: nowrap;
}

marquee img {
  transition: opacity 0.3s ease;
}
