/* ====== NAVBAR ====== */
#mainNavbar {
  transition: background-color 0.4s, box-shadow 0.4s, opacity 0.4s;
  background-color: transparent;
  opacity: 1;
  z-index: 1100;
}

#mainNavbar.hidden {
  opacity: 0;
}

#mainNavbar.scrolled {
  background-color: rgba(0, 0, 0, 0.85);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  opacity: 1;
}

/* ====== DRAWER MENU ====== */
.drawer-menu {
  position: fixed;
  top: 0;
  right: -250px;
  /* hidden initially */
  width: 250px;
  height: 100%;
  background-color: #223748;
  box-shadow: -2px 0 6px rgba(0, 0, 0, 0.3);
  transition: right 0.3s ease;
  padding-top: 60px;
  z-index: 1050;
  /* below navbar */
}

.drawer-menu ul {
  list-style: none;
  padding-left: 0;
}

.drawer-menu ul li {
  margin: 20px 0;
  text-align: center;
}

.drawer-menu ul li a {
  text-decoration: none;
  /* color: #333; */
  font-size: 18px;
}

.drawer-menu.open {
  right: 0;
}

/* Close button style */
.drawer-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1060;
}

/* .drawer-close-btn:hover {
  color: red;
} */

/* Drawer only on small screens */
@media (min-width: 992px) {
  #drawerToggle {
    display: none;
    /* hide drawer button */
  }

  #drawerMenu {
    display: none;
    /* no drawer on large screens */
  }
}

/* ====== HEADER HERO ====== */
.hero {
  padding: -10px;
  height: 40vh;
  background-image: url('../img/pexels-ekrulila-2203077.jpg');
  background-size: cover;
  background-position: center left;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.hero h1 h2 {
  font-size: 3rem;
  max-width: 894px;
  line-height: 1.2;
}

/* ====== HEADER HERO MIRROR ====== */
.hero-mirror {
  background-color: #f5f5f5;
  background-image: url('../img/wood.jpg');
  background-repeat: repeat;
  background-position: top right;
  background-size: 400px;
  padding: 80px 20px;
}

/* ====== SQUARE GRID ITEMS ====== */
/* .grid-item {
  aspect-ratio: 1 / 1;
  keeps square shape
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
} */


/* ====== SQUARE GRID ITEMS ====== */
.grid-item {
  aspect-ratio: 1.5 / 1;
  /* keeps square shape */
  /* /* display: flex; */
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  /* fills the column height */
}

.grid-item img {
  width: 100%;
  height: 100%;
  */ object-fit: cover;
  /* fills square without distortion */
}

.grid-item-txt {
  height: auto;
  /* allow text to expand naturally */
  min-width: 0;
  /* prevents pushing row width */
  word-break: break-word;
  /* wrap long words */
}

.row.g-0 {
  overflow: hidden;
  /* prevent row content from overflowing viewport */
}