/* =============================================
   Last Time Traveler — Main Stylesheet
   ============================================= */

:root {
    --navy: #1a1f3c;
    --navy-dark: #0f1225;
    --navy-light: #252b4a;
    --gold: #c9a84c;
    --gold-light: #e0c070;
    --gold-dark: #a8882e;
    --cream: #f5f0e8;
    --cream-dark: #ede7d9;
    --brown: #8b6914;
    --white: #ffffff;
    --gray-100: #f8f8f6;
    --gray-200: #e8e4dc;
    --gray-400: #9a9590;
    --gray-600: #6b6560;
    --gray-800: #3a3530;
    --text-dark: #1a1814;
    --text-body: #3a3530;
    --shadow-sm: 0 2px 8px rgba(26,31,60,0.08);
    --shadow-md: 0 4px 20px rgba(26,31,60,0.12);
    --shadow-lg: 0 8px 40px rgba(26,31,60,0.18);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

/* =============================================
   RESET & BASE
   ============================================= */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text-body);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--navy);
    line-height: 1.3;
}

a {
    color: var(--gold-dark);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover { color: var(--gold); }

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

ul { list-style: none; }

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

.gold { color: var(--gold); }
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 0.5rem;
}
.section-subtitle {
    color: var(--gray-600);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}
.text-center { text-align: center; }

/* =============================================
   NAVBAR
   ============================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
    background: transparent;
}

.navbar.scrolled,
body:not(.has-hero) .navbar {
    background: var(--navy);
    box-shadow: var(--shadow-md);
    padding: 0.8rem 0;
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: nowrap;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.01em;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-logo em {
    font-style: italic;
    font-weight: 400;
}

.nav-logo:hover { color: var(--cream); }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: nowrap;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: nowrap;
}

.nav-links > li {
    position: relative;
}

.nav-links a {
    color: rgba(255,255,255,0.88);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.5rem 0.6rem;
    border-radius: 4px;
    transition: color var(--transition), background var(--transition);
    display: flex;
    align-items: center;
    gap: 0.2rem;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
    background: rgba(201,168,76,0.1);
}

.chevron {
    transition: transform var(--transition);
}

.has-dropdown:hover .chevron {
    transform: rotate(180deg);
}

/* Mega Menu */
.mega-menu {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%);
    min-width: 600px;
    max-width: 900px;
    background: var(--navy);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 1.5rem;
    z-index: 999;
}

.has-dropdown:hover .mega-menu {
    display: block;
}

.mega-menu-inner {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1.5rem;
}

.mega-country-name {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid rgba(201,168,76,0.2);
}

.mega-cities li a {
    color: rgba(255,255,255,0.75);
    font-size: 0.85rem;
    padding: 0.2rem 0;
    display: block;
    background: none;
}

.mega-cities li a:hover {
    color: var(--gold-light);
    background: none;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.lang-btn {
    color: rgba(255,255,255,0.65);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    transition: color var(--transition);
}

.lang-btn:hover,
.lang-btn.active {
    color: var(--gold);
}

.lang-sep {
    color: rgba(255,255,255,0.3);
    font-size: 0.75rem;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */

.hero {
    min-height: 100vh;
    background-color: #0f1225;
    background: #0f1225;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    transition: opacity 0.5s ease;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(15, 18, 37, 0.3) 0%,
        rgba(15, 18, 37, 0.5) 50%,
        rgba(15, 18, 37, 0.85) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    padding: 2rem 1.5rem;
}

.hero-eyebrow {
    display: inline-block;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.hero-title {
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    color: var(--white);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.hero-title .gold-text {
    color: var(--gold);
    font-style: italic;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.8);
    font-weight: 300;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    transition: all var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
}

.btn-gold {
    background: var(--gold);
    color: var(--navy-dark);
    border-color: var(--gold);
}

.btn-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--navy-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201,168,76,0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    color: var(--white);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.btn-navy:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-mouse {
    width: 22px;
    height: 35px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 11px;
    position: relative;
}

.scroll-mouse::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 6px;
    background: rgba(255,255,255,0.6);
    border-radius: 2px;
    animation: scrollAnim 1.8s infinite;
}

@keyframes scrollAnim {
    0% { opacity: 1; top: 5px; }
    100% { opacity: 0; top: 18px; }
}

/* Hero video background */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

/* Hero torn paper */
.hero-torn {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-torn svg {
    display: block;
    width: 100%;
    height: 70px;
}

/* Contact banner (parallax) */
.contact-banner {
    position: relative;
    background-color: var(--navy);
    background-size: cover;
    background-position: center 40%;
    background-attachment: fixed;
    background-repeat: no-repeat;
    padding: 7rem 2rem 6rem;
    text-align: center;
    overflow: hidden;
    min-height: 320px;
}

.contact-banner-torn {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 2;
    pointer-events: none;
}

.contact-banner-torn svg {
    display: block;
    width: 100%;
    height: 70px;
}

.contact-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15,18,37,0.65);
}

.contact-banner-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.contact-banner-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.contact-banner-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}


@media (max-width: 768px) {
    .contact-banner,
    .hero-bg {
        background-attachment: scroll;
    }
}

/* =============================================
   MAP SECTION
   ============================================= */

.map-section {
    background: var(--cream);
    padding: 5rem 0;
}

.map-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

#map-canvas {
    width: 100%;
    height: 500px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

/* =============================================
   LATEST STORIES
   ============================================= */

.stories-section {
    padding: 5rem 0;
    background: var(--white);
}

.stories-header {
    text-align: center;
    margin-bottom: 3rem;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* =============================================
   BLOG CARD
   ============================================= */

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}

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

.blog-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--cream-dark);
}

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

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-image-placeholder svg {
    opacity: 0.2;
}

.blog-card-body {
    padding: 1.4rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-title {
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 0.6rem;
    line-height: 1.4;
}

.blog-card-excerpt {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.views-badge {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--gray-400);
    font-size: 0.78rem;
}

.views-badge svg {
    opacity: 0.7;
}

.read-more-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.read-more-link:hover { color: var(--gold); }

/* =============================================
   DESTINATIONS PAGE
   ============================================= */

.page-hero {
    padding: 8rem 0 4rem;
    background: var(--navy);
    text-align: center;
}

.page-hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.75rem;
}

.page-hero p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
}

.destinations-section {
    padding: 4rem 0;
    background: var(--cream);
}

.country-section {
    margin-bottom: 3.5rem;
}

.country-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--cream-dark);
}

.country-header h2 {
    font-size: 1.6rem;
    color: var(--navy);
}

.country-code {
    background: var(--gold);
    color: var(--navy-dark);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
}

.city-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.city-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.city-card-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--navy);
}

.city-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.city-card-body {
    padding: 1rem;
}

.city-card-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.city-card-country {
    font-size: 0.78rem;
    color: var(--gray-400);
}

/* =============================================
   GALLERY PAGE
   ============================================= */

.gallery-section {
    padding: 4rem 0;
    background: var(--white);
}

.gallery-country-section {
    margin-bottom: 3rem;
}

.gallery-country-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.gallery-country-header h2 {
    font-size: 1.4rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
    background: var(--cream-dark);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,31,60,0.7) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 0.75rem;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-city-stamp {
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox.open {
    display: flex;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius);
}

.lightbox-caption {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-top: 1rem;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
    opacity: 0.7;
    transition: opacity var(--transition);
}

.lightbox-close:hover { opacity: 1; }

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    padding: 1rem 0.75rem;
    cursor: pointer;
    border-radius: var(--radius);
    transition: background var(--transition);
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.2);
}

/* =============================================
   CITY PAGE
   ============================================= */

.city-hero {
    min-height: 55vh;
    background: var(--navy-dark);
    display: flex;
    align-items: flex-end;
    padding-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.city-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.city-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,18,37,0.9) 0%, rgba(15,18,37,0.3) 100%);
}

.city-hero-content {
    position: relative;
    z-index: 2;
}

.city-country-label {
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.city-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 0.75rem;
}

.city-views {
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

/* City Tabs */
.city-tabs {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 60px;
    z-index: 100;
}

.tabs-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.tabs-nav::-webkit-scrollbar { display: none; }

.tab-btn {
    padding: 1rem 1.5rem;
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gray-600);
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: color var(--transition), border-color var(--transition);
    white-space: nowrap;
}

.tab-btn:hover { color: var(--navy); }

.tab-btn.active {
    color: var(--navy);
    border-bottom-color: var(--gold);
}

.tab-content {
    display: none;
    padding: 3rem 0;
}

.tab-content.active {
    display: block;
}

.city-content-section {
    background: var(--cream);
    min-height: 400px;
}

/* Places Cards */
.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.place-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}

.place-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.place-card-photo {
    width: 100%;
    height: 180px;
    background: var(--cream-dark);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.place-photo-skeleton {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #e8e4dc 25%, #f0ece4 50%, #e8e4dc 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.place-card-body {
    padding: 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.place-card-loading {
    color: var(--gray-400);
    font-size: 0.85rem;
    padding: 0.5rem 0;
}

.place-name {
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.place-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 0.4rem;
}

.star { font-size: 0.85rem; }
.star.full  { color: #f5a623; }
.star.half  { color: #f5a623; opacity: 0.6; }
.star.empty { color: #ddd; }

.place-rating-num {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-left: 4px;
}

.place-notes {
    font-size: 0.88rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-top: 0.5rem;
    flex: 1;
}

.place-type {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.1rem;
}

.place-price {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-600);
}

/* Place photo slider */
.place-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.place-slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.2s;
}

.place-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.45);
    color: #fff;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.2s;
    padding: 0;
}

.place-card:hover .place-slider-btn {
    opacity: 1;
}

.place-slider-prev { left: 6px; }
.place-slider-next { right: 6px; }

.place-slider-dots {
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
    z-index: 2;
}

.place-slider-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    transition: background 0.2s;
}

.place-slider-dot.active {
    background: #fff;
}

/* Tips List */
.tips-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tip-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.25rem 1.25rem 1.25rem 1.5rem;
    box-shadow: var(--shadow-sm);
    border-left: 3px solid var(--gold);
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* =============================================
   SINGLE BLOG POST
   ============================================= */

.post-hero {
    min-height: 60vh;
    background: var(--navy-dark);
    display: flex;
    align-items: flex-end;
    padding-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.post-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.post-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,18,37,0.92) 0%, rgba(15,18,37,0.2) 100%);
}

.post-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.post-title {
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 1rem;
}

.post-city-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 0.9rem;
}

.post-city-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(255,255,255,0.13);
    border: 1px solid rgba(255,255,255,0.25);
    color: #f5f0e8;
    padding: 0.28rem 0.75rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .15s, border-color .15s;
    font-family: var(--font-body, sans-serif);
}

.post-city-pill:hover {
    background: rgba(201,168,76,0.25);
    border-color: #c9a84c;
}

.post-hero-meta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: 0.25rem;
}

.post-author {
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
}

.post-views {
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.post-content-area {
    padding: 4rem 0;
    background: var(--white);
}

.post-content-inner {
    max-width: 780px;
    margin: 0 auto;
}

.post-content-inner h2, .post-content-inner h3 {
    margin: 2rem 0 1rem;
}

.post-content-inner p {
    margin-bottom: 1.25rem;
    color: var(--text-body);
    line-height: 1.8;
    font-size: 1.02rem;
}

.post-inline-photo {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin: 1.5rem 0;
    display: block;
}


.post-figure {
    margin: 2rem 0;
    padding: 0;
}

.post-figure img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin-bottom: 0;
}

.post-figure figcaption,
.post-body figcaption,
.post-caption {
    display: block;
    text-align: center;
    font-size: 0.88rem;
    color: #aaa49e;
    font-style: normal;
    margin: 0.2rem 0 0 0;
    padding: 0;
    line-height: 1.4;
}

.post-tips {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin: 2.5rem 0;
    border-left: 4px solid var(--gold);
}

.post-tips h3 {
    color: var(--navy);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* City cards in post */
.post-cities-section {
    padding: 4rem 0;
    background: var(--cream);
}

.post-cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* =============================================
   ABOUT / CONTACT
   ============================================= */

.about-section {
    padding: 5rem 0;
    background: var(--cream);
}

.about-content {
    max-width: 760px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-body);
}

.about-text p { margin-bottom: 1.25rem; }

.contact-section {
    padding: 5rem 0;
    background: var(--white);
}

.contact-form-wrap {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--navy);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    color: var(--text-body);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-message {
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

/* =============================================
   FOOTER
   ============================================= */

.site-footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.7);
    padding: 4rem 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    color: rgba(255,255,255,0.55);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
    transition: background var(--transition), color var(--transition);
}

.social-link:hover {
    background: var(--gold);
    color: var(--navy-dark);
}

.footer-nav h4,
.footer-lang h4 {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.footer-nav ul li,
.footer-lang ul li {
    margin-bottom: 0.5rem;
}

.footer-nav ul li a,
.footer-lang ul li a {
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
    transition: color var(--transition);
}

.footer-nav ul li a:hover,
.footer-lang ul li a:hover,
.footer-lang ul li a.active {
    color: var(--gold);
}


.footer-planner-btn {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    font-size: .85rem;
    padding: .5rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    transition: background .2s;
}
.footer-planner-btn:hover { background: var(--gold-light); color: var(--navy); }

.footer-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-planner {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.footer-planner p {
    color: rgba(255,255,255,0.45);
    font-size: .82rem;
    margin: 0;
}
.footer-bmc { flex-shrink: 0; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    padding: 1.25rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

/* =============================================
   BREADCRUMB
   ============================================= */

.breadcrumb {
    padding: 1rem 0;
    font-size: 0.82rem;
    color: var(--gray-400);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.breadcrumb a { color: var(--gray-400); }
.breadcrumb a:hover { color: var(--gold-dark); }
.breadcrumb .sep { opacity: 0.5; }

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
    .stories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 80%;
        max-width: 320px;
        background: var(--navy);
        padding: 5rem 2rem 2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        z-index: 999;
        box-shadow: -4px 0 30px rgba(0,0,0,0.3);
        overflow-y: auto;
    }

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

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 0;
    }

    .nav-links > li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .nav-links a {
        padding: 0.9rem 0;
        font-size: 1rem;
        width: 100%;
    }

    .mega-menu {
        position: static;
        transform: none;
        min-width: 0;
        width: 100%;
        padding: 1rem 0;
        border: none;
        background: rgba(255,255,255,0.05);
        display: none;
        border-radius: 0;
        box-shadow: none;
    }

    .has-dropdown.mobile-open .mega-menu {
        display: block;
    }

    .mega-menu-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .lang-switcher {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255,255,255,0.08);
        width: 100%;
    }

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

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

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

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

    #map-canvas {
        height: 350px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .tabs-nav {
        padding: 0 1rem;
    }

    .tab-btn {
        padding: 0.8rem 1rem;
        font-size: 0.82rem;
    }
}

@media (max-width: 480px) {
    .cities-grid {
        grid-template-columns: 1fr;
    }

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

    .post-cities-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   UTILITY CLASSES
   ============================================= */

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-muted { color: var(--gray-400); }

.fw-bold { font-weight: 700; }
.font-serif { font-family: 'Playfair Display', serif; }

.hidden { display: none !important; }
