/* ==========================================
   City Pages Styles
   ========================================== */

/* City Hero */
.city-hero {
    background: linear-gradient(135deg, var(--wood-dark) 0%, var(--wood-medium) 100%);
    padding: 180px 60px 100px;
    text-align: center;
    position: relative;
}

.city-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 200'%3E%3Cpath fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='1' d='M0,100 Q250,80 500,100 T1000,100'/%3E%3Cpath fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='1' d='M0,120 Q250,100 500,120 T1000,120'/%3E%3C/svg%3E");
    background-size: cover;
    pointer-events: none;
}

.city-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.city-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.city-hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-style: italic;
    color: var(--accent-orange-light);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

/* City Content */
.city-content {
    background: var(--bg-cream);
    padding: 100px 60px;
}

.city-container {
    max-width: 1000px;
    margin: 0 auto;
}

.city-intro {
    text-align: center;
    margin-bottom: 70px;
}

.city-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 600;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.city-intro h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-orange);
}

.city-intro p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.9;
    max-width: 750px;
    margin: 25px auto 0;
}

.city-intro p strong {
    color: var(--text-dark);
}

/* City Features */
.city-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 70px;
}

.city-feature {
    background: var(--bg-warm-white);
    padding: 40px;
    border-radius: 4px;
    border: 1px solid var(--border-wood);
    box-shadow: 0 4px 25px var(--shadow-warm);
}

.city-feature h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.city-feature h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-orange);
}

.city-feature ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.city-feature li {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.city-feature li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-size: 10px;
    top: 12px;
}

.city-feature li strong {
    color: var(--text-dark);
}

/* City CTA */
.city-cta {
    background: var(--wood-dark);
    padding: 60px;
    border-radius: 4px;
    text-align: center;
}

.city-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 400;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 15px;
}

.city-cta>p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.city-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.city-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.city-cta .btn-primary svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.btn-secondary {
    display: inline-block;
    padding: 18px 45px;
    background: transparent;
    color: var(--text-light);
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
}

/* Other Cities Section */
.other-cities {
    background: var(--bg-paper);
    padding: 80px 60px;
    text-align: center;
}

.other-cities h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 400;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.other-cities-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.other-city-link {
    display: inline-block;
    padding: 15px 35px;
    background: var(--bg-warm-white);
    color: var(--text-warm);
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    border: 1px solid var(--border-wood);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.other-city-link:hover {
    background: var(--accent-orange);
    color: var(--text-light);
    border-color: var(--accent-orange);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 115, 44, 0.25);
}

/* ==========================================
   Responsive Styles
   ========================================== */
@media (max-width: 1024px) {
    .city-hero {
        padding: 150px 40px 80px;
    }

    .city-hero h1 {
        font-size: 42px;
    }

    .city-content {
        padding: 80px 40px;
    }

    .city-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .city-hero {
        padding: 130px 25px 60px;
    }

    .city-hero h1 {
        font-size: 32px;
    }

    .city-hero-subtitle {
        font-size: 18px;
    }

    .city-content {
        padding: 60px 25px;
    }

    .city-intro h2 {
        font-size: 30px;
    }

    .city-intro p {
        font-size: 15px;
    }

    .city-feature {
        padding: 30px 25px;
    }

    .city-feature h3 {
        font-size: 20px;
    }

    .city-cta {
        padding: 40px 25px;
    }

    .city-cta h3 {
        font-size: 26px;
    }

    .city-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .other-cities {
        padding: 60px 25px;
    }

    .other-cities h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .city-hero h1 {
        font-size: 26px;
    }

    .city-hero-subtitle {
        font-size: 16px;
    }

    .city-intro h2 {
        font-size: 24px;
    }

    .city-feature h3 {
        font-size: 18px;
    }

    .city-cta h3 {
        font-size: 22px;
    }

    .btn-secondary {
        padding: 15px 30px;
        font-size: 12px;
    }

    .other-city-link {
        padding: 12px 25px;
        font-size: 13px;
    }
}