/* ======================================================
   GENERAL
====================================================== */

body {
  margin: 0;
  padding: 0;
  background: #16191d;
  color: #ffffff;
  font-family: "Manrope",sans-serif;
}

a {
  text-decoration: none;
}

/* ======================================================
   HERO
====================================================== */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  height: 430px;
  overflow: hidden;
  background-image: url("../img/gallery/hero.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient( 90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.72) 35%, rgba(0,0,0,.30) 65%, rgba(0,0,0,0) 100% );
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 560px;
}

.hero-brand {
  display: block;
  font-size: .90rem;
  letter-spacing: .30em;
  text-transform: uppercase;
  color: #d6d6d6;
  margin-bottom: 12px;
}

.hero h1 {
  margin: 0;
  font-size: 4rem;
  font-weight: 300;
  line-height: 1.1;
  text-align: left;
}

.hero-line {
  width: 90px;
  height: 3px;
  margin: 24px 0;
  background: linear-gradient( 90deg, #ff8c2f, #ffd08a );
}

.hero p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #d8d8d8;
  max-width: 520px;
}

/* ======================================================
   GALLERY
====================================================== */

.photo-gallery {
  padding: 24px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
}

.gallery-item {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #000;
}

.gallery-item img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.08);
}

.panorama {
  grid-column: 1/-1;
}

.panorama img {
  aspect-ratio: 21/8;
}

/* ======================================================
   BAGUETTEBOX
====================================================== */

#baguetteBox-overlay {
  background: rgba(0,0,0,.96);
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width:992px) {
  .gallery-grid {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width:768px) {
  .hero {
    height: 340px;
  }
}

@media (max-width:768px) {
  .hero h1 {
    font-size: 2.8rem;
  }
}

@media (max-width:768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width:768px) {
  .panorama {
    grid-column: auto;
  }
}

@media (max-width:768px) {
  .hero p {
    font-size: .95rem;
  }
}

