.material-symbols-outlined {
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
}
.glass-panel {
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-section {
  align-items: center;
  box-sizing: border-box;
  min-height: 100svh;
  padding: clamp(7rem, 13vh, 9rem) 0 clamp(2rem, 7vh, 4rem);
}
.hero-bg-image {
  object-position: center;
}
.hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(39, 59, 47, 0.86) 0%,
    rgba(39, 59, 47, 0.56) 46%,
    rgba(39, 59, 47, 0.12) 100%
  );
}
.hero-container {
  padding-inline: clamp(1rem, 7vw, 8.5rem);
}
.hero-card {
  width: min(100%, 48rem);
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: clamp(1.25rem, 3vw, 1.5rem);
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.12;
  margin-bottom: clamp(1rem, 2.5vw, 1.25rem);
}
.hero-copy {
  max-width: min(100%, 38rem);
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  line-height: 1.65;
}
.hero-read-more {
  margin-bottom: clamp(1.5rem, 4vw, 2rem);
}
.hero-actions {
  gap: clamp(0.75rem, 2vw, 1rem);
}
.hero-action-link {
  min-height: 3.25rem;
  white-space: nowrap;
}

/* gallery section */
.gallery-slider{
    overflow:hidden;
    width:100%;
}

.gallery-track{
    display:flex;
    transition:transform .8s ease;
}

.gallery-item{
    flex:0 0 25%;
    padding:12px;
    box-sizing:border-box;
}

.gallery-item img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:18px;
    display:block;
}

.gallery-item img:hover{
    transform:scale(1.05);
    transition:.4s;
}

@media(max-width:992px){

.gallery-item{
    flex:0 0 50%;
}

}


@media (max-width: 767px) {
  .hero-section {
    align-items: flex-start;
    padding-top: clamp(7rem, 19vh, 9rem);
    padding-bottom: 2rem;
  }
  .hero-bg-image {
    object-position: 62% center;
  }
  .hero-overlay {
    background: linear-gradient(
      90deg,
      rgba(39, 59, 47, 0.78) 0%,
      rgba(39, 59, 47, 0.58) 52%,
      rgba(39, 59, 47, 0.24) 100%
    );
  }
  .hero-container {
    padding-inline: clamp(1rem, 5vw, 1.25rem);
  }
  .hero-card {
    width: min(100%, 30rem);
    margin-inline: auto;
    /* background: rgba(0, 0, 0, 0.5); */
  }
  .hero-title {
    font-size: clamp(2rem, 9vw, 2.35rem) !important;
    line-height: 1.15;
  }
  .hero-title br {
    display: none;
  }
  .hero-copy {
    max-width: 100%;
    font-size: clamp(1rem, 4vw, 1.075rem);
    line-height: 1.6;
  }

.gallery-item{
    flex:0 0 100%;
}
}
@media (max-width: 480px) {
  .hero-card {
    padding: 1.5rem;
    border-radius: 1.25rem;
  }
  .hero-actions {
    width: 100%;
    align-items: stretch;
  }
  .hero-action-link {
    width: 100%;
    min-width: 0;
    padding-inline: 1.25rem;
  }
}
@media (max-width: 360px) {
  .hero-container {
    padding-inline: 0.75rem;
  }
  .hero-card {
    padding: 1.25rem;
  }
  .hero-title {
    font-size: 1.85rem;
  }
  .hero-copy {
    font-size: 0.95rem;
  }
}
@media (max-height: 700px) and (min-width: 768px) {
  .hero-section {
    align-items: flex-start;
    padding-top: 6.5rem;
    padding-bottom: 1.5rem;
  }
  .hero-card {
    padding: 2rem;
  }
  .hero-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}
.reveal.active {
  opacity: 0.9;
  transform: translateY(0);
}
@keyframes bounce-slow {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.animate-bounce-slow {
  animation: bounce-slow 2s infinite;
}
.pattern-overlay {
  background-image: radial-gradient(
    circle at 2px 2px,
    rgba(115, 120, 115, 0.05) 1px,
    transparent 0
  );
  background-size: 32px 32px;
}
.masonry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-auto-rows: 255px;
  gap: 24px;
}
.masonry-item-tall {
  grid-row: span 2;
}
.masonry-item-wide {
  grid-column: span 2;
}
@media (max-width: 768px) {
  .masonry-item-wide {
    grid-column: span 1;
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .hero-container {
    padding-inline: clamp(1rem, 2vw, 1.5rem);
  }
  .hero-card {
    margin: 75px 0 50px 0;
    width: min(100%, 41rem);
  }
}
