/* DECK - HEADER */
.deck-header {
    width: 100%;
    height: 400px;
    position: relative;
    user-select: none;
}

.deck-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.deck-header-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    backdrop-filter: brightness(50%) blur(4px);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.deck-header-overlay h2 {
    font-size: 3rem;
    text-align: center;
}

/* DECK - Content */
.decks-content {
    width: 100%;
    padding: 50px 0px;
    background-color: #f1f1f1;
}

.decks-row {
    margin: 40px 0px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 100px;
    row-gap: 40px;
}

.decks-row img {
    width: 500px;
    max-width: 80vw;
    height: 350px;
    object-fit: cover;
}

.decks-row-content {
    max-width: 80vw;
    width: 600px;
}

.decks-row-content .blue-line{
    margin: 0 0 10px 0;
}

.decks-row-content h3 {
    font-size: 2rem;
    margin: 0 0 10px 0;
}

.decks-row-content h5 {
    font-size: 1.25rem;
    margin: 0 0 10px 0;
}

/* DECKS - CARDS */
.decks-cards {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
    background-color: #e9e9e9;
    padding: 75px 0;
}

.deck-card {
    padding: 10px 20px;
    background-color: white;
    transition: transform 0.3s linear;
    display: flex;
    flex-direction: column;
    width: 300px;
    max-width: 80vw;
    min-height: fit-content;
    height: 400px;
    border-radius: 5px;
    box-shadow: 0px 0px 30px -20px black;
}

.deck-card-image-wrap {
    width: 100%;
    height: 40%;
    border-radius: 5px;
    overflow: hidden;
}

.deck-card-image-wrap img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.deck-card:hover {
    transform: translateY(-10px);
}

.deck-card h4 {
    margin: 10px 0px;
}

.deck-card p {
    margin: 0 0 30px 0;
}

.contact-card {
    text-align: center;
    justify-content: space-evenly;
}

.deck-card .button {
    background-color: var(--main-blue-lighter);
    color: white;
    text-align: center;
}

.deck-card .button:hover {
    background-color: var(--main-blue-darker);
}