/* Home Page Color Variables */
:root {
    --primary-color: #2E86AB;
    --secondary-color: #A23B72;
    --accent-color: #F18F01;
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFB;
    --text-primary: #2C3E50;
    --text-secondary: #5A6C7D;
    --text-light: #8492A6;
    --text-dark: #2C3E50;
    --text-muted: #5A6C7D;
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(46, 134, 171, 0.18);
    --shadow-light: 0 8px 32px rgba(46, 134, 171, 0.12);
    --shadow-medium: 0 12px 40px rgba(46, 134, 171, 0.15);
    --shadow-heavy: 0 20px 60px rgba(46, 134, 171, 0.2);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 16px;
    --border-radius-lg: 24px;
}

body {
    background: linear-gradient(135deg, #f0f4f8 0%, #e9eef3 100%);
    color: var(--text-primary);
    font-family: 'Inter', 'Playfair Display', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
}

.destination-simple-hero {
    position: relative;
    width: 100%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f4f8 0%, #e9eef3 100%);
}
.simple-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://app.ceylonroundtours.com/public/img/destination/201438106126_1728292324_n.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
    opacity: 0.7;
}

/* Polonnaruwa specific hero background */
.polonnaruwa-page .simple-hero-bg {
    background-image: url('https://app.ceylonroundtours.com/public/img/destination/201792317386_1728286080_n.jpg');
}
.simple-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8rem 1rem 3rem 1rem;
}
.simple-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.2rem;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    color: #ffffff;
    padding: 1.5rem 2.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.simple-hero-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.simple-hero-title:hover::before {
    left: 100%;
}
.simple-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    margin-top: 1rem;
}

.breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb .separator {
    margin: 0 0.5rem;
    opacity: 0.7;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

/* Main Content Area */
.destination-main {
    background: linear-gradient(135deg, #f8fafb 0%, #f0f7ff 100%);
    color: var(--text-primary);
    padding: 6rem 0;
}
/* Sticky Sidebar - Robust Solution */
.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
}

.main-content {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.content-section {
    margin-bottom: 3rem;
}

.content-section:last-child {
    margin-bottom: 0;
}

.content-section h2, .sidebar-card h3 {
    color: var(--primary-color);
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
}

.content-section p, .sidebar-card p, .info-list .value {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* Highlights Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 24px rgba(44, 83, 100, 0.08);
    padding: 2rem 1.2rem 1.5rem 1.2rem;
}

.highlight-item:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.highlight-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 3rem;
}

.highlight-icon i {
    display: inline-block;
    width: auto;
    height: auto;
    opacity: 1 !important;
    visibility: visible !important;
    color: var(--primary-color) !important;
}

/* Fallback for Font Awesome icons */
.highlight-icon i.fa-mountain::before { content: "🏔️"; }
.highlight-icon i.fa-crown::before { content: "👑"; }
.highlight-icon i.fa-temple-buddhist::before { content: "🏛️"; }
.highlight-icon i.fa-landmark::before { content: "🏛️"; }

.highlight-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.highlight-content p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Timing Info */
.timing-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.timing-item {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.timing-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.timing-item h4 i {
    color: #667eea;
}

.timing-item p {
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

/* Sidebar */
.sidebar {
    display: none;
}

/* Info List */
.info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item .label {
    font-weight: 600;
    color: #495057;
}

.info-item .value {
    color: #6c757d;
    text-align: right;
}

/* Tour Links */
.tour-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tour-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.2s;
    border: 1px solid transparent;
}

.tour-link:hover {
    background: white;
    border-color: #667eea;
    color: var(--accent-color);
    transform: translateX(5px);
}

.tour-link i {
    color: #667eea;
    font-size: 1.1rem;
}

/* CTA Card */
.cta-card {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-align: center;
}

.cta-card h3 {
    color: white;
}

.cta-card h3::after {
    background: rgba(255,255,255,0.3);
}

.cta-card p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cta-card .btn {
    margin: 0.5rem;
    min-width: 120px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sidebar {
        position: static;
    }
    
    .main-content {
        padding: 2rem;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-badges {
        justify-content: center;
    }
    
    .content-section h2 {
        font-size: 1.75rem;
    }
    
    .main-content {
        padding: 1.5rem;
    }
    
    .sidebar-card {
        padding: 1.5rem;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timing-info {
        grid-template-columns: 1fr;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .info-item .value {
        text-align: left;
    }
    
    .simple-hero-title {
        padding: 1rem 1.5rem;
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .simple-hero-subtitle {
        padding: 0.8rem 1.5rem;
        font-size: 1.2rem;
    }
    
    .simple-hero-content {
        padding: 6rem 1rem 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .destination-main {
        padding: 2rem 0;
    }
    
    .main-content {
        padding: 1rem;
    }
    
    .sidebar-card {
        padding: 1rem;
    }
    
    .highlight-item {
        padding: 1rem;
    }
    
    .highlight-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .simple-hero-content {
        padding: 5rem 1rem 2rem 1rem;
    }
}

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

.content-section,
.sidebar-card {
    animation: fadeInUp 0.6s ease forwards;
}

.content-section:nth-child(1) { animation-delay: 0.1s; }
.content-section:nth-child(2) { animation-delay: 0.2s; }
.content-section:nth-child(3) { animation-delay: 0.3s; }
.content-section:nth-child(4) { animation-delay: 0.4s; }

.sidebar-card:nth-child(1) { animation-delay: 0.2s; }
.sidebar-card:nth-child(2) { animation-delay: 0.3s; }
.sidebar-card:nth-child(3) { animation-delay: 0.4s; }

/* Print Styles */
@media print {
    .destination-hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .hero-background img {
        display: none;
    }
    
    .hero-overlay {
        background: white;
    }
    
    .hero-content {
        color: black;
    }
    
    .main-content,
    .sidebar-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .cta-card {
        background: white !important;
        color: black !important;
    }
} 

.sidebar-card.cta-card {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    padding: 2rem 1.2rem 1.5rem 1.2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}
.sidebar-card.cta-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.sidebar-card.cta-card p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
}
.sidebar-card.cta-card .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    margin-right: 0.7rem;
    box-shadow: var(--shadow-medium);
}
.sidebar-card.cta-card .btn-secondary {
    background: #fff;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-medium);
}
.sidebar-card.cta-card .btn-primary:hover, .sidebar-card.cta-card .btn-secondary:hover {
    filter: brightness(0.95);
    transform: translateY(-2px);
} 

.destination-gallery {
    background: var(--bg-light);
    padding: 3rem 0 2rem 0;
}
.gallery-title {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}
.gallery-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 24px rgba(44, 83, 100, 0.10);
    background: #fff;
}

.destination-contact-cta {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    padding: 2.5rem 1.2rem 2rem 1.2rem;
    margin: 3rem auto 2rem auto;
    max-width: 700px;
    text-align: center;
}
.contact-cta-title {
    color: var(--primary-color);
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.contact-cta-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
}
.contact-cta-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.8rem 2.2rem;
    border-radius: 30px;
    box-shadow: var(--shadow-medium);
    text-decoration: none;
    transition: filter 0.2s, transform 0.2s;
    display: inline-block;
}
.contact-cta-btn:hover {
    filter: brightness(0.95);
    transform: translateY(-2px);
}
@media (max-width: 700px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .destination-contact-cta {
        padding: 1.5rem 0.5rem 1.2rem 0.5rem;
    }
} 

.footer, .footer .container {
    border-radius: 0 !important;
    overflow: visible !important;
} 

.sigiriya-page .simple-hero-bg {
    background-image: url('https://i.pinimg.com/1200x/92/80/b0/9280b018a38121cf9b2e36f596c9c6c3.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.7;
} 

.ella-page .simple-hero-bg {
    background-image: url('https://i.pinimg.com/1200x/11/a2/29/11a229a706545b179b8f6aeb3ff8a94b.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.7;
} 

.nuwara-eliya-page .simple-hero-bg {
    background-image: url('https://i.pinimg.com/1200x/0a/50/e3/0a50e3ca08bc205efaf88c54bd58ec5b.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.7;
} 

.kandy-page .simple-hero-bg {
    background-image: url('https://i.pinimg.com/1200x/4a/a2/a6/4aa2a645fc690426e433979ba11e2c9a.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.7;
} 