.route-detail-section {
    padding-top: 120px; /* Adjust for fixed header */
    background-color: #FDFBF7;
    color: #4A3B2C;
}

.route-header {
    text-align: center;
    margin-bottom: 60px;
}

.route-title {
    font-size: 64px;
    color: #2C241B;
    margin-bottom: 15px;
    font-family: 'ModernSerif', serif;
}

.route-subtitle {
    font-size: 28px;
    color: #7D8450;
    font-family: 'Handwritten', cursive;
}

.route-meta {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    font-size: 20px;
    color: #5D534A;
}

.route-meta span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.route-meta i {
    color: #C17C5C;
    font-size: 24px;
}

.route-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
    margin-top: 80px;
}

.route-map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.route-map-wrapper iframe {
    width: 100%;
    height: 500px;
    border: 0;
}

.route-description {
    font-size: 20px;
    line-height: 1.8;
    color: #5D534A;
}

.route-description h3 {
    font-size: 36px;
    color: #2C241B;
    margin-bottom: 25px;
    font-family: 'ModernSerif', serif;
}

.route-description p {
    margin-bottom: 20px;
}

.points-of-interest {
    margin-top: 60px;
}

.points-of-interest h3 {
    font-size: 36px;
    color: #2C241B;
    margin-bottom: 30px;
    font-family: 'ModernSerif', serif;
    text-align: center;
}

.poi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.poi-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.poi-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.poi-img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.poi-info {
    padding: 25px;
}

.poi-name {
    font-size: 24px;
    margin-bottom: 10px;
    color: #4A3B2C;
    font-family: 'ModernSerif', serif;
}

.poi-desc {
    font-size: 16px;
    color: #888;
    line-height: 1.5;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 992px) {
    .route-title {
        font-size: 52px;
    }

    .route-subtitle {
        font-size: 24px;
    }

    .route-meta {
        gap: 30px;
        font-size: 18px;
    }

    .route-meta i {
        font-size: 22px;
    }

    .route-content-grid {
        grid-template-columns: 1fr; /* Stack columns on smaller screens */
        gap: 40px;
        margin-top: 60px;
    }

    .route-map-wrapper iframe {
        height: 400px;
    }

    .route-description {
        font-size: 18px;
    }

    .route-description h3 {
        font-size: 30px;
    }

    .points-of-interest h3 {
        font-size: 30px;
    }

    .poi-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }

    .poi-img {
        height: 200px;
    }

    .poi-name {
        font-size: 22px;
    }

    .poi-desc {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .route-title {
        font-size: 44px;
    }

    .route-subtitle {
        font-size: 20px;
    }

    .route-meta {
        gap: 20px;
        font-size: 16px;
    }

    .route-meta i {
        font-size: 20px;
    }

    .route-content-grid {
        margin-top: 40px;
        gap: 30px;
    }

    .route-map-wrapper iframe {
        height: 350px;
    }

    .route-description {
        font-size: 16px;
    }

    .route-description h3 {
        font-size: 26px;
    }

    .points-of-interest h3 {
        font-size: 26px;
    }

    .poi-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .poi-img {
        height: 180px;
    }

    .poi-name {
        font-size: 20px;
    }

    .poi-desc {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .route-title {
        font-size: 36px;
    }

    .route-subtitle {
        font-size: 18px;
    }

    .route-meta {
        flex-direction: column;
        gap: 10px;
        font-size: 14px;
    }

    .route-meta i {
        font-size: 18px;
    }

    .route-map-wrapper iframe {
        height: 250px;
    }

    .route-description {
        font-size: 14px;
    }

    .route-description h3 {
        font-size: 22px;
    }

    .points-of-interest h3 {
        font-size: 22px;
    }

    .poi-grid {
        grid-template-columns: 1fr; /* Stack items on very small screens */
        gap: 15px;
    }

    .poi-img {
        height: 150px;
    }

    .poi-name {
        font-size: 18px;
    }

    .poi-desc {
        font-size: 13px;
    }
}

@media (max-width: 300px) {
    .route-title {
        font-size: 28px;
    }

    .route-subtitle {
        font-size: 15px;
    }

    .route-meta {
        font-size: 12px;
    }

    .route-meta i {
        font-size: 16px;
    }

    .route-map-wrapper iframe {
        height: 200px;
    }

    .route-description h3 {
        font-size: 18px;
    }

    .poi-name {
        font-size: 16px;
    }

    .poi-desc {
        font-size: 11px;
    }
}
