/* Flight Areas Page Styles */
.flight-area {
    margin: 3rem 0;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.area-image {
    height: 350px;
    overflow: hidden;
}

.area-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.area-content {
    padding: 1.5rem;
}

.area-content h2 {
    margin-top: 0;
    color: #2c3e50;
}

.area-details {
    margin: 1.5rem 0;
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 6px;
}

.area-details p {
    margin: 0.5rem 0;
}

.area-links {
    margin: 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.area-links a {
    display: flex;
    align-items: center;
}

.area-links i {
    margin-right: 0.5rem;
}

.other-areas {
    margin: 3rem 0;
}

.other-areas h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

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

.small-area {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.small-area-image {
    height: 200px;
    overflow: hidden;
}

.small-area-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.small-area-content {
    padding: 1rem;
}

.small-area-content h4 {
    margin: 0.5rem 0;
    color: #2c3e50;
}

.small-area-content p {
    margin: 0.5rem 0 1rem 0;
}

.small-area-content a {
    display: block;
    margin: 0.5rem 0;
}

.overnight {
    margin: 3rem 0;
}

.overnight h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.overnight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.overnight-location h4 {
    color: #3498db;
    margin-bottom: 1rem;
}

.hotel {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed #e0e0e0;
}

.hotel h5 {
    margin: 0 0 0.5rem 0;
    color: #2c3e50;
}

.hotel p {
    margin: 0.25rem 0;
    font-size: 0.95rem;
}

.hotel i {
    width: 1.25rem;
    text-align: center;
    margin-right: 0.5rem;
    color: #3498db;
}

@media (max-width: 768px) {
    .area-image {
        height: 250px;
    }
    
    .area-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .area-grid {
        grid-template-columns: 1fr;
    }
    
    .overnight-grid {
        grid-template-columns: 1fr;
    }
}
