
body, html {
    overflow-x: hidden;
    background-color: white;
}

:root{
  --gold: #d4af37;
}

.navbar{
  background: white!important;
  /* backdrop-filter: blur(10px); */
}




.nav-link{
  color:black !important;
  margin-left: 15px;
  position: relative;
  display: inline-block;
  transition: color .3s ease, transform .3s ease;
}

.nav-link::after{
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  transition: width .4s ease;
}

.nav-link:hover{
  color: var(--gold) !important;
  transform: translateY(-2px);
}

.nav-link:hover::after{
  width: 120%;
}



.custom-gallery {
  
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.9fr;
  gap: 1rem;
  margin-bottom: 1rem;
  width: 100%;
  overflow: hidden;   
}

.custom-gallery img {
  width: 100%;
  max-width: 100%;     
  border-radius: 10px;
  display: block;
  margin-bottom: 0.5rem;
  object-fit: cover;
}

.col-big img { height: 590px; }


/* .col-big img { height: 100%; } */
.col-medium1 img { height: 380px; }
.col-medium img { height: 250px; }
.col-mediums img { height: 300px; }
.img1{ height: 320px;}
.col-small {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  height: auto;
}

.small-top img { height: 120px; }

.small-bottom img:first-child {
  width: 100%;
  height: 260px;
  margin-bottom: 0.5rem;
}

.small-bottom .bottom-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.small-bottom .bottom-row img {
  height: 340px;
}


@media (max-width: 992px) {
  .custom-gallery {
    grid-template-columns: 1fr 1fr;
  }
}


@media (max-width: 576px) {

  .custom-gallery {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .col-medium img,
  .col-medium1 img,
  .col-big img,
  .col-small img,
  .small-top img,
  .small-bottom img,
  .small-bottom .bottom-row img {
    height: auto !important;
  }

  .col-small { height: auto !important; }

  .small-bottom .bottom-row {
    grid-template-columns: 1fr;
  }

  * {
    max-width: 100%;
  }
}

