@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #121620;
    color: #fff;
}

.container {
    width: 90%;
    margin: auto;
    padding: 60px 0;
}

.section-title {
    color: #9acd32;
    font-size: 36px;
    font-family: 'Pacifico', cursive;
    margin-bottom: 50px;
}

.card-row {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
}

.card-row.center {
    justify-content: center;
}

.card {
    position: relative;
    width: 48%;
    height: 260px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(154, 205, 50, 0.6);
    transition: transform 0.3s ease;
     object-fit: contain;
}

.card.large {
    width: 55%;
    
}
.card.large img {
    width: auto;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    margin: auto;
    position: absolute;
    inset: 0;
}
.card.large {
    box-shadow: 
        0 0 25px rgba(154, 205, 50, 0.6),
        inset 0 0 40px rgba(255,255,255,0.05);
}


.card:hover {
    transform: scale(1.03);
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card::after {
    content: "";
    position: absolute;
    inset: 0;
    /* background: linear-gradient(to right, rgba(0,0,0,0.75), rgba(0,0,0,0.1)); */
}
.card-link {
    position: absolute;
    inset: 0;
    z-index: 3;
    cursor: pointer;
    text-indent: -9999px; /* hide text */
}
.card:hover {
    transform: scale(1.03);
    box-shadow: 0 0 30px rgba(154, 205, 50, 0.9);
}


.label {
    position: absolute;
    bottom: 25px;
    right: 30px;
    font-size: 34px;
    font-family: 'Pacifico', cursive;
    z-index: 2;
}
.top-logo {
    position: fixed;
    top: 25px;
    right: 70px;
    z-index: 1000;
}

.top-logo img {
    height: 200px;     /* adjust size here */
    width: auto;
}

.top-logo img {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(154, 205, 50, 0.6));
    transition: filter 0.3s ease, transform 0.3s ease;
}

.top-logo img:hover {
    filter: drop-shadow(0 0 14px rgba(154, 205, 50, 0.9));
    transform: scale(1.05);
}


/*    Flowers    */
.card-row.three {
    justify-content: space-between;
}

.card-row.three .card {
    width: 32%;
    height: 280px;
}
.card::after {
    content: "";
    position: absolute;
    inset: 0;
    /* background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.8),
        rgba(0, 0, 0, 0.15) */
    );
}
.card:hover {
    transform: scale(1.03);
    box-shadow: 
        0 0 25px rgba(154, 205, 50, 0.8),
        0 0 40px rgba(200, 40, 40, 0.4);
}
@media (max-width: 900px) {
    .card-row {
        flex-direction: column;
    }

    .card,
    .card.large,
    .card-row.three .card {
        width: 100%;
        height: 240px;
    }

    .label {
        font-size: 28px;
    }
}
.card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.6s ease forwards;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
