/*Start Menu*/
.menu {
  padding: 60px;
}

.menu .box-model {
  display: none;
  position: fixed;
  height: 100%;
  top: 0;
  z-index: 20;
  background-color: rgba(0, 0, 0, 0.7);
}

.menu .box-model.active {
  display: block;
}

.menu .box-model.active body {
  overflow: hidden;
}

.menu .box-model .close {
  color: var(--color-tertiary);
  right: 25px;
  top: 10px;
  z-index: 20;
}

.menu .box-model .arrow .arrow-right,
.menu .box-model .arrow .arrow-left {
  width: 40px;
  height: 40px;
  right: 20px;
  top: 50%;
  border-right: 2px solid var(--color-secondary);
  border-top: 2px solid var(--color-secondary);
  transform: rotate(45deg);
  z-index: 20;
}

.menu .box-model .arrow .arrow-left {
  left: 20px;
  transform: rotate(-135deg);
}

.menu .box-image-container {
  height: 100%;
}

.menu .box-image-container .box-image img.active {
  animation: scale 0.5s;
}

@keyframes scale {
  from {
      transform: scale(0, 0);
  }

  to {
      transform: scale(1, 1);
  }
}

.menu .menu-image-container {
  flex: 0 0 56%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.menu .menu-image-container .image {
  margin: 0 16px 16px 0;
  flex: calc(50% - 16px);
}

.menu .text {
  flex: 1;
  padding: 40px 0 0 56px;
}

.menu .text h3 {
  color: var(--color-tertiary);
}

.menu .text .fa-asterisk {
  color: var(--color-muted);
}

/* Card styling — overlay efekti */
.card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  width: 100%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.card a {
  display: block;
}

.card img {
  width: 100%;
  height: 185px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.card-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px 14px 14px;
  background: linear-gradient(transparent, rgba(20, 8, 0, 0.82));
  color: #fff;
  font-family: 'Cabin', sans-serif;
  font-size: 11px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  transition: background 0.35s ease;
}

.card:hover img {
  transform: scale(1.07);
}

.card:hover .card-title {
  background: linear-gradient(transparent, rgba(169, 103, 0, 0.9));
}

.card:hover {
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.26);
  transform: translateY(-5px);
}
/*End Menu*/
