@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');

:root {
    --primary-blue: #1d6ed3;
    --orange: #f07d58;
    --dark: #1a1a1a;
    --text-muted: #666;
    --bg-light: #f4f5f7;
    --border-color: #eaeaea;
}

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

body {
    font-family: 'DM Sans', sans-serif;
    line-height: 1.625;
    color: var(--dark);
    background: #fff;
    overflow-x: hidden;
    font-size: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
}

p {
    font-size: 1.125rem;
    line-height: 1.75rem;
    max-width: 65ch;
}

/* NAVBAR */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 4%;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    transition: 0.3s;
}

.nav-links li {
    margin-left: 12px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    padding: 6px 10px;
    border-radius: 20px;
    transition: 0.3s;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.nav-links .active {
    background: #eef4ff;
    color: var(--primary-blue);
}

/* MOBILE MENU TOGGLE */
.menu-toggle {
    display: none !important;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
}

/* =========================================
   HERO — Fully Responsive (all breakpoints)
   ========================================= */
.hero {
    height: 88vh;
    min-height: 500px;
    background: linear-gradient(rgba(0,0,0,0.22), rgba(0,0,0,0.22)),
                url('https://images.unsplash.com/photo-1697163700052-dbbedf1f7073?auto=format&fit=crop&w=1600');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero-content {
    padding: 0 24px;
    max-width: 900px;
    width: 100%;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 18px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.35);
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    max-width: 700px;
    margin: 0 auto 32px;
    font-weight: 400;
    text-shadow: 0 1px 8px rgba(0,0,0,0.45);
    line-height: 1.6;
    opacity: 0.95;
}

.hero-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btns .btn-blue {
    background: var(--primary-blue);
    color: #fff;
    padding: 15px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 18px rgba(29,110,211,0.4);
}

.hero-btns .btn-blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(29,110,211,0.5);
}

.hero-btns .btn-outline {
    border: 1.5px solid rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 15px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: background 0.2s, transform 0.2s;
}

.hero-btns .btn-outline:hover {
    background: rgba(255,255,255,0.22);
    transform: translateY(-2px);
}

/* ── Tablet (769px – 1024px) ── */
@media (max-width: 1024px) {
    .hero {
        height: 80vh;
    }
    .hero-content h1 {
        font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    }
}

/* ── Large mobile (481px – 768px) ── */
@media (max-width: 768px) {
    .hero {
        min-height: 90vh;
        height: 100svh;
        padding: 0;
        align-items: flex-end;
        background-position: center center;
    }
    .hero-content {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;          /* padding included in width */
        padding: 32px 20px 40px;
        background: linear-gradient(
            to top,
            rgba(0,0,0,0.88) 0%,
            rgba(0,0,0,0.48) 55%,
            transparent 100%
        );
        text-align: left;
    }
    /* 5.5vw: fits even 26-char heading at 360px+ without wrapping */
    .hero-content h1 {
        font-size: 5.5vw;
        letter-spacing: -0.02em;
        line-height: 1.12;
        margin-bottom: 8px;
        text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    }
    /* 3.5vw: fits ~47-char subheading at 360px+ without wrapping */
    .hero-content p {
        font-size: 3.5vw;
        margin: 0 0 20px;
        max-width: 100%;
        opacity: 0.9;
        line-height: 1.5;
        text-shadow: 0 1px 6px rgba(0,0,0,0.4);
    }
    .hero-btns {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }
    .hero-btns .btn-blue,
    .hero-btns .btn-outline {
        padding: 14px 20px;
        font-size: 3.8vw;
        border-radius: 50px;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }
    .hero-btns .btn-blue {
        box-shadow: 0 4px 20px rgba(29,110,211,0.45);
    }
    .hero-btns .btn-outline {
        border: 1.5px solid rgba(255,255,255,0.55);
        background: rgba(255,255,255,0.1);
    }
}

/* ── Small mobile (≤ 480px) ── */
@media (max-width: 480px) {
    .hero {
        min-height: 92vh;
    }
    .hero-content {
        padding: 28px 16px 36px;
    }
    /* vw already scales down naturally with smaller viewport */
    .hero-btns .btn-blue,
    .hero-btns .btn-outline {
        padding: 13px 14px;
        font-size: 4vw;
    }
}

/* ── Very small (≤ 360px) ── */
@media (max-width: 360px) {
    .hero-content {
        padding: 24px 14px 32px;
    }
    .hero-content h1 {
        font-size: 5.5vw;  /* same ratio, 19.8px at 360px – still fits */
    }
    .hero-content p {
        font-size: 3.5vw;  /* 12.6px at 360px – readable 1-line subheading */
    }
    .hero-btns .btn-blue,
    .hero-btns .btn-outline {
        font-size: 4.2vw;
        padding: 12px 12px;
    }
}


/* SECTIONS */
.section-padding {
    padding: 80px 8%;
    text-align: center;
    background: var(--bg-light);
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 50px;
}


/* GRIDS */
.dest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* =========================================
   BLOG SECTION — Latest Blog Posts
   ========================================= */
.blog-section {
    background: #fff !important;
    padding: 80px 8% 90px;
    text-align: center;
}

/* ---- Section header ---- */
.blog-section-header {
    text-align: center;
    margin-bottom: 52px;
}

/* Suppress editor-injected <br> that cause awkward wrapping */
.blog-section-header br {
    display: none;
}

/* Optional "Our Blog" pill label injected via ACF span or auto */
.blog-section-header .blog-label {
    display: inline-block;
    background: #eef4ff;
    color: var(--primary-blue);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.blog-section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 0;
    letter-spacing: -0.025em;
    line-height: 1.15;
    position: relative;
    display: inline-block;
    padding-bottom: 18px;
}

/* Accent line under heading */
.blog-section-header h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 52px;
    height: 3px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--primary-blue), #5ba4f5);
}

.blog-section-header p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 620px;          /* wide enough to avoid orphaned words */
    margin: 20px auto 0;
    line-height: 1.75;
    white-space: normal;       /* let text wrap naturally */
}

/* Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Card */
.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

/* Image area */
.blog-card-img-link {
    display: block;
    text-decoration: none;
    overflow: hidden;
}

.blog-img-container {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--bg-light);
}

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

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

/* Category badge */
.blog-category {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--primary-blue);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Card body */
.blog-body {
    padding: 22px 22px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: left;
}

.blog-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 10px;
}

.blog-title a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.2s;
}

.blog-title a:hover {
    color: var(--primary-blue);
}

.blog-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0 0 16px;
    flex: 1;
    max-width: none;
}

/* Footer row */
.blog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

.blog-date {
    font-size: 0.8rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-date i {
    color: var(--primary-blue);
}

.blog-read-more {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none;
    transition: gap 0.2s;
}

.blog-read-more:hover {
    text-decoration: underline;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 60px 5% 70px;
    }
    .blog-section-header {
        margin-bottom: 36px;
    }
    .blog-section-header h2 {
        font-size: 1.75rem;
        padding-bottom: 16px;
    }
    .blog-section-header p {
        font-size: 0.97rem;
        max-width: 90%;         /* full width on mobile avoids orphans */
    }
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .blog-img-container {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .blog-section {
        padding: 48px 4% 60px;
    }
    .blog-section-header p {
        font-size: 0.9rem;
        max-width: 100%;
    }
    .blog-img-container {
        height: 180px;
    }
    .blog-title {
        font-size: 1.1rem;
    }
}

.grid-3,
.event-grid,
.things-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

/* SUBPAGE HEADER (Text Only) */
.subpage-header {
    text-align: center;
    padding: 80px 20px 40px;
    background: var(--bg-light);
}

.subpage-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.75rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
    letter-spacing: -0.02em;
}

.subpage-header p {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
}

/* Single blog post — premium layout (hero → title → content + sidebar) */
.single-premium {
    background: var(--bg-light);
}

.single-premium-hero {
    width: 100%;
    background: #1a1a1a;
    overflow: hidden;
}

.single-premium-hero-img {
    width: 100%;
    display: block;
    height: min(58vh, 520px);
    object-fit: cover;
}

.single-premium-hero-placeholder {
    height: min(42vh, 320px);
    background: linear-gradient(135deg, #2c3e50 0%, #1a1a1a 100%);
}

.single-premium-shell {
    padding: 0 5% 90px;
    margin-top: -48px;
    position: relative;
    z-index: 2;
}

.single-premium-grid {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 36px;
    align-items: start;
}

.single-premium-sidebar {
    position: sticky;
    top: 100px;
}

.single-premium-main-card {
    background: #fff;
    border-radius: 18px;
    padding: 44px 48px 48px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: left;
}

.single-premium-category {
    margin-bottom: 18px;
}

.single-premium-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    line-height: 1.12;
    color: var(--dark);
    letter-spacing: -0.02em;
    margin: 0 0 22px;
}

.single-premium-meta-wrap .post-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 26px;
    margin: 0 0 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
    color: var(--text-muted);
}

.single-premium-meta-wrap .post-meta a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.single-premium-meta-wrap .post-meta a:hover {
    text-decoration: underline;
}

.single-premium-meta-wrap .meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.single-premium-meta-wrap .meta-label {
    font-weight: 500;
    margin-right: 4px;
}

.single-premium-content {
    max-width: none;
}

.single-premium-content > p:first-of-type {
    font-size: 1.2rem;
    line-height: 1.75;
    color: #444;
}

.single-premium-page-links {
    margin: 28px 0;
    padding: 16px 20px;
    background: var(--bg-light);
    border-radius: 10px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.single-premium-page-links a {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    margin: 0 4px;
}

.single-premium-comments {
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid var(--border-color);
}

/* Sidebar column */
.single-premium-sidebar .widget {
    margin-bottom: 22px;
    background: #fff;
    border-radius: 16px;
    padding: 26px 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.single-premium-sidebar .widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.single-premium-sidebar .widget li {
    margin-bottom: 10px;
}

.single-premium-sidebar .widget a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.single-premium-sidebar .widget a:hover {
    text-decoration: underline;
}

.single-premium-sidebar .single-premium-widget-title,
.single-premium-sidebar .widget h5 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--dark);
    margin: 0 0 16px;
}

.single-premium-sidebar .widget p,
.single-premium-sidebar .widget li {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.single-premium-widget-card {
    background: #fff;
    border-radius: 16px;
    padding: 26px 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 22px;
}

.single-premium-widget-card .single-premium-widget-title {
    margin-bottom: 18px;
}

.single-sidebar-recent {
    list-style: none;
    margin: 0;
    padding: 0;
}

.single-sidebar-recent li + li {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border-color);
}

.single-sidebar-recent-link {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
}

.single-sidebar-recent-link:hover {
    opacity: 0.85;
}

.single-sidebar-recent-link:hover .single-sidebar-recent-title {
    color: var(--primary-blue);
}

.single-sidebar-recent-thumb {
    flex-shrink: 0;
    width: 72px;
    height: 56px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-light);
}

.single-sidebar-recent-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.single-sidebar-recent-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.single-sidebar-recent-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.35;
    transition: color 0.2s;
}

.single-sidebar-recent-date {
    font-size: 0.8rem;
    color: #999;
}

.single-premium-widget-cta p {
    margin-bottom: 18px;
}

.single-premium-widget-btn {
    display: inline-block;
    background: var(--primary-blue);
    color: #fff !important;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.single-premium-widget-btn:hover {
    background: #1557a8;
    transform: translateY(-1px);
}

@media (max-width: 1100px) {
    .single-premium-grid {
        grid-template-columns: 1fr;
    }

    .single-premium-sidebar {
        position: static;
        order: 2;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 20px;
    }

    .single-premium-sidebar .widget,
    .single-premium-widget-card {
        margin-bottom: 0;
    }

    .single-sidebar-fallback {
        display: contents;
    }

    .single-destination-sidebar-fallback {
        display: contents;
    }
}

@media (max-width: 768px) {
    .single-premium-shell {
        padding: 0 20px 60px;
        margin-top: -32px;
    }

    .single-premium-main-card {
        padding: 28px 22px 32px;
    }

    .single-premium-hero-img {
        height: min(48vh, 380px);
    }
}

/* Single destination travel guide */
.single-destination-back {
    margin: 0 0 12px;
}

.single-destination-back a {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary-blue);
    text-decoration: none;
}

.single-destination-back a:hover {
    text-decoration: underline;
}

.single-destination-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 26px;
    margin: 0 0 8px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
    color: var(--text-muted);
}

.single-destination-meta .meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.single-destination-meta .meta-label {
    font-weight: 500;
    margin-right: 4px;
}

.single-destination-meta a {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
}

.single-destination-meta a:hover {
    text-decoration: underline;
}

.single-destination-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 28px;
}

.single-post-tags {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    text-align: left;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.single-post-tags .tags-label {
    font-weight: 700;
    color: var(--dark);
    margin-right: 8px;
}

.single-post-tags a {
    display: inline-block;
    background: var(--bg-light);
    padding: 6px 14px;
    border-radius: 6px;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 4px 6px 4px 0;
    transition: 0.2s;
}

.single-post-tags a:hover {
    background: var(--primary-blue);
    color: #fff;
}

/* SHARED CARDS */
.dest-card,
.food-card,
.event-card,
.things-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.dest-card:hover,
.food-card:hover,
.event-card:hover,
.things-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.dest-img-container,
.food-img-container,
.event-img-container,
.things-img-container {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: #eef4ff;
}

.dest-img-container img,
.food-img-container img,
.event-img-container img,
.things-img-container img,
.things-img-container a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dest-card:hover .dest-img-container img,
.food-card:hover .food-img-container img,
.event-card:hover .event-img-container img,
.things-card:hover .things-img-container img {
    transform: scale(1.05);
}

.dest-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #fff;
    color: #111827;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
}

.dest-label p {
    margin: 0 !important;
    font-size: 0.75rem !important;
    color: #111827 !important;
    line-height: 1 !important;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dest-label i {
    color: var(--primary-blue);
}

.category-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-blue);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.estimate-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: #111827;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.dest-card-body,
.food-card-body,
.event-card-body,
.things-card-body {
    padding: 20px 20px 12px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.dest-card-body h3,
.food-card-body h3,
.event-card-body h3,
.things-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0;
}

.dest-card-body h3 a,
.food-card-body h3 a,
.event-card-body h3 a,
.things-card-body h3 a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.2s ease;
    display: block;
    margin-bottom: 0 !important;
}

.dest-card-body h3 a:hover,
.food-card-body h3 a:hover,
.event-card-body h3 a:hover,
.things-card-body h3 a:hover {
    color: var(--primary-blue);
}

.dest-card-body p,
.dest-card-excerpt,
.food-card-body p,
.event-card-body p,
.things-card-body p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem !important;
    color: #526071 !important;
    margin-bottom: 15px !important;
    line-height: 1.6 !important;
}

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

.dest-card-more {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-blue);
    text-decoration: none;
    transition: transform 0.2s ease;
    display: inline-block;
}

.dest-card-more:hover {
    transform: translateX(3px);
}

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

.tag {
    border: 1px solid #e0e0e0;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    color: var(--primary-blue);
    font-weight: 600;
    display: flex;
    align-items: center;
    background: #fafafa;
}

/* Destinations listing (page template + archive) */
.dest-listing-section {
    background: var(--bg-light);
}

.dest-listing-grid {
    max-width: 1240px;
    margin: 0 auto;
}

.dest-listing-section .archive-description {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.1rem;
    padding-top: 10px;
}

.dest-card--listing {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.dest-card-media-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.dest-img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1d6ed3 0%, #1557a8 100%);
    color: #fff;
    font-size: 2.5rem;
}

.dest-card--listing .dest-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding-bottom: 22px;
}

.dest-card-excerpt {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0 0 16px;
}

.dest-card--listing .dest-card-body .highlights {
    margin-bottom: 8px;
}

.dest-card-footer {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--border-color);
}

.dest-card-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.2s, gap 0.2s;
}

.dest-card-more:hover {
    color: var(--orange);
    gap: 10px;
}

.dest-listing-empty {
    grid-column: 1 / -1;
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.dest-pagination {
    margin-top: 48px;
    text-align: center;
}

.tag-temp {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-blue);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
}

.tag-veg {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #4caf50;
    color: #fff;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* BLOG CARDS */
.blog-card {
    text-align: left;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-img {
    height: 220px;
    width: 100%;
    object-fit: cover;
}

.blog-body {
    padding: 20px 25px 25px;
}

.blog-category {
    background: var(--primary-blue);
    color: #fff;
    padding: 4px 12px;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-body h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.2rem;
    line-height: 1.3;
    font-family: 'Playfair Display', serif;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 0.8rem;
    color: #999;
}

.blog-footer a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 700;
}

/* BEACHES PARALLAX */
.beaches-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 65vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 80px 8%;
    background-color: #2c3e50;
}

.beaches-section .content.text-center {
    max-width: 760px;
    margin: 0 auto 8px;
}

.beaches-section h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    text-shadow: 0 2px 18px rgba(0,0,0,0.4);
    margin-bottom: 16px;
}

.beaches-section p {
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    opacity: 0.92;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.65;
    text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

.beach-tags {
    display: flex;
    gap: 10px;
    margin: 28px 0 6px;
    flex-wrap:1749 wrap;
    justify-content: center;
}

.beach-tag {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    padding: 9px 22px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    white-space: nowrap;
}

.btn-orange {
    background: var(--orange);
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 20px;
    transition: 0.3s;
}

.btn-orange:hover {
    background: #d96843;
}

/* CTA BANNER & FOOTER */
.site-footer {
    background: #fff;
    padding: 60px 0 30px;
    font-size: 0.95rem;
    margin-top: 0;
    position: relative;
    border-top: 1px solid var(--border-color);
}

.cta-banner {
    background: var(--primary-blue);
    margin: 60px 8% 40px;
    padding: 50px 60px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    box-shadow: 0 10px 30px rgba(29, 110, 211, 0.2);
    position: relative;
    z-index: 10;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.cta-content p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin: 0;
    font-weight: 400;
    max-width: 100%;
}

.btn-white {
    background: #fff;
    color: var(--primary-blue);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-white:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding: 0 8%;
    margin-bottom: 40px;
}

.footer-info .logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-info .logo img {
    height: 40px;
}

.footer-info .logo span {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--dark);
    line-height: 1.1;
    margin-left: 15px;
}

.footer-info p {
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.8;
    max-width: 400px;
}

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark);
    margin-bottom: 25px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: var(--text-muted);
}

.footer-col ul li i {
    margin-right: 15px;
    color: var(--primary-blue);
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary-blue);
}

.socials {
    display: flex;
    gap: 15px;
}

.socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid var(--border-color);
}

.socials a:hover {
    background: var(--primary-blue);
    color: #fff;
    border-color: var(--primary-blue);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 8% 0;
    border-top: 1px solid var(--border-color);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--primary-blue);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
    .dest-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1300px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 80px 20px 40px;
        box-shadow: none;
        z-index: 9999;
        overflow-y: auto;
    }

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

    .nav-links li {
        margin: 8px 0;
        width: auto;
        text-align: center;
        margin-left: 0 !important;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 10px 24px;
    }

    .menu-toggle {
        display: block !important;
    }
}

@media (max-width: 768px) {

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .subpage-header {
        padding: 50px 20px 25px;
    }

    .subpage-header h1 {
        font-size: 2.5rem;
    }

    .subpage-header p,
    .subpage-header .archive-description {
        font-size: 1rem;
        line-height: 1.6;
    }

    .food-hero h1 {
        font-size: 2.5rem;
    }

    .hero-btns {
        flex-direction: column;
    }

    .dest-grid,
    .blog-grid,
    .grid-3,
    .grid-4,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-info p {
        margin: 20px auto;
    }

    .footer-col ul li {
        justify-content: center;
    }

    .socials {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 576px) {

    .dest-grid,
    .blog-grid,
    .grid-3,
    .grid-4,
    .grid-2,
    .things-grid {
        grid-template-columns: 1fr;
    }
}


/* STANDARD PAGE & POST CONTENT */
.page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    text-align: left;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.page-content h2,
.page-content h3,
.page-content h4 {
    font-family: 'Playfair Display', serif;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--dark);
}

.page-content h2 {
    font-size: 1.8rem;
}

.page-content h3 {
    font-size: 1.5rem;
}

.page-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-muted);
}

.page-content ul,
.page-content ol {
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.page-content li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .page-container {
        padding: 20px;
        margin-top: 0;
    }
}

/* FOOD PAGE REDESIGN */
.food-hero {
    background-color: #f8fafc;
    padding: 100px 20px 80px;
}

.food-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.food-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.food-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.food-img-container {
    position: relative;
    height: 250px;
    width: 100%;
    overflow: hidden;
}

.food-img-container img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.5s ease;
    display: block;
}

.food-card:hover .food-img-container img {
    transform: scale(1.05);
}

.food-img-container .tag-veg {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #22c55e;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
}

.food-card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.food-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0f172a;
}

.food-card-body p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.ingredients-section {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

.ingredients-title {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94a3b8;
    margin-bottom: 12px;
}

.ingredients-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ingredient-pill {
    background: #f1f5f9;
    color: #334155;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* THINGS TO DO REDESIGN */
.things-hero {
    background-color: #f8f9fa;
    padding: 120px 20px 80px;
    text-align: center;
    color: #111827;
    margin-bottom: 60px;
}

.things-hero-content h1 {
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111827;
}

.things-hero-content p {
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
    color: #6b7280;
    line-height: 1.6;
}

.category-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #fff;
    color: #111827;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.things-section {
    padding: 0 8% 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.things-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.things-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.things-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.things-img-container {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.things-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.things-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 40px 20px 20px;
    color: #fff;
}

.things-label h3 {
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin: 0;
}

.things-card-body {
    padding: 25px;
    flex-grow: 1;
}

.things-card-body p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.estimate-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-blue);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
    .things-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .things-hero {
        padding: 80px 20px;
    }

    .things-hero-content h1 {
        font-size: 2.5rem;
    }
}

/* ============================================================
   PROFESSIONAL BLOG DESIGN (CLEAN & MINIMALIST)
   ============================================================ */

/* Archive Header */
.blog-archive-header {
    background: #fff;
    padding: 100px 0 60px;
    border-bottom: 1px solid var(--border-color);
}

.archive-title-professional {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark);
    letter-spacing: -0.02em;
}

.archive-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Blog Grid */
.blog-listing-professional {
    background: #fbfbfc;
    padding: 80px 0;
}

.blog-grid-professional {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.blog-card-professional {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.blog-card-professional:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.blog-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

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

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

.blog-card-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-blue);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-title {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.blog-card-title a {
    color: var(--dark);
    text-decoration: none;
    transition: 0.2s;
}

.blog-card-title a:hover {
    color: var(--primary-blue);
}

.blog-card-excerpt {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
}

.blog-card-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.blog-card-date {
    font-size: 0.85rem;
    color: #999;
    font-weight: 500;
}

.blog-card-more {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Pagination */
.pagination-professional {
    margin-top: 60px;
    text-align: center;
}

.pagination-professional .pagination-wrap ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pagination-professional .pagination-wrap li a,
.pagination-professional .pagination-wrap li span {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: 0.3s;
}

.pagination-professional .pagination-wrap li .current,
.pagination-professional .pagination-wrap li a:hover {
    background: var(--primary-blue);
    color: #fff;
    border-color: var(--primary-blue);
}

/* Responsive Professional */
@media (max-width: 1200px) {
    .blog-grid-professional {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid-professional {
        grid-template-columns: 1fr;
    }
    
    .archive-title-professional {
        font-size: 3rem;
    }
}

/* EVENTS PAGE REDESIGN */
.event-hero {
    background-color: #fbfbfc;
    padding: 100px 20px 80px;
    border-bottom: 1px solid var(--border-color);
}

.event-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1300px;
    margin: 0 auto;
}

.event-card {
    background: #fff;
    border: 1px solid #eef0f3;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.event-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.event-img-container {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.event-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.event-card:hover .event-img-container img {
    transform: scale(1.05);
}

.event-date-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fff;
    color: var(--primary-blue);
    padding: 8px 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    font-weight: 800;
    line-height: 1.2;
    z-index: 2;
}

.event-date-badge .day {
    display: block;
    font-size: 1.5rem;
}

.event-date-badge .month {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.event-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
    line-height: 1.3;
}

.event-meta {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eef0f3;
}

.event-meta-item {
    display: flex;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.event-meta-item i {
    color: var(--primary-blue);
    width: 24px;
    font-size: 1.1rem;
}

.event-card-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

@media (max-width: 1024px) {
    .dest-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .grid-3,
    .grid-4,
    .event-grid,
    .things-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .dest-grid,
    .grid-3,
    .grid-4,
    .event-grid,
    .things-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .event-hero h1 {
        font-size: 2rem;
    }
}

/* WHERE TO EAT SECTION REDESIGN */
.where-to-eat-section {
    background: #fff !important;
    padding: 80px 8% !important;
}

.where-to-eat-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.where-to-eat-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.where-to-eat-container h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), #5ba4f5);
    margin: 14px auto 0;
    border-radius: 3px;
}

.where-to-eat-content {
    font-size: 1.08rem;
    line-height: 1.85;
    color: #4a5568;
    margin-top: 24px;
}

.where-to-eat-content p {
    margin-bottom: 18px !important;
    max-width: none !important;
    text-align: center;
    color: #4a5568;
    font-size: 1.08rem;
    line-height: 1.85;
}

.where-to-eat-content p:last-child {
    margin-bottom: 0 !important;
}

@media (max-width: 768px) {
    .where-to-eat-container h2 {
        font-size: 1.85rem;
    }
    .where-to-eat-content {
        font-size: 1rem;
        line-height: 1.7;
    }
}

/* ============================================================
   ALL PAGES — GLOBAL RESPONSIVE FIXES
   ============================================================ */

/* ── Tablet (769px – 1024px) ── */
@media (max-width: 1024px) {

    .section-padding {
        padding: 52px 5%;
    }

    .dest-grid,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 22px !important;
    }

    .grid-3,
    .event-grid,
    .things-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 22px !important;
    }

    .things-section {
        padding: 0 5% 60px !important;
    }

    .dest-img-container,
    .event-img-container,
    .things-img-container {
        height: 220px !important;
    }

    .cta-banner {
        margin: 40px 5% 30px !important;
        padding: 40px 36px !important;
    }
}

/* ── Mobile (≤ 768px) ── */
@media (max-width: 768px) {

    /* Hero — shift content up and centre it */
    .hero {
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }

    .hero-content {
        text-align: center !important;
        padding: 0 22px !important;
        margin-top: 232px !important; /* gentle nudge upward */
    }

    .hero-content h1 {
        font-size: clamp(1.7rem, 7vw, 2.4rem) !important;
        text-align: center !important;
        margin-bottom: 12px !important;
    }

    .hero-content p {
        text-align: center !important;
        font-size: 0.95rem !important;
    }

    .hero-btns {
        justify-content: center !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 10px !important;
        margin-top: 24px !important;
    }

    .hero-btns .btn-blue,
    .hero-btns .btn-outline {
        width: 100% !important;
        max-width: 320px !important;
        text-align: center !important;
        justify-content: center !important;
    }

    .section-padding {
        padding: 36px 4% 48px !important;
    }

    .section-header h2 {
        font-size: 1.75rem !important;
        word-break: break-word;
        text-align: left;
    }

    .section-header .heading-top {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 6px !important;
        width: 100% !important;
    }

    .heading-excerpt {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        text-align: left;
    }

    .dest-grid,
    .grid-4,
    .grid-3,
    .grid-2,
    .event-grid,
    .things-grid,
    .food-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .dest-listing-section {
        padding: 36px 4% 48px !important;
    }

    .things-section {
        padding: 0 4% 48px !important;
    }

    .dest-img-container,
    .food-img-container,
    .event-img-container {
        height: 210px !important;
    }

    .things-img-container {
        height: 220px !important;
    }

    .dest-card-body,
    .event-card-body,
    .things-card-body {
        padding: 18px 18px 14px !important;
    }

    .dest-card-body h3,
    .event-card-body h3,
    .things-card-body h3 {
        font-size: 1.15rem !important;
    }

    .things-label h3 {
        font-size: 1.2rem !important;
    }

    .event-card-body {
        padding: 20px !important;
    }

    .event-date-badge {
        padding: 6px 10px !important;
    }

    .event-date-badge .day {
        font-size: 1.2rem !important;
    }

    .cta-banner {
        flex-direction: column !important;
        align-items: stretch !important;
        margin: 32px 4% 20px !important;
        padding: 30px 20px !important;
        gap: 16px !important;
        text-align: center !important;
    }

    .cta-content h2 {
        font-size: 1.5rem !important;
    }

    .cta-content p {
        font-size: 1rem !important;
    }

    .btn-white {
        justify-content: center !important;
        width: 100% !important;
        padding: 14px 20px !important;
    }

    .subpage-header h1 {
        font-size: 2rem !important;
    }

    .food-hero h1,
    .event-hero h1 {
        font-size: 2rem !important;
    }

    .dest-pagination {
        margin-top: 28px !important;
    }

    .pagination-professional .pagination-wrap ul {
        flex-wrap: wrap !important;
        gap: 6px !important;
    }

    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
        padding: 0 5% !important;
        text-align: center !important;
    }

    .footer-info p {
        max-width: 100% !important;
        margin: 0 auto 20px !important;
    }

    .footer-col ul li {
        justify-content: center !important;
    }

    .socials {
        justify-content: center !important;
    }

    .footer-bottom {
        flex-direction: column !important;
        gap: 12px !important;
        text-align: center !important;
        padding: 20px 5% 0 !important;
    }

    .blog-section {
        padding: 48px 4% 56px !important;
    }

    .blog-section-header {
        margin-bottom: 28px !important;
    }

    .blog-section-header h2 {
        font-size: 1.65rem !important;
    }

    .beaches-section h2 {
        font-size: 2rem !important;
    }

    .beaches-section {
        padding: 48px 5% !important;
    }
}

/* ── Small mobile (≤ 480px) ── */
@media (max-width: 480px) {

    .section-padding {
        padding: 28px 4% 40px !important;
    }

    .section-header h2 {
        font-size: 1.5rem !important;
    }

    .heading-excerpt {
        font-size: 0.9rem !important;
    }

    .dest-img-container,
    .food-img-container,
    .event-img-container,
    .things-img-container {
        height: 190px !important;
    }

    .dest-card-body,
    .event-card-body,
    .things-card-body {
        padding: 14px !important;
    }

    .dest-card-body h3,
    .event-card-body h3,
    .things-card-body h3 {
        font-size: 1.05rem !important;
    }

    .cta-banner {
        margin: 24px 4% 16px !important;
        padding: 24px 16px !important;
    }

    .cta-content h2 {
        font-size: 1.3rem !important;
    }

    .dest-listing-section {
        padding: 24px 4% 36px !important;
    }

    .things-section {
        padding: 0 4% 36px !important;
    }

    .dest-label {
        padding: 4px 10px !important;
        font-size: 0.7rem !important;
    }

    .tag-temp,
    .category-tag,
    .estimate-tag {
        font-size: 0.68rem !important;
        padding: 4px 8px !important;
    }

    .footer-content {
        padding: 0 4% !important;
    }

    .beaches-section h2 {
        font-size: 1.65rem !important;
    }
}
