/* Destinations Page Styles */
.destinations-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('https://iili.io/3oemyzb.jpg') center/cover no-repeat;
    margin-top: 80px;
    padding: 80px 0;
}

.destinations-hero .section-title,
.destinations-hero .section-subtitle {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Map Section */
.map-section {
    padding: 80px 20px;
    background: #fff;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.map-image {
    position: relative;
    max-width: 800px;
    width: 100%;
    margin-bottom: 30px;
}

.map-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-point {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.point-dot {
    width: 16px;
    height: 16px;
    background: #ffe044;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.point-pulse {
    width: 40px;
    height: 40px;
    background: rgba(255, 224, 68, 0.4);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.point-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #0d1b12;
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    white-space: nowrap;
    margin-bottom: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.point-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #0d1b12 transparent transparent transparent;
}

.map-point:hover .point-tooltip {
    opacity: 1;
    visibility: visible;
}

.map-legend {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.map-legend h3 {
    font-size: 1.5rem;
    color: #0d1b12;
    margin-bottom: 15px;
}

.map-legend p {
    color: #666;
    line-height: 1.6;
}

/* Destinations Grid */
.destinations-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.destination-card {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 80px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.destination-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.destination-card:last-child {
    margin-bottom: 0;
}

.destination-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background-size: cover;
    background-position: center;
}

.destination-content {
    flex: 2;
    min-width: 300px;
    padding: 40px;
    color: #333;
}

.destination-content h2 {
    font-size: 2rem;
    color: #0d1b12;
    margin: 0 0 10px 0;
}

.destination-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.destination-location i {
    color: #ffe044;
}

.destination-description {
    margin-bottom: 30px;
}

.destination-description p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1rem;
}

.destination-highlights {
    margin-bottom: 30px;
}

.destination-highlights h3 {
    font-size: 1.3rem;
    color: #0d1b12;
    margin-bottom: 15px;
}

.destination-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.destination-highlights li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #555;
}

.destination-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: #ffe044;
    border-radius: 50%;
}

.destination-footer {
    margin-top: 30px;
}

/* Highlight Animation */
.destination-card.highlight {
    animation: highlight 1.5s ease;
}

@keyframes highlight {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    50% {
        box-shadow: 0 10px 30px rgba(255, 224, 68, 0.5);
    }
}

/* Responsive Styles */
@media (max-width: 900px) {
    .destination-image {
        height: 300px;
    }
    
    .destination-content {
        padding: 30px;
    }
    
    .destination-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 600px) {
    .destination-image {
        height: 250px;
    }
    
    .destination-content {
        padding: 25px;
    }
    
    .destination-content h2 {
        font-size: 1.5rem;
    }
    
    .destination-highlights li {
        padding-left: 20px;
    }
}
