﻿
.ttd-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), url('@(string.IsNullOrEmpty(dest.HeroImageUrl) ? "/images/default-hero.jpg" : dest.HeroImageUrl)');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: white;
    text-align: center;
}

.ttd-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.ttd-hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.category-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.category-pill {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

    .category-pill:hover {
        background: white;
        color: #1f2937;
    }

.pill-count {
    background: rgba(255,255,255,0.3);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    margin-left: 6px;
}

.section {
    padding: 60px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

    .section-header h2 {
        font-size: 1.75rem;
        font-weight: 600;
        margin: 0;
    }

.see-all-link {
    color: #6366f1;
    text-decoration: none;
    font-weight: 500;
}

    .see-all-link:hover {
        text-decoration: underline;
    }

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.attraction-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .attraction-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    }

    .attraction-card a {
        text-decoration: none;
        color: inherit;
        display: block;
    }

.attraction-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

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

.attraction-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-featured {
    background: #f59e0b;
    color: white;
}

.badge-gem {
    background: #8b5cf6;
    color: white;
}

.attraction-content {
    padding: 16px;
}

.attraction-category {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: #6366f1;
    margin-bottom: 6px;
}

.attraction-title {
    font-size: 17px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 8px 0;
}

.attraction-description {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 12px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.attraction-tip {
    font-size: 13px;
    color: #059669;
    background: #ecfdf5;
    padding: 8px 12px;
    border-radius: 8px;
    margin-bottom: 12px;
}

.attraction-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #f3f4f6;
}

.attraction-price {
    font-size: 14px;
    color: #374151;
}

    .attraction-price strong {
        font-size: 18px;
        color: #1f2937;
    }

.attraction-cta {
    font-size: 14px;
    font-weight: 600;
    color: #6366f1;
}

.hidden-gems-section {
    background: #faf5ff;
}

.gems-badge {
    display: inline-block;
    background: #8b5cf6;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
}

.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
    color: white;
    text-align: center;
}

    .cta-section h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #1f2937;
    padding: 16px 24px;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

    .cta-btn:hover {
        transform: translateY(-2px);
        color: #1f2937;
    }

.cta-icon {
    font-size: 24px;
}

.cta-text strong {
    display: block;
    font-size: 16px;
}

.cta-text small {
    font-size: 12px;
    color: #6b7280;
}

.related-section {
    background: #f9fafb;
    padding: 60px 0;
}

.related-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.related-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    border: 1px solid #e5e7eb;
    transition: border-color 0.2s ease;
}

    .related-card:hover {
        border-color: #6366f1;
    }

    .related-card strong {
        display: block;
        color: #1f2937;
        margin-bottom: 4px;
    }

    .related-card span {
        font-size: 14px;
        color: #6b7280;
    }

@@media (max-width: 640px) {
    .ttd-hero h1 {
        font-size: 1.75rem;
    }

    .attractions-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }
}


