/* Destination Page Styles */

/* General container styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Destination Header */
.destination-header {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.destination-title {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.destination-title h1 {
    font-size: 60px;
    font-family: 'Satisfy', cursive;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.destination-title p {
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
    line-height: 1.5;
}

/* Destination Overview Section */
.destination-overview {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.overview-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.overview-text {
    flex: 2;
    min-width: 300px;
}

.overview-text h2 {
    font-size: 36px;
    color: #191d34;
    margin-bottom: 20px;
    font-family: 'Barlow Condensed', sans-serif;
}

.overview-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #506172;
    margin-bottom: 30px;
}

.overview-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.highlight {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.highlight-icon {
    font-size: 36px;
    margin-bottom: 10px;
    display: block;
}

.highlight h3 {
    font-size: 18px;
    color: #191d34;
    margin-bottom: 10px;
    font-family: 'Barlow Condensed', sans-serif;
}

.highlight p {
    font-size: 14px;
    color: #506172;
    margin: 0;
}

.overview-details {
    flex: 1;
    min-width: 250px;
}

.detail-box {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.detail-box h3 {
    font-size: 20px;
    color: #191d34;
    margin-bottom: 15px;
    font-family: 'Barlow Condensed', sans-serif;
    border-bottom: 2px solid #fde02f;
    padding-bottom: 10px;
}

.detail-box p {
    font-size: 16px;
    line-height: 1.5;
    color: #506172;
    margin-bottom: 10px;
}

.detail-box p:last-child {
    margin-bottom: 0;
}

/* Popular Places Section */
.popular-places {
    padding: 80px 0;
}

.popular-places h2 {
    font-size: 36px;
    text-align: center;
    color: #191d34;
    margin-bottom: 50px;
    font-family: 'Barlow Condensed', sans-serif;
}

.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.place-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.place-card:hover {
    transform: translateY(-10px);
}

.place-img {
    height: 200px;
    overflow: hidden;
}

.place-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.place-card:hover .place-img img {
    transform: scale(1.1);
}

.place-info {
    padding: 20px;
}

.place-info h3 {
    font-size: 22px;
    color: #191d34;
    margin-bottom: 10px;
    font-family: 'Barlow Condensed', sans-serif;
}

.place-info p {
    font-size: 15px;
    color: #506172;
    line-height: 1.5;
    margin-bottom: 15px;
}

.place-meta {
    border-top: 1px solid #eee;
    padding-top: 15px;
    color: #1a2980;
    font-weight: 500;
}

/* Trip Packages Section */
.trip-packages {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.trip-packages h2 {
    font-size: 36px;
    text-align: center;
    color: #191d34;
    margin-bottom: 10px;
    font-family: 'Barlow Condensed', sans-serif;
}

.section-intro {
    text-align: center;
    color: #506172;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.package-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.package-header {
    background: linear-gradient(to right, #1a2980, #26d0ce);
    color: #fff;
    padding: 20px;
    position: relative;
}

.package-header h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-family: 'Barlow Condensed', sans-serif;
}

.package-price {
    font-size: 20px;
    font-weight: bold;
}

.package-content {
    padding: 20px;
}

.package-details {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    gap: 15px;
}

.package-details span {
    padding: 8px 12px;
    background-color: #f1f1f1;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
}

.package-itinerary, .package-includes {
    margin-bottom: 20px;
}

.package-itinerary h4, .package-includes h4 {
    font-size: 18px;
    color: #191d34;
    margin-bottom: 10px;
    font-family: 'Barlow Condensed', sans-serif;
}

.package-itinerary ul, .package-includes ul {
    padding-left: 20px;
}

.package-itinerary li, .package-includes li {
    margin-bottom: 8px;
    color: #506172;
    font-size: 15px;
    line-height: 1.5;
}

.package-includes li {
    list-style-type: none;
}

.book-now-btn {
    display: block;
    background-color: #fde02f;
    color: #000;
    text-align: center;
    padding: 12px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.book-now-btn:hover {
    background-color: #ecd028;
}

/* Travel Tips */
.travel-tips {
    padding: 80px 0;
}

.travel-tips h2 {
    font-size: 36px;
    text-align: center;
    color: #191d34;
    margin-bottom: 50px;
    font-family: 'Barlow Condensed', sans-serif;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.tip-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.tip-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.tip-card h3 {
    font-size: 22px;
    color: #191d34;
    margin-bottom: 15px;
    font-family: 'Barlow Condensed', sans-serif;
}

.tip-card p {
    font-size: 15px;
    color: #506172;
    line-height: 1.6;
}

/* Call to Action */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(to right, #1a2980, #26d0ce);
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-family: 'Barlow Condensed', sans-serif;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: #fde02f;
    color: #000;
    font-size: 18px;
    font-weight: bold;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.05);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .destination-title h1 {
        font-size: 46px;
    }
    
    .overview-content {
        flex-direction: column;
    }
    
    .overview-details {
        margin-top: 20px;
    }
    
    .packages-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .destination-title h1 {
        font-size: 36px;
    }
    
    .destination-title p {
        font-size: 16px;
    }
    
    .overview-text h2,
    .popular-places h2,
    .trip-packages h2,
    .travel-tips h2,
    .cta-section h2 {
        font-size: 30px;
    }
    
    .highlight {
        padding: 15px;
    }
    
    .package-header {
        padding: 15px;
    }
    
    .package-header h3 {
        font-size: 20px;
    }
    
    .package-price {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .destination-header {
        height: 400px;
    }
    
    .destination-title h1 {
        font-size: 30px;
    }
    
    .overview-highlights {
        grid-template-columns: 1fr;
    }
    
    .places-grid,
    .packages-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .package-details {
        flex-direction: column;
        gap: 10px;
    }
    
    .package-details span {
        width: 100%;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }
} 