/* 
   City Module - Nature Luxe Edition
   Styles specifically for City Detail pages
*/

/* Breadcrumbs */
.nl-breadcrumb {
    padding: 24px 0;
    background: var(--nl-bg-soft);
    border-bottom: 1px solid var(--nl-border);
}

.nl-breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
    color: var(--nl-text-muted);
}

.nl-breadcrumb-list a {
    color: var(--nl-forest);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.nl-breadcrumb-list a:hover {
    color: var(--nl-gold);
}

.nl-sep {
    color: var(--nl-gold);
    font-size: 0.8rem;
}

/* Hero Section */
.nl-city-hero {
    position: relative;
    padding: 160px 0 120px;
    background: #F9FAFB;
    /* Fallback */
    background-image: none;
    background-size: cover;
    background-position: center;
    border-bottom: 4px solid var(--nl-gold);
    overflow: hidden;
    color: var(--nl-text);
}

.nl-city-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    /* Light Gradient */
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(249, 250, 251, 0.90) 100%);
    z-index: 1;
}

.nl-city-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-shadow: none;
}

.nl-city-title {
    font-family: var(--nl-font-serif);
    font-size: clamp(3rem, 6vw, 4.5rem);
    color: var(--nl-forest);
    margin-bottom: 24px;
    line-height: 1.1;
    text-shadow: none;
}

.nl-city-title span {
    color: var(--nl-gold);
    font-style: normal;
    /* Italic removed for corporate look */
}

.nl-city-desc {
    font-size: 1.35rem;
    color: var(--nl-text-light);
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 300;
}

.nl-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Layout */
.nl-city-layout-section {
    background-color: #FFFFFF;
    position: relative;
    z-index: 10;
}

.nl-city-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    padding: 80px 0;
}

/* Content Area */
.nl-main-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--nl-text);
}

.nl-main-content h2 {
    font-family: var(--nl-font-serif);
    font-size: 2rem;
    color: var(--nl-forest);
    margin: 40px 0 24px;
}

.nl-main-content h3 {
    font-family: var(--nl-font-services);
    font-size: 1.5rem;
    color: var(--nl-forest);
    margin: 30px 0 20px;
}

.nl-main-content ul {
    margin-bottom: 24px;
    padding-left: 20px;
}

.nl-main-content li {
    margin-bottom: 12px;
}

/* Services Grid (In-Content) */
.nl-city-services {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.nl-mini-service-card {
    background: #FFFFFF;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.nl-mini-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--nl-gold);
}

.nl-mini-icon {
    width: 48px;
    height: 48px;
    background: var(--nl-bg-warm);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nl-gold);
    margin-bottom: 16px;
}

.nl-mini-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--nl-forest);
    margin-bottom: 8px;
}

.nl-mini-desc {
    font-size: 0.9rem;
    color: var(--nl-text-muted);
}

/* Sidebar */
.nl-sidebar {
    position: sticky;
    top: 40px;
    height: fit-content;
}

.nl-contact-widget {
    background: #FFFFFF;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 32px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.nl-widget-title {
    font-family: var(--nl-font-serif);
    font-size: 1.5rem;
    color: var(--nl-forest);
    margin-bottom: 16px;
    border-bottom: 2px solid var(--nl-bg-warm);
    padding-bottom: 16px;
}

.nl-contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--nl-forest);
    text-decoration: none;
    padding: 12px 0;
    transition: color 0.2s;
}

.nl-contact-link:hover {
    color: var(--nl-gold);
}

.nl-side-nav {
    background: #FFFFFF;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.nl-side-link {
    display: block;
    padding: 12px 0;
    color: var(--nl-text-light);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.2s;
}

.nl-side-link:hover {
    color: var(--nl-forest);
    padding-left: 8px;
}

.nl-side-link:last-child {
    border-bottom: none;
}

/* CTA Section */
.nl-city-cta {
    background: #F9FAFB;
    color: var(--nl-forest);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #E5E7EB;
}

.nl-city-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    /* Soft pattern opactity reduced */
    opacity: 0.5;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A961' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.nl-cta-content {
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .nl-city-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .nl-sidebar {
        position: static;
    }
}