:root {
    --primary-color: #2D3748;
    --accent-color: #E2E8F0;
    /* Light gray for pills */
    --accent-text: #2D3748;
    --bg-color: #F8F9FA;
    --card-bg: #FFFFFF;
    --text-color: #4A5568;
    --text-light: #718096;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --container-width: 1000px;
    /* Bit narrower to match image look */
    --header-height: 80px;
    --btn-primary: #2D3748;
    --btn-secondary: #747d6d;
    /* Greenish/Brownish from image */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: white;
    /* No shadow in image, clean look */
    height: var(--header-height);
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 30px;
    height: 30px;
    border-radius: 4px;
}

.nav {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.search-icon {
    font-size: 16px;
}

.menu-toggle {
    display: none;
}

/* Hero */
.hero {
    position: relative;
    height: 400px;
    background-image: url('https://images.unsplash.com/photo-1502602898657-3e91760cbb34?q=80&w=2073&auto=format&fit=crop');
    /* Paris */
    background-size: cover;
    background-position: center;
    margin: 20px auto 0;
    max-width: var(--container-width);
    /* Contained hero */
    border-radius: 2px;
    /* Slight radius maybe */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #333;
}



.hero-content {
    background: rgba(255, 255, 255, 0.85);
    /* Semi-transparent white box */
    padding: 30px 50px;
    border-radius: 4px;
    max-width: 500px;
    backdrop-filter: blur(2px);
}

.hero h1 {
    font-family: var(--font-body);
    /* Image looks sans-serif title or slab? */
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 10px;
    color: #1a202c;
}

.hero p {
    font-size: 14px;
    margin-bottom: 20px;
    color: #4a5568;
    font-weight: 500;
}

.btn {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: opacity 0.2s;
}

.btn-primary {
    background-color: #333;
    color: white;
}

.btn-share {
    background-color: var(--btn-secondary);
    color: white;
}

/* Destinations */
.destinations-section {
    padding: 40px 0;
    text-align: left;
}

.destinations-section h2 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.destinations-grid {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.destination-pill {
    background: white;
    border: 1px solid #eee;
    padding: 10px 20px;
    border-radius: 8px;
    /* Slightly rounded */
    text-decoration: none;
    color: var(--text-color);
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    min-width: 100px;
    justify-content: center;
}

.destination-pill:hover {
    background: #f7fafc;
    border-color: #cbd5e0;
}

.destination-pill2 {
    background: white;
    border: 1px solid #eee;
    padding: 10px 20px;
    border-radius: 8px;
    /* Slightly rounded */
    text-decoration: none;
    color: var(--text-color);
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    min-width: 100px;
    justify-content: center;
}

.destination-pill2:hover {
    background: #f7fafc;
    border-color: #cbd5e0;
}

.flag {
    font-size: 16px;
}

.flag-icon {
    width: 20px;
    height: auto;
    border-radius: 2px;
    object-fit: cover;
}

/* Content / Recommended */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-left h2 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

.social-tag {
    background: #888;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    text-decoration: none;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card {
    background: transparent;
    border-radius: 6px;
    overflow: hidden;
}

.card-image {
    height: 180px;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 10px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.card:hover .card-image img {
    transform: scale(1.03);
}

.card-body {
    padding: 5px 0;
}

.card-title {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #2d3748;
}

.card-meta {
    font-size: 11px;
    color: #a0aec0;
}

/* Footer */
.footer {
    border-top: 1px solid #eee;
    padding: 30px 0;
    margin-top: 50px;
    background: var(--bg-color);
    color: var(--text-light);
    font-size: 12px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    margin-right: 20px;
}

.footer-social .dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #cbd5e0;
    border-radius: 50%;
    margin: 0 4px;
}

.btn-subscribe {
    background: #747d6d;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 11px;
}

.copyright {
    text-align: center;
    font-size: 11px;
    color: #cbd5e0;
}

/* Froggy Badge */
.froggy-badge {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #f0fff4;
    border: 1px solid #9ae6b4;
    border-radius: 12px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    z-index: 999;
}

.froggy-badge img {
    width: 40px;
    margin-bottom: 5px;
}

.froggy-badge span {
    font-size: 12px;
    font-weight: 600;
    color: #2f855a;
}

/* Article Layout with Sidebar */
.main-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: var(--container-width);
    margin: 40px auto;
    padding: 0 20px;
}

.article-container {
    max-width: 100%;
    /* Reset max-width when inside grid */
    margin: 0;
    padding: 0;
}

.sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.sidebar-widget {
    background: white;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #eee;
    margin-bottom: 24px;
}

.sidebar-widget h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-color);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 8px;
}

.affiliate-link {
    display: block;
    margin-bottom: 12px;
    text-decoration: none;
    color: var(--text-color);
    font-size: 14px;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.affiliate-link:hover {
    color: var(--btn-secondary);
}

.affiliate-icon {
    width: 24px;
    height: 24px;
    background: #f0f0f0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.ad-banner {
    width: 100%;
    height: 250px;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #718096;
    border-radius: 4px;
    font-weight: 600;
}

/* About Page styles */
.about-container {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-content {
    flex: 1;
}

.about-content h1 {
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 500;
}

.about-content p {
    margin-bottom: 15px;
    font-size: 16px;
}

/* Article specific styles restated if needed or inherited */
.article-header {
    text-align: center;
    margin-bottom: 30px;
}

.article-meta-top {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
}

.article-title {
    font-family: var(--font-heading);
    font-size: 36px;
    /* Slightly smaller for 2-col layout */
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

.article-meta-bottom {
    color: var(--text-light);
    font-size: 14px;
}

.article-hero {
    width: 100%;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
}

.article-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    font-size: 17px;
    color: var(--text-color);
    line-height: 1.8;
}

.article-content h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.article-content p {
    margin-bottom: 20px;
}

blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    font-style: italic;
    font-size: 20px;
    color: #555;
    margin: 40px 0;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 0 8px 8px 0;
}

.article-footer {
    margin-top: 60px;
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 40px;
}

/* Countries Grid */
.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
}

.country-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    border: 1px solid #eee;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.country-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-color: #cbd5e0;
}

.country-flag-img {
    width: 60px;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.highlight-box {
    background: #fff5f5;
    border: 1px solid #fed7d7;
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
}

.highlight-box h3 {
    margin-top: 0;
    color: #c53030;
    font-size: 20px;
}


/* Blogger Section */
.blogger-section {
    background-color: white;
    padding: 80px 0;
    margin-top: 60px;
    border-top: 1px solid #f0f0f0;
}

.blogger-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
    margin-bottom: 60px;
}

.blogger-col h3 {
    font-family: var(--font-body);
    /* Reference image uses sans-serif for headers here */
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1a202c;
    margin-bottom: 20px;
}

.blogger-col p {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.8;
}

.why-list {
    list-style: none;
    text-align: left;
    display: inline-block;
    margin: 0 auto;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #4a5568;
}

.why-list .icon {
    font-size: 18px;
    color: var(--primary-color);
}

.divider {
    height: 1px;
    background-color: #e2e8f0;
    width: 100%;
    margin-bottom: 60px;
}

/* Profile Area */
.profile-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.profile-img-wrapper {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #b2f5ea;
    /* Teal-ish border from reference */
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info {
    text-align: left;
}

.profile-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 4px;
}

.profile-name {
    font-family: var(--font-body);
    font-size: 18px;
    color: #2d3748;
}

.profile-quote {
    max-width: 400px;
    text-align: left;
    position: relative;
    padding-left: 20px;
}

.profile-quote blockquote {
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    font-family: var(--font-heading);
    font-size: 20px;
    color: #2d3748;
    line-height: 1.4;
    font-style: normal;
}

.quote-mark {
    font-size: 40px;
    color: #cbd5e0;
    vertical-align: sub;
    line-height: 0;
}

.profile-quote cite {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-size: 14px;
    color: #718096;
}


@media (max-width: 900px) {
    .main-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        display: none;
        /* Hide sidebar on mobile or move to bottom if preferred, usually hiding or stacking is best. Stacking for SEO */
        /* display: block; */
        position: static;
        order: 2;
        /* Put below content */
    }
}

/* Global Filter Styles (Promoted from country.html) */
.filter-bar {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    /* Ensure they wrap on small screens */
}

.filter-btn {
    background: white;
    border: 1px solid #ddd;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}


/* Responsive */
@media (max-width: 900px) {
    .header-container {
        position: relative;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1001;
        position: relative;
        /* Ensure z-index works */
    }

    .menu-toggle span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: var(--text-color);
        border-radius: 3px;
        transition: all 0.3s;
    }

    /* Hamburger Animation */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        /* Start off-screen right */
        width: 280px;
        /* Fixed width sidebar */
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 80px 30px 30px;
        /* Top padding for close button/header space */
        box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
        display: flex;
        /* Always display flex, just hide position */
        gap: 20px;
        transition: right 0.3s ease-in-out;
        /* Smooth slide */
        z-index: 1000;
        align-items: flex-start;
        /* Left align items in sidebar */
        border-top: none;
    }

    .nav.active {
        right: 0;
        /* Slide in */
    }

    .nav-link {
        font-size: 16px;
        /* Larger text for mobile */
        width: 100%;
        padding-bottom: 10px;
        border-bottom: 1px solid #f0f0f0;
    }

    .main-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        display: none;
    }

    .blogger-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 768px) {
    /* .nav display logic is handled in max-width: 900px */

    .menu-toggle {
        /* Already styled in 900px query, ensuring consistent size if needed, or remove duplication */
        /* display: flex; -> inherited */
        /* flex-direction: column; -> inherited */
        gap: 5px;
        /* Adjust gap if specifically needed for smaller screens, otherwise inherited 100% height from 900px style might conflict with this gap approach. 
                     The 900px style uses space-between and explicit heights. 
                     I will comment this out to let 900px style prevail for consistency. */
        /* width: 30px; */
        /* height: 21px; */
    }

    /* .menu-toggle span matched in 900px */

    .grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .destinations-grid {
        flex-wrap: wrap;
    }

    .about-container {
        flex-direction: column;
    }

    .article-title {
        font-size: 28px;
    }

    .article-hero {
        height: 250px;
    }

    .blogger-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .profile-area {
        flex-direction: column;
        text-align: center;
    }

    .profile-info {
        text-align: center;
    }

    .profile-quote {
        text-align: center;
        padding-left: 0;
    }

    .blogger-hero-image {
        height: 250px;
    }
}

/* Blogger Hero Image (Base) */
.blogger-hero-image {
    width: 100%;
    height: 400px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.blogger-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Blog Page Controls */
.blog-controls-wrapper {
    background: white;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #eee;
    margin-bottom: 40px;
}

.input-group {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.search-box {
    flex: 2;
    /* Takes more space */
    position: relative;
    display: flex;
    align-items: center;
}

.search-box input {
    width: 100%;
    padding: 12px 16px 12px 40px;
    /* Space for icon */
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 14px;
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.2s;
    color: var(--text-color);
}

.search-box input:focus {
    border-color: var(--primary-color);
}

.search-icon-input {
    position: absolute;
    left: 14px;
    color: #a0aec0;
    pointer-events: none;
    font-size: 14px;
}

.select-wrapper {
    flex: 1;
    position: relative;
    min-width: 200px;
}

.select-wrapper select {
    width: 100%;
    padding: 12px 30px 12px 16px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 14px;
    font-family: var(--font-body);
    outline: none;
    appearance: none;
    background: white;
    cursor: pointer;
    color: var(--text-color);
}

.select-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #a0aec0;
    pointer-events: none;
    font-size: 10px;
}

.blog-filters {
    justify-content: flex-start;
    /* Left align on desktop */
    margin-bottom: 0 !important;
    /* Override default filter-bar margin */
}

/* Responsive Blog Controls */
@media (max-width: 768px) {
    .blog-controls-wrapper {
        padding: 16px;
    }

    .input-group {
        flex-direction: column;
        gap: 15px;
    }

    .search-box,
    .select-wrapper {
        width: 100%;
        flex: auto;
    }

    .blog-filters {
        justify-content: flex-start;
        overflow-x: auto;
        /* Allow Scroll on very small screens */
        padding-bottom: 5px;
        /* For scrollbar space */
        justify-content: center;
        /* Center buttons on mobile */
        flex-wrap: wrap;
    }
}