* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.custom-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}
.custom-card:hover {
    transform: translateY(-10px);
}
.custom-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.card-text-overlay {
    position: absolute;
    top: 50%;
    left: 32%;
    transform: translateY(-50%);
    color: white;
    font-size: 1.7rem;
    font-weight: bold;
    text-shadow: 8px 8px 12px rgba(0, 0, 0, 0.8);
    z-index: 2;
}

.card-text-overlay-center {
    position: absolute;
    top: 50%;
    left: 44%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.7rem;
    font-weight: bold;
    text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
    .card-text-overlay {
        left: 12%;
    }
}

.text-gold {
    color: #816222;
}

.btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 50%;
}
.custom-btn {
    background-color: #5f9394;
    color: #fff;
}

.text-white {
    color: #fff;
}

.card-text-overlay-lastcard {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2.3rem;
    font-weight: bold;
    text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.8);
}

.custom-card-link {
    text-decoration: none;
    color: inherit;
}

/*
.custom-card-1 {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.custom-card-1:hover {
  transform: translateY(-10px);
}
.custom-card-1 img {
  width: 100%;
  height: auto;
  object-fit: cover;
} */
