/* destination.css - Advanced UI/UX for Destination Pages (Iteration 2) */

:root {
    --primary: #D4AF37;
    --primary-dark: #b08d27;
    --dark-bg: #0f172a;
    --dark-surface: #1e293b;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles & Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* Glassmorphism Classes */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 24px;
}

/* Hero Section */
.destination-hero {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(30, 41, 59, 0.85)), url('../images/urbania-1.webp') center/cover fixed;
    padding: 120px 0 140px;
    text-align: center;
    position: relative;
    color: white;
}

.destination-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, #f8fafc, transparent);
    z-index: 1;
}

.destination-hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.5);
    backdrop-filter: blur(8px);
    color: var(--primary);
}

.destination-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin: 20px 0;
    letter-spacing: -1.5px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.destination-hero h1 span {
    background: linear-gradient(to right, #D4AF37, #fdf0a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Main Sections Background */
main { background-color: #f8fafc; }

/* Overview Grid */
.overview-section { padding: 80px 0 40px; }
.overview-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.overview-text h2 { font-size: 2.5rem; color: var(--dark-surface); font-weight: 800; }
.overview-text p { font-size: 1.1rem; color: #475569; line-height: 1.8; margin-bottom: 25px; }

/* Route Quick Facts Glass Card */
.route-quick-facts {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    padding: 25px;
}
.fact-item { display: flex; align-items: center; gap: 15px; }
.fact-item i { font-size: 2.2rem; color: var(--primary); }
.fact-details span { font-size: 0.85rem; color: #64748b; text-transform: uppercase; letter-spacing: 1px; }
.fact-details strong { font-size: 1.2rem; color: var(--dark-surface); }

/* Weather & Highlights Grid */
.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}
.detail-card {
    padding: 30px;
    height: 100%;
}
.detail-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark-surface);
    display: flex;
    align-items: center;
    gap: 10px;
}
.detail-card h3 i { color: var(--primary); }
.highlights-list { list-style: none; padding: 0; }
.highlights-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #475569;
}
.highlights-list li::before {
    content: '\f111';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 14px;
    font-size: 0.5rem;
    color: var(--primary);
}

/* Inclusions vs Exclusions */
.inclusions-section { padding: 60px 0; }
.inc-exc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}
.inc-card { padding: 40px; }
.inc-card h3 { margin-bottom: 25px; font-size: 1.5rem; }
.inc-card.included h3 { color: #10b981; }
.inc-card.excluded h3 { color: #ef4444; }
.check-list { list-style: none; padding: 0; }
.check-list li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    color: #334155;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.check-list li:last-child { border-bottom: none; }
.check-list.green i { color: #10b981; font-size: 1.2rem; }
.check-list.red i { color: #ef4444; font-size: 1.2rem; }

/* Pricing Cards */
.pricing-section { padding: 80px 0; }
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    z-index: 1;
}
.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    z-index: 2;
}
.pricing-card.popular {
    background: var(--dark-bg);
    color: white;
    transform: scale(1.05);
}
.pricing-card.popular:hover { transform: scale(1.05) translateY(-15px); }
.pricing-card.popular .pricing-header h3, 
.pricing-card.popular .price, 
.pricing-card.popular .pricing-features li { color: white; }
.pricing-card.popular .price .period { color: rgba(255,255,255,0.7); }

.price .amount { font-size: 3rem; font-weight: 800; }
.pricing-features li i { color: var(--primary); }

.btn-primary-block {
    display: block; width: 100%; text-align: center;
    background: var(--dark-surface); color: white;
    padding: 18px; border-radius: 16px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    transition: var(--transition-smooth);
}
.btn-primary-block:hover { background: var(--primary); color: white; }
.popular .btn-primary-block {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    animation: pulse-glow 2s infinite;
}

/* Interior Gallery */
.gallery-section { padding: 80px 0; background: white; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    height: 250px;
}
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: var(--transition-smooth);
}
.gallery-item:hover img { transform: scale(1.1); }

/* Responsive */
@media (max-width: 991px) {
    .overview-grid, .details-grid, .inc-exc-grid, .pricing-cards, .gallery-grid {
        grid-template-columns: 1fr;
    }
    .pricing-card.popular { transform: scale(1); }
    .pricing-card.popular:hover { transform: translateY(-10px); }
    .route-quick-facts { flex-direction: column; }
}
@media (max-width: 768px) {
    .destination-hero h1 { font-size: 2.8rem; }
    .gallery-item { height: 200px; }
}
