/* Edinburgh Destination Styles - Bangkok-style animations and formatting */

.city-hero {
    height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('destinations_images/edinburghdestination.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.city-content {
    padding: 5rem 0;
    background: white;
}

.city-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.city-main {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(70, 44, 97, 0.08);
    border: 2px solid #f8f9fa;
}

.city-section {
    margin-bottom: 3rem;
}

.city-section:last-child {
    margin-bottom: 0;
}

.city-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.city-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #462c61 0%, #de4185 100%);
    border-radius: 2px;
}

.city-section p {
    color: #5a6c7d;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.city-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.highlight-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.highlight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #462c61 0%, #de4185 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.highlight-item:hover::before {
    transform: scaleX(1);
}

.highlight-item:hover {
    transform: translateY(-5px);
    border-color: rgba(70, 44, 97, 0.1);
    box-shadow: 0 15px 35px rgba(70, 44, 97, 0.1);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(90deg, #462c61 0%, #de4185 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.highlight-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.highlight-desc {
    color: #7f8c8d;
    line-height: 1.6;
    font-size: 0.95rem;
}

.city-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.city-widget {
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(70, 44, 97, 0.08);
    border: 2px solid #f8f9fa;
}

.city-widget h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.city-widget h3 i {
    color: #de4185;
    font-size: 1.2rem;
}

.city-info-list {
    list-style: none;
    padding: 0;
}

.city-info-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f1f3f4;
    color: #5a6c7d;
}

.city-info-list li:last-child {
    border-bottom: none;
}

.city-info-list i {
    color: #462c61;
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.city-tips {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 20px;
    border-left: 4px solid #de4185;
}

.city-tips h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.city-tips ul {
    list-style: none;
    padding: 0;
}

.city-tips li {
    color: #5a6c7d;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.city-tips li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #de4185;
    font-weight: bold;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(70, 44, 97, 0.08);
    border: 2px solid #f8f9fa;
}

.faq-question {
    padding: 1.5rem;
    background: #f8f9fa;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #2c3e50;
}

.faq-question:hover {
    background: #e9ecef;
    color: #462c61;
}

.faq-answer {
    padding: 1.5rem;
    display: none;
    color: #5a6c7d;
    line-height: 1.6;
}

.faq-answer.active {
    display: block;
}

.seasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.season-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(70, 44, 97, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.season-card:hover {
    transform: translateY(-5px);
    border-color: rgba(70, 44, 97, 0.1);
    box-shadow: 0 15px 35px rgba(70, 44, 97, 0.1);
}

.season-card h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.season-card p {
    color: #7f8c8d;
    margin: 0;
}

@media (max-width: 768px) {
    .city-grid {
        grid-template-columns: 1fr;
    }
    
    .city-main,
    .city-widget {
        padding: 2rem;
    }
    
    .city-hero h1 {
        font-size: 2.5rem;
    }
    
    .city-highlights {
        grid-template-columns: 1fr;
    }
}
