/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --terra: #E05A30;
    --terra-light: #F2734A;
    --gold: #FEBA06;
    --gold-light: #FFD24D;
    --maquis: #2C5F2E;
    --maquis-light: #4A8C4D;
    --sand: #FBF4E4;
    --sand-dark: #EAD9B0;
    --sea: #1A2F4B;
    --sea-light: #2C4A75;
    --ink: #111D2B;
    --warm-grey: #8B7355;
    --light-bg: #FAF9F6;
    --white: #FFFFFF;
    --shadow: 0 4px 24px rgba(17, 29, 43, 0.1);
    --shadow-lg: 0 8px 48px rgba(26, 18, 9, 0.18);
    --radius: 12px;
    --radius-lg: 20px;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--light-bg);
    line-height: 1.6;
    font-size: 16px;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== NAVBAR ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(197, 73, 10, 0.12);
    box-shadow: 0 2px 16px rgba(26, 18, 9, 0.06);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 32px;
    /*    height: 72px; */
}

.nav-logo img {
    display: block;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.nav-links a {
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 15px;
    color: var(--ink);
    transition: all 0.2s;
}

.nav-links a:hover {
    background: var(--sand);
    color: var(--terra);
}

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    overflow: hidden;
    border: 1px solid rgba(197, 73, 10, 0.1);
    z-index: 200;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    border-radius: 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.nav-mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    margin-left: auto;
    padding: 8px;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1A1209 0%, #2C1A06 40%, #1B6CA8 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1559128010-7c1ad6e1b6a5?w=1600&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from {
        transform: scale(1.05);
    }

    to {
        transform: scale(1.12);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26, 18, 9, 0.3) 0%, rgba(26, 18, 9, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 24px;
    width: 100%;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(197, 73, 10, 0.9);
    color: white;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(42px, 7vw, 88px);
    font-weight: 900;
    color: white;
    line-height: 1.0;
    margin: 0 auto 24px;
    max-width: 800px;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero p {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.85);
    max-width: 540px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 48px;
    justify-content: center;
}

.hero-stat {
    color: white;
}

.hero-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--terra-light);
    line-height: 1;
}

.hero-stat span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== SEARCH BAR ===== */
.search-bar {
    background: white;
    border-radius: var(--radius-lg);
    padding: 8px;
    display: flex;
    gap: 8px;
    box-shadow: var(--shadow-lg);
    max-width: 640px;
    margin: 32px auto 0;
}

.search-bar input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 16px;
    background: transparent;
    color: var(--ink);
}

.search-bar input::placeholder {
    color: var(--warm-grey);
}

.search-bar button {
    background: var(--terra);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.search-bar button:hover {
    background: var(--terra-light);
}

/* ===== SECTIONS ===== */
.section {
    padding: 80px 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.section-sm {
    padding: 48px 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--ink);
    line-height: 1.2;
}

.section-subtitle {
    color: var(--warm-grey);
    font-size: 16px;
    margin-top: 8px;
}

.section-link {
    color: var(--terra);
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: gap 0.2s;
}

.section-link:hover {
    gap: 10px;
}

/* ===== CAMPING CARDS ===== */
.hotel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.hotel-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(26, 18, 9, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.hotel-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.hotel-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--sand-dark);
}

.hotel-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.hotel-card:hover .hotel-card-img img {
    transform: scale(1.08);
}

.hotel-card-img .hotel-type {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(26, 18, 9, 0.8);
    color: white;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hotel-card-img .hotel-status {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--maquis);
    color: white;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
}

.hotel-card-img .hotel-status.closed {
    background: var(--warm-grey);
}

.hotel-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hotel-card-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
    line-height: 1.3;
}

.hotel-card-location {
    color: var(--warm-grey);
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.hotel-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.stars {
    color: #F59E0B;
    font-size: 14px;
    letter-spacing: 1px;
}

.rating-score {
    font-weight: 700;
    font-size: 15px;
    color: var(--ink);
}

.rating-count {
    color: var(--warm-grey);
    font-size: 13px;
}

.camping-card-footer {
    padding: 16px 20px;
    background: var(--sand);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn-details {
    background: var(--terra);
    color: white;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.2s;
}

.btn-details:hover {
    background: var(--terra-light);
}

/* ===== REGION CARDS ===== */
.region-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.region-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: pointer;
    transition: transform 0.3s;
}

.region-card:hover {
    transform: scale(1.02);
}

.region-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s;
}

.region-card:hover .region-card-bg {
    transform: scale(1.08);
}

.region-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 18, 9, 0.85) 0%, rgba(26, 18, 9, 0.2) 60%, transparent 100%);
}

.region-card-content {
    position: relative;
    z-index: 1;
    padding: 28px;
    color: white;
}

.region-card-content h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.region-card-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.region-card-content .tag {
    display: inline-block;
    background: rgba(197, 73, 10, 0.9);
    color: white;
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
}

/* ===== CITY LIST ===== */
.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.city-card {
    background: white;
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(26, 18, 9, 0.06);
    transition: all 0.2s;
    border: 2px solid transparent;
}

.city-card:hover {
    border-color: var(--terra);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.city-card-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--ink);
}

.city-card-count {
    background: var(--terra);
    color: white;
    border-radius: 100px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

/* ===== BANNER STRIP ===== */
.banner-strip {
    background: var(--terra);
    color: white;
    padding: 48px 24px;
    text-align: center;
}

.banner-strip h2 {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 12px;
}

.banner-strip p {
    font-size: 18px;
    opacity: 0.85;
    max-width: 500px;
    margin: 0 auto 24px;
}

.btn-outline-white {
    display: inline-block;
    border: 2px solid white;
    color: white;
    padding: 12px 32px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.2s;
}

.btn-outline-white:hover {
    background: white;
    color: var(--terra);
}

/* ===== FILTERS ===== */
.filters-bar {
    background: white;
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    margin-bottom: 32px;
    box-shadow: 0 2px 12px rgba(26, 18, 9, 0.06);
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.filter-label {
    font-weight: 600;
    font-size: 14px;
    color: var(--warm-grey);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.filter-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-chip {
    padding: 6px 16px;
    border-radius: 100px;
    border: 2px solid var(--sand-dark);
    background: white;
    color: var(--ink);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-body);
    text-decoration: none;
    display: inline-block;
}

.filter-chip:hover,
.filter-chip.active {
    background: var(--terra);
    border-color: var(--terra);
    color: white;
}

.sort-select {
    margin-left: auto;
    padding: 8px 16px;
    border: 2px solid var(--sand-dark);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    background: white;
    cursor: pointer;
    outline: none;
    color: var(--ink);
}

/* ===== CAMPING DETAIL PAGE ===== */
.hotel-detail-hero {
    position: relative;
    height: 480px;
    background: var(--ink);
    overflow: hidden;
}

.hotel-detail-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
}

.hotel-detail-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(26, 18, 9, 0.8) 100%);
}

.hotel-detail-hero-content {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    color: white;
}

.hotel-detail-hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.detail-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
}

.badge.accent {
    background: var(--terra);
    border-color: var(--terra);
}

.detail-layout {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 24px;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}

.detail-info-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 88px;
}

.detail-info-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--ink);
}

.info-row {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 15px;
}

.info-row:last-child {
    border-bottom: none;
}

.info-row .icon {
    font-size: 18px;
    flex-shrink: 0;
}

.info-row .info-label {
    color: var(--warm-grey);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.info-row .info-value {
    color: var(--ink);
    font-weight: 500;
    margin-top: 2px;
}

.btn-primary {
    display: block;
    width: 100%;
    background: var(--terra);
    color: white;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    margin-top: 20px;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: var(--terra-light);
}

.btn-secondary {
    display: block;
    width: 100%;
    background: var(--sand);
    color: var(--ink);
    padding: 12px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    margin-top: 10px;
    transition: background 0.2s;
}

.btn-secondary:hover {
    background: var(--sand-dark);
}

.about-section {
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: 0 2px 12px rgba(26, 18, 9, 0.06);
    margin-bottom: 24px;
}

.about-section h2 {
    font-family: var(--font-display);
    font-size: 42px;
    color: var(--ink);
    margin-bottom: 16px;
}

.description-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--ink);
    white-space: pre-line;
}

.about-category {
    margin-bottom: 20px;
}

.about-category h4 {
    color: var(--terra);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.about-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
}

.about-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--ink);
}

.about-item .check {
    color: var(--maquis);
    font-size: 16px;
}

.about-item .cross {
    color: #E05252;
    font-size: 16px;
}

/* ===== STARS RATING ===== */
.stars-display {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stars-display .score {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
}

.stars-display .stars-col {
    display: flex;
    flex-direction: column;
}

.stars-display .review-count {
    color: var(--warm-grey);
    font-size: 14px;
}

.stars-lg {
    color: #F59E0B;
    font-size: 22px;
    letter-spacing: 3px;
}

/* ===== MAP ===== */
#map {
    width: 100%;
    height: 600px;
    border-radius: var(--radius-lg);
}

.map-container {
    background: var(--sand);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 24px 0;
    font-size: 14px;
    color: var(--warm-grey);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--terra);
    transition: opacity 0.2s;
}

.breadcrumb a:hover {
    opacity: 0.7;
}

.breadcrumb span {
    color: var(--warm-grey);
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--ink) 0%, #2C3E50 100%);
    padding: 60px 24px;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    margin-bottom: 12px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.8;
    max-width: 500px;
    margin: 0 auto;
}

/* ===== DEPT PAGE ===== */
.dept-stats-bar {
    background: var(--ink);
    color: white;
    padding: 32px 24px;
}

.dept-stats-bar .inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.dept-stat {
    text-align: center;
}

.dept-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    color: var(--terra-light);
}

.dept-stat span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 40px 0;
    flex-wrap: wrap;
}

.page-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 2px solid var(--sand-dark);
    background: white;
    color: var(--ink);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.page-btn:hover,
.page-btn.active {
    background: var(--terra);
    border-color: var(--terra);
    color: white;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 0;
    margin-top: 80px;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px 48px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand img {
    margin-bottom: 16px;
    opacity: 0.9;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    max-width: 280px;
}

.footer-links h4 {
    color: white;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--terra-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 24px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* ===== MISC HELPERS ===== */
.text-terra {
    color: var(--terra);
}

.font-display {
    font-family: var(--font-display);
}

.no-photo {
    background: linear-gradient(135deg, var(--sand) 0%, var(--sand-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.map-placeholder {
    background: var(--sand);
    height: 600px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--warm-grey);
    flex-direction: column;
    gap: 12px;
}

.leaflet-popup-content-wrapper {
    border-radius: 12px !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .detail-layout {
        grid-template-columns: 1fr;
    }

    .detail-info-card {
        position: static;
        order: -1;
    }

    .region-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: white;
        padding: 16px;
        flex-direction: column;
        box-shadow: var(--shadow-lg);
        z-index: 99;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-mobile-toggle {
        display: block;
    }

    .hero {
        min-height: 70vh;
    }

    .section {
        padding: 48px 16px;
    }

    .camping-grid {
        grid-template-columns: 1fr;
    }

    .city-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-stats {
        gap: 24px;
    }

    .filters-bar {
        gap: 12px;
    }

    .sort-select {
        margin-left: 0;
    }

    .about-items {
        grid-template-columns: 1fr;
    }
}


/* MAP MARKERS (SCREENSHOT STYLE) */
.map-marker-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.map-marker-pin {
    background: #C5490A;
    /* Deep orange from screenshot */
    color: white;
    padding: 3px 8px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 11px;
    border: 1.5px solid white;
    white-space: nowrap;
    position: relative;
    line-height: 1;
}

.map-marker-pin::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid white;
    /* White border for the tail */
}

.map-marker-pin::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #C5490A;
    /* Orange fill for the tail */
    z-index: 2;
}