/* ========== JOURNEY/CATEGORIES SECTION ========== */
.journey-section {
    padding: 80px 0;
    background: white;
}

.category-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
}

.category-card {
    position: relative;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
}

.category-card:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(201, 21, 30, 0.3);
    z-index: 10;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-card:hover img {
    transform: scale(1.2);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 10px;
    color: white;
    font-weight: 700;
    text-align: center;
    font-size: 0.85rem;
}

/* Big Image Display */
.category-display {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-top: 30px;
}

.category-big-image {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.category-info {
    margin-top: 20px;
    text-align: center;
}

.category-name {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: "Playfair Display", serif;
}

.category-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

@media (min-width: 576px) {
    .category-card {
        width: 150px;
        height: 150px;
    }

    .category-big-image {
        height: 350px;
    }
}

@media (min-width: 768px) {
    .category-card {
        width: 160px;
        height: 160px;
    }

    .category-big-image {
        height: 400px;
    }
}

@media (min-width: 992px) {
    .category-card {
        width: 180px;
        height: 180px;
    }

    .category-big-image {
        height: 500px;
    }
}

@media (min-width: 1200px) {
    .category-big-image {
        height: 600px;
    }
}

@media (max-width: 575.98px) {
    .category-cards {
        gap: 10px;
    }

    .category-card {
        width: 120px;
        height: 120px;
    }
}
