/* Nusupa City Detail Shared CSS */
body {
    background-color: var(--bg-ivory, #FAFAF7);
    color: var(--text-black, #111111);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

h1, h2, h3, h4 {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-weight: 400;
}

/* Core Identity Hero */
.city-hero {
    position: relative;
    height: 90vh;
    min-height: 700px;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
}

.hero-content {
    padding: 0 40px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.region-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: inline-block;
}

.hero-content h1 {
    font-size: 80px;
    margin: 0;
    line-height: 1;
}

.local-name {
    font-size: 32px;
    font-weight: 300;
    margin: 10px 0 20px 0;
    opacity: 0.9;
}

.positioning-line {
    font-size: 20px;
    max-width: 650px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.traits-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.trait-tag {
    font-size: 12px;
    padding: 6px 12px;
    border: 1px solid rgba(255,255,255,0.4);
    letter-spacing: 0.5px;
}

.hero-actions button {
    padding: 14px 30px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 2px;
    font-family: 'Inter', sans-serif;
    border: none;
    margin-right: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: #fff;
    color: #000;
}

.btn-secondary {
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.6);
}

/* Why This City */
.core-why-city {
    padding: 100px 0;
    text-align: center;
}

.core-why-city h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 40px;
}

.core-why-city .matter-content {
    font-size: 28px;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
    font-family: 'Playfair Display', serif;
}

/* Explore by Intent */
.core-explore-intent {
    padding: 80px 0;
    background: #F2F2EE;
}

.core-explore-intent h3 {
    font-size: 32px;
    margin: 0 0 40px 0;
}

.intent-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.intent-card {
    height: 120px;
    background-size: cover;
    background-position: center;
    position: relative;
    cursor: pointer;
}

.intent-card::after {
    content: '';
    position: absolute;
    top:0; left:0; right:0; bottom:0;
    background: rgba(0,0,0,0.4);
    transition: background 0.3s;
}

.intent-card:hover::after {
    background: rgba(0,0,0,0.2);
}

.intent-label {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* Modules */
.city-module {
    padding: 80px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.module-title {
    font-size: 36px;
    margin: 0 0 30px 0;
}

.city-module p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 700px;
    color: #444;
}

/* Collection Grid (Stay, etc) */
.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.collection-item {
    display: block;
    text-decoration: none;
    color: inherit;
}

.col-img {
    height: 350px;
    background-size: cover;
    background-position: center;
    margin-bottom: 15px;
}

.col-name {
    font-size: 18px;
    font-weight: 500;
}

/* Collaboration Status */
.core-collaboration-status {
    padding: 100px 0;
}

.collab-box {
    background: #111;
    color: #fff;
    padding: 60px;
    max-width: 800px;
    margin: 0 auto;
}

.collab-box h3 {
    font-size: 32px;
    margin: 0 0 20px 0;
}

.status-badge {
    display: inline-block;
    padding: 6px 12px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255,255,255,0.4);
    margin-bottom: 20px;
}

.collab-box p {
    font-size: 18px;
    line-height: 1.5;
    opacity: 0.9;
    margin-bottom: 40px;
}

.collab-box h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.opp-list {
    padding-left: 20px;
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.opp-list li {
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
    .intent-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 50px; }
    .local-name { font-size: 24px; }
    .core-why-city .matter-content { font-size: 20px; }
    .container { padding: 0 20px; }
    .collab-box { padding: 40px 20px; }
    .hero-actions { display: flex; flex-direction: column; gap: 15px; }
    .hero-actions button { margin-right: 0; }
}
