/* ----- GALLERIES ----- */

/* Card Styling */
.card-gallery {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #000;
    color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 200px;
    width: 100%;
    max-width: 1200px;
    margin: 2%;
}
.card-gallery:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

/* Background Image Overlay */
.card-gallery::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    opacity: 0.7;
}
.card-gallery .content {
    position: relative;
    z-index: 2;
    display: flex;
    flex: 1;
    flex-direction: row;
    align-items: center;
    padding: 20px;
}

/* Left Section (Date) */
.card-gallery-left {
    text-align: center;
    margin-right: 20px;
    flex-shrink: 0;
}
.card-gallery-left h1 {
    font-size: 4rem;
    margin: 0;
    color: #ff414d;
}
.card-gallery-left h6 {
    font-size: 1rem;
    margin: 0;
    color: #fff;
}

/* Middle Section (Details) */
.card-gallery-middle {
    flex-grow: 1;
}
.card-gallery-middle h2 {
    font-size: 1.5rem;
    margin: 0;
    color: #fff;
}
.card-gallery-middle p {
    font-size: 0.9rem;
    margin: 0;
    color: #ddd;
}

/* Right Section (Button) */
.card-gallery-right {
    margin-left: auto;
}
.card-gallery-right .btn {
    background-color: #ff414d;
    border: none;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    transition: background-color 0.3s ease;
}
.card-gallery-right .btn:hover {
    background-color: #ff737d;
}

/* Responsive Design */
@media (max-width: 768px) {
    .card-gallery {
        flex-direction: column;
        height: auto;
    }
    .card-gallery .content {
        flex-direction: column;
    }
    .card-gallery-left {
        margin-bottom: 15px;
    }
}

/* ----- GALLERIES ----- */
