NEW_FILE_CODE
    /* ===== Themed Journeys Page Styles ===== */

    /* Overall Background - Light Brown/Beige */
main {
    background-color: #f5f3ef;
    min-height: calc(100vh - var(--header-height, 72px));
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Page Header Section */
.themed-journeys-header {
    padding-top: 92px;
    padding-bottom: 40px;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #2c2c2c;
    margin: 0;
    line-height: 1.3;
}

/* Theme Cards Grid */
.theme-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-bottom: 80px;
}

/* Individual Theme Card */
.theme-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.theme-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.theme-card-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.theme-card:hover .theme-card-bg {
    transform: scale(1.05);
}

/* Gradient Overlay */
.theme-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: linear-gradient(to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.4) 40%,
    transparent 100%);
    z-index: 1;
}

/* Card Content */
.theme-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    z-index: 2;
    color: #fff;
}

.theme-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.theme-card-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .theme-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (max-width: 992px) {
    .theme-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .page-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .themed-journeys-header {
        padding-top: 20px;
        padding-bottom: 30px;
    }

    .theme-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding-bottom: 60px;
    }

    .theme-card-content {
        padding: 16px;
    }

    .theme-card-title {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .theme-card-desc {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .page-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .theme-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding-bottom: 40px;
    }

    .theme-card {
        aspect-ratio: 4 / 3;
    }

    .theme-card-content {
        padding: 20px;
    }

    .theme-card-title {
        font-size: 1.15rem;
        margin-bottom: 10px;
    }

    .theme-card-desc {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .page-title {
        font-size: 1.35rem;
    }
}

/* Tablet Portrait - Single Column */
@media (max-width: 375px) {
    .theme-card-content {
        padding: 16px;
    }

    .theme-card-title {
        font-size: 1.05rem;
    }

    .theme-card-desc {
        font-size: 0.8rem;
    }
}
