
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body{
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
}
.custom-header {
  background-color: #236192;
  z-index: 1050;
}

.logo-text {
  font-family: monospace;
  color: yellow;
  font-size: 2rem;
  border: 1px solid yellow;
  border-radius: 20px;
  padding: 0 10px;
  line-height: 1;
}

.navbar-nav .nav-link {
  color: #f8f9fa;
  font-weight: 500;
}

.navbar-nav .nav-link.active {
  color: gold;
  font-weight: bold;
}

.contact-link {
  font-size: 0.85rem;
  color: gold;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}

.bg-dark-blue {
  background-color: #236192;
}

.hero-banner {
  height: 100vh;
  overflow: hidden;
  position: relative;
  background-color: white;
}

.hero-bg,.hero-gradient {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width:60%;
}
.hero-bg{
  background-image: url('/assets/img/hero-building.png');
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.hero-gradient {
  background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  z-index: 2;
}

.hero-content {
  z-index: 3;
  padding-top: 120px;
  padding-left: 150px;
  color: #0a0a0a;
}

.hero-title {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 5.2rem;
  max-width: 700px;
  line-height: 1;
}

.hero-description {
  font-size: 1.1rem;
  margin-top: 20px;
  max-width: 600px;
}

.home-button {
  border-color:#F4C542;
  color:#F4C542;
  border-radius:15px;
}
.home-button:hover{
  border-color:transparent;
  background-color:#F4C542;
  color:white;
  border-radius:15px;
  font-weight:bolder;
}

/* products */
.headers-section{
  display:flex;
}
.product-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card .product-info {
  display: none;
}

.product-thumbnail img {
  height: 250px; /* or whatever height you prefer */
  width: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  overflow: hidden;
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #F4C542;/* yellow overlay */
  opacity:0.9;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.product-card:hover .product-overlay {
  opacity: 0;
  pointer-events: none;
}

.product-card:hover .product-info {
  display: block;
}

#service-1-container{
  position:relative;
  top:-12vh;
  left:0;
  width:85%;
  padding:28px;
  height:60vh;
  padding-top:66px;padding-bottom:66px;
  /* background-color: #F4C542; */
  background-color: white;
}
#service-2-container{
  position:absolute;
  bottom:0;
  right:0;
  width:85%;
  padding:28px;
  min-height:60vh;
  z-index:4;
  padding-top:66px;padding-bottom:66px;
  background-color: white;
}
#service-section{height:100vh;} 
#products-section{
  scroll-margin-top: 100px;
}

#service-section{
  scroll-margin-top: 200px;
}
#gallery-section{
  min-height:100vh;
  scroll-margin-top: 100px;
}

.flipbook {
    width: 800px;
    height: 600px;
  }

  .flipbook .page {
    width: 400px;
    height: 600px;
    background: white;
  }

.page-flip-page {
  background: white;
  overflow: hidden;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.book-image {
  max-height: 90%;
  max-width: 90%;
  object-fit: contain;
  display: block;
}

@media (max-width: 991.98px) {
  .contact-link {
    display: block;
    text-align: right;
    margin-top: 10px;
  }
  #products-section,#service-section,#home-section{height:auto;}
  #home-section{min-height:100vh;padding-top:60%;}
  #service-1-container,
  #service-2-container {
    width: 100%;
    position: relative;
    bottom: auto;
    right: auto;
    height: auto;
    margin-top: 0;
  }
  .headers-section{
    display:block;
  }
  .hero-content {
    padding-left: 5vw;
    padding-right:5vw;
    padding-top:2%;
  }
  .hero-content img{
    max-width:80%!important;
    object-fit: contain;
  }
  .hero-bg,.hero-gradient {
    display:none;
  }
  .hero-title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 3rem;
    max-width: 80vw;
    line-height: 0;
  }

  .hero-description {
    font-size: .8rem;
    margin-top: 20px;
    max-width: 80vw;
  }

}
