* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #000000;
    --text: #ffffff;
    --text-muted: #999;
    --border: #2a2a2a;
    --accent: #4a9eff;
    --warning: #ff9800;
    --whatsapp: #25D366;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    background-image: radial-gradient(circle, #1a1a1a 1px, transparent 1px);
    background-size: 20px 20px;
}

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

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
}
.hero-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}
.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 15px;
}
.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}
.hero-byline {
    font-size: 0.95rem;
    color: #666;
}

/* Vintage Photo */
.vintage-photo-container {
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 0 20px;
    text-align: center;
}

.vintage-photo {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    filter: grayscale(20%) sepia(10%);
}

.photo-caption {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

/* Navigation */
.nav-wrapper {
    background: #0a0a0a;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 25px;
    padding: 18px 20px;
    overflow-x: auto;
    align-items: center;
}
.nav > a, .nav-dropdown > a {
    color: var(--text-muted);
    text-decoration: none;
    white-space: nowrap;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.nav > a:hover, .nav-dropdown > a:hover {
    color: var(--text);
}

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
}
.nav-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #111;
    border: 1px solid var(--border);
    border-radius: 8px;
    min-width: 180px;
    padding: 8px 0;
    margin-top: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-content {
    display: block;
}
.nav-dropdown-content a {
    display: block;
    padding: 10px 16px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s;
}
.nav-dropdown-content a:hover {
    background: rgba(255,255,255,0.05);
    color: var(--text);
}

/* Section Headers with Gradients */
.section {
    margin-bottom: 60px;
}
.section-header {
    margin-bottom: 40px;
}

.section-gradient {
    height: 200px;
    border-radius: 16px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.section-gradient-title {
    font-size: 4rem;
    font-weight: 900;
    color: #3a3a3a;
    text-align: left;
    z-index: 1;
    padding: 0 40px;
    width: 100%;
}

/* Pastel gradient colors for each category */
.gradient-museums {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.gradient-activities {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}
.gradient-parks {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}
.gradient-restaurants {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}
.gradient-cafes {
    background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
}
.gradient-wine {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}
.gradient-shopping {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}
.gradient-nightlife {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
}
.gradient-vintage {
    background: linear-gradient(135deg, #96fbc4 0%, #f9f586 100%);
}
.gradient-nye {
    background: linear-gradient(135deg, #f5af19 0%, #f12711 100%);
}

.section-title {
    display: none; /* Title now shown on gradient block */
}
.section-intro {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-top: -10px;
    margin-bottom: 30px;
}

/* Subsection Titles */
.subsection-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text);
    margin: 50px 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

/* Place Accordion */
.place-accordion {
    border-bottom: 1px solid var(--border);
}

.place-header {
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: all 0.2s;
    flex-wrap: nowrap;
}

.place-header:hover .place-name {
    color: var(--accent);
}

.place-header-left {
    flex: 0 0 auto;
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: nowrap;
    white-space: nowrap;
    min-width: 0;
}

.place-header-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: nowrap;
    white-space: nowrap;
    min-width: 0;
}

.place-name {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    transition: color 0.2s;
}

.place-website {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.85rem;
    transition: opacity 0.2s;
}

.place-website:hover {
    text-decoration: underline;
    opacity: 0.8;
}

.place-header-address {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.place-neighborhood {
    color: #666;
    font-weight: 400;
    font-size: 0.75rem;
}

.place-address-link {
    color: var(--accent);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: opacity 0.2s;
    white-space: nowrap;
}

.place-address-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.header-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.btn-header-copy,
.btn-header-share {
    padding: 8px;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 32px;
    height: 32px;
}

.btn-header-copy {
    color: var(--accent);
}

.btn-header-copy:hover {
    background: rgba(74, 158, 255, 0.1);
}

.btn-header-share {
    color: var(--whatsapp);
}

.btn-header-share:hover {
    background: rgba(37, 211, 102, 0.1);
}

.accordion-icon {
    font-size: 1.5rem;
    color: #666;
    transition: transform 0.3s ease;
    margin-left: 10px;
    line-height: 1;
}

.place-accordion.active .accordion-icon {
    transform: rotate(180deg);
}

.place-accordion.active {
    background: rgba(255, 255, 255, 0.02);
}

.place-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.place-accordion.active .place-content {
    max-height: 1000px;
}

.place-body {
    padding: 15px 0 20px 0;
}

.place-description {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.6;
    margin-bottom: 0;
    padding: 0 0 10px 0;
}

/* Address Section */
.address-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 12px 15px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.address-link {
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 500;
    flex: 1;
    min-width: 200px;
    text-decoration: none;
    transition: color 0.2s;
}

.address-link:hover {
    color: var(--accent);
}

.address-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    border: none;
    font-family: inherit;
    white-space: nowrap;
}

.btn-copy {
    background: var(--accent);
    color: #000;
}

.btn-copy:hover {
    background: #3a8eef;
    transform: translateY(-1px);
}

.btn-copy.copied {
    background: #4caf50;
}

.btn-map {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-map:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-muted);
}

.btn-whatsapp {
    background: transparent;
    color: var(--whatsapp);
    border: 1px solid var(--whatsapp);
}

.btn-whatsapp:hover {
    background: var(--whatsapp);
    color: #fff;
}

.btn-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-icon svg {
    width: 100%;
    height: 100%;
}

/* Alerts */
.alert, .callout {
    background: #0f0f0f;
    border-left: 3px solid var(--warning);
    padding: 20px 25px;
    margin: 30px 0;
    border-radius: 4px;
}
.alert-title {
    font-weight: 600;
    color: var(--warning);
    margin-bottom: 12px;
    font-size: 1rem;
}
.alert ul {
    margin-left: 20px;
    color: var(--text-muted);
}
.alert li {
    margin-bottom: 8px;
}

/* Map container */
.map-container {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    /* Hero */
    .hero h1 { font-size: 2.5rem; }

    /* Section */
    .section-title { font-size: 2rem; }
    .section-gradient { height: 120px; }
    .section-gradient-title { font-size: 2.5rem; padding: 0 20px; }

    /* Navigation - Sticky at bottom */
    .nav-wrapper {
        position: fixed;
        bottom: 0;
        top: auto;
        left: 0;
        right: 0;
        z-index: 1000;
        border-top: 1px solid var(--border);
        border-bottom: none;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
    }

    .nav {
        padding: 12px 10px;
        gap: 15px;
        font-size: 0.85rem;
    }

    .nav-dropdown-content {
        bottom: 100%;
        top: auto;
        margin-bottom: 10px;
        margin-top: 0;
    }

    /* Accordion - Always expanded on mobile, vertical layout */
    .place-accordion {
        border-bottom: 2px solid var(--border);
        padding: 20px 0;
    }

    .place-header {
        cursor: default;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 0;
    }

    .place-header-left,
    .place-header-right {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .place-name {
        font-size: 1.2rem;
        display: block;
    }

    .place-website {
        font-size: 0.85rem;
    }

    .place-header-address {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .header-buttons {
        flex-direction: row;
        gap: 10px;
    }

    .accordion-icon {
        display: none;
    }

    .place-content {
        max-height: none !important;
        overflow: visible !important;
    }

    .place-body {
        padding: 12px 0 0 0;
    }

    .place-description {
        margin-bottom: 12px;
    }

    /* Buttons */
    .address-buttons {
        flex-direction: column;
    }
    .btn {
        width: 100%;
        justify-content: center;
    }

    /* Add bottom padding to avoid content being hidden behind sticky nav */
    body {
        padding-bottom: 80px;
    }
}
