/* Destination Page Styles */

/* Hero Section */
.destination-hero {
    height: 70vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-top: -80px;
    /* Pull behind transparent header */
}

.destination-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
}

.destination-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.destination-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.destination-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Quick Facts Bar */
.quick-facts {
    background: white;
    border-radius: 15px;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
    margin-top: -50px;
    position: relative;
    z-index: 10;
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.fact-item {
    text-align: center;
    border-right: 1px solid #eee;
}

.fact-item:last-child {
    border-right: none;
}

.fact-icon {
    font-size: 1.5rem;
    color: var(--brand-orange, #f39c12);
    margin-bottom: 0.5rem;
}

.fact-label {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fact-value {
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
}

/* Blog Content */
.blog-container {
    padding: 4rem 0;
}

.blog-main h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    margin-top: 3rem;
    text-align: center;
}

.blog-main h2:first-child {
    margin-top: 0;
}

.blog-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center;
}

.highlight-box {
    background: #f8f9fa;
    border-left: 4px solid var(--brand-orange, #f39c12);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 10px 10px 0;
}

/* Attractions Grid */
.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.attraction-card {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    height: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.attraction-card:hover {
    transform: translateY(-10px);
}

.attraction-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.attraction-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem;
    color: white;
}

/* Sidebar */
.booking-widget {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brand-blue, #2980b9);
    margin-bottom: 1rem;
    display: block;
}

.price-tag span {
    font-size: 1rem;
    color: #888;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 768px) {
    .destination-title {
        font-size: 3rem;
    }

    .quick-facts {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: -30px;
        width: 90%;
    }

    .fact-item:nth-child(2) {
        border-right: none;
    }

    .destination-hero {
        height: 60vh;
    }
}