/* Tourism (Food & Attractions) Styles */

.tourism-page {
    padding-bottom: 80px;
    background-color: #fcfcfc;
}

/* Hero Section */
.tourism-page .hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fdfaf5 0%, #f7f1e6 100%);
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 60px;
}

.tourism-page .page-title {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 800;
}

.tourism-page .page-subtitle {
    font-size: 1.2rem;
    color: var(--subtext-color);
    letter-spacing: 2px;
}

/* Sections */
.tourism-section {
    margin-bottom: 80px;
}

.section-header {
    margin-bottom: 40px;
    text-align: center;
}

.section-title-line {
    font-size: 2.2rem;
    color: var(--primary-color);
    display: inline-block;
    position: relative;
    padding-bottom: 15px;
}

.section-title-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

/* Cards */
.tourism-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.tourism-card {
    display: flex;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.tourism-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-image {
    flex: 0 0 40%;
    min-height: 300px;
}

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

.card-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.card-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.card-metadata {
    font-size: 0.95rem;
    padding: 15px;
    background: #fdfaf5;
    border-radius: 8px;
    color: var(--subtext-color);
    border-left: 4px solid var(--accent-color);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .card-image {
        flex: 0 0 45%;
    }
}

@media (max-width: 768px) {
    .tourism-page .hero-section {
        padding: 50px 0;
    }

    .tourism-page .page-title {
        font-size: 2.22rem;
    }

    .tourism-card {
        flex-direction: column;
    }

    .card-image {
        flex: none;
        height: 250px;
    }

    .card-content {
        padding: 25px;
    }

    .card-title {
        font-size: 1.5rem;
    }

    .card-description {
        font-size: 1rem;
    }
}