/* Destination Detail Sayfası Stilleri */

/* Hero Image Slide Stilleri */
.hero-image-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-image-container:hover .hero-image {
    transform: scale(1.05);
}

.placeholder-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.overlay-content {
    max-width: 800px;
    padding: 2rem;
}

.overlay-content h1 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: 700;
}

.overlay-content p {
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* İçerik Bölümü */
.content-section {
    width: 100%;
    margin: 0 auto;
}

.detailed-description {
    background: rgba(0,0,0,0.8);
    padding: 2rem;
    border-radius: 20px;
    border-left: 4px solid var(--primary);
    backdrop-filter: blur(10px);
}

.region-highlights ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.region-highlights ul li:last-child {
    border-bottom: none;
}

.travel-info {
    background: rgba(var(--primary-rgb), 0.05);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .hero-image-container {
        height: 300px;
        border-radius: 15px;
    }
    
    .overlay-content {
        padding: 1rem;
    }
}
