
:root {
    --shimla-green: #2e5e4e;
    --shimla-blue: #3a7ca5;
    --shimla-light: #f4f9f4;
    --shimla-accent: #d9bf77;
    --shimla-dark: #2c3333;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: var(--shimla-light);
}

.shimla-green {
    background-color: var(--shimla-green);
}

.shimla-blue {
    background-color: var(--shimla-blue);
}

.shimla-accent {
    background-color: var(--shimla-accent);
}

.shimla-text-green {
    color: var(--shimla-green);
}

.shimla-text-blue {
    color: var(--shimla-blue);
}

.shimla-text-accent {
    color: var(--shimla-accent);
}

.hero {
    background-image: url('https://images.unsplash.com/photo-1626621342331-619a2e8cf1d0?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.section-heading {
    font-family: 'Georgia', serif;
    position: relative;
    display: inline-block;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--shimla-accent);
}

.card {
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.attraction-img {
    height: 200px;
    object-fit: cover;
}

.season-card {
    min-height: 320px;
}

.gallery-img {
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.05);
}

/* Custom accordion styles */
.accordion-header {
    cursor: pointer;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content.active {
    max-height: 500px;
}

/* Custom styles for the weather widget */
.weather-widget {
    background: linear-gradient(135deg, #6dd5ed, #2193b0);
    border-radius: 10px;
    overflow: hidden;
}

/* Custom Timeline */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: var(--shimla-blue);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

.timeline-container {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-container::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -13px;
    background-color: white;
    border: 4px solid var(--shimla-accent);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid white;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent white;
}

.right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
}

.right::after {
    left: -12px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: white;
    position: relative;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}











  

/* Food and dining styles */
.food-card {
    overflow: hidden;
}

.food-img {
    transition: transform 0.5s ease;
}

.food-card:hover .food-img {
    transform: scale(1.05);
}

/* Trip planner styles */
.itinerary-item {
    border-left: 3px solid var(--shimla-blue);
    padding-left: 15px;
    margin-bottom: 15px;
    position: relative;
}

.itinerary-item::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: var(--shimla-blue);
    left: -9px;
    top: 0;
}




@media screen and (max-width: 600px) {
    .timeline::after {
        left: 31px;
    }
    
    .timeline-container {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-container::before {
        left: 60px;
        border-width: 10px 10px 10px 0;
        border-color: transparent white transparent transparent;
    }
    
    .left::after, .right::after {
        left: 19px;
    }
    
    .right {
        left: 0%;
    }
}






/* Print styles for PDF */
@media print {
    .no-print {
        display: none !important;
    }
    
    body {
        width: 100%;
        margin: 0;
        padding: 0;
        background-color: white;
    }
    
    .container {
        width: 100%;
        max-width: none;
    }
    
    .accordion-content {
        max-height: none !important;
        display: block !important;
    }
}
