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

:root {
    --primary-color: #000;
    --secondary-color: #fff;
    --accent-color: #0071e3;
    --text-dark: #1d1d1f;
    --text-light: #6e6e73;
    --bg-light: #f5f5f7;
    --border-color: #e5e5e7;
    --spacing-unit: 1rem;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* CHANGE THIS LINE - Default system fonts */
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    
    /* TO ONE OF THESE OPTIONS */
    
    /* Option A: Poppins (Modern & Clean) */
    /* --font-family: 'Poppins', sans-serif; */
    
    /* Option B: Inter (Professional) */
    /* --font-family: 'Inter', sans-serif; */
    
    /* Option C: Montserrat (Bold & Modern) */
    /* --font-family: 'Montserrat', sans-serif; */
    
    /* Option D: Raleway (Elegant) */
    /* --font-family: 'Raleway', sans-serif; */
    
    /* Option E: Playfair Display (Serif - Luxury) */
    /* --font-family: 'Playfair Display', serif; */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    background-color: var(--secondary-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #000000;
    background: #000000;
    z-index: 1000;
    transition: var(--transition);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.1);
}

.logo-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    margin-top: 60px;
    height: 600px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 400;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 980px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 2px solid var(--accent-color);
    cursor: pointer;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: #0066cc;
    border-color: #0066cc;
    transform: scale(1.05);
}

/* Sections */
.section {
    padding: 6rem var(--spacing-unit);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 400;
}

/* Destinations Grid */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.destination-card {
    background: var(--bg-light);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.destination-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: var(--transition);
}

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

.destination-content {
    padding: 2rem;
}

.destination-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.destination-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.read-more {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.read-more:hover {
    transform: translateX(4px);
}

/* stories Filter Bar */
.stories-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    padding: 0 var(--spacing-unit) 1.75rem;
    max-width: 1200px;
    margin: 0 auto;
}

.filter-chip {
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    border: 1.5px solid var(--border-color);
    background: var(--secondary-color);
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.filter-chip:hover {
    border-color: #667eea;
    color: #667eea;
}

.filter-chip.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    color: #fff;
    font-weight: 600;
}

/* Filtered view banner */
.stories-filter-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 1px solid rgba(102, 126, 234, 0.25);
    border-radius: 12px;
    padding: 0.875rem 1.25rem;
    margin: 0 auto 2rem;
    max-width: 1200px;
    font-size: 0.95rem;
    color: var(--text-color);
}

.filter-banner-clear {
    font-size: 0.85rem;
    color: #667eea;
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none;
    transition: var(--transition);
}

.filter-banner-clear:hover {
    opacity: 0.75;
}

/* Empty state when no posts match filter */
.stories-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
}

.stories-empty-state p {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

/* stories Grid */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.stories-card {
    background: var(--secondary-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

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

.stories-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

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

.stories-content {
    padding: 2rem;
}

.stories-date {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stories-content h3 {
    font-size: 1.5rem;
    margin: 1rem 0;
    font-weight: 600;
    line-height: 1.3;
}

.stories-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    background: var(--bg-light);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 980px;
    font-size: 0.95rem;
    font-family: var(--font-family);
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.newsletter-form .cta-button {
    background: white;
    color: var(--accent-color);
    border-color: white;
}

.newsletter-form .cta-button:hover {
    background: var(--bg-light);
}

/* Section CTA */
.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 4rem var(--spacing-unit) 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-section p {
    color: #a1a1a6;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: #a1a1a6;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #424245;
    color: #a1a1a6;
    font-size: 0.95rem;
}

/* Markdown Content Styling */
.stories-post-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--text-color);
}

.stories-post-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 2.5rem 0 1rem;
    color: var(--text-color);
    line-height: 1.3;
}

.stories-post-content h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin: 2rem 0 0.75rem;
    color: var(--text-color);
}

.stories-post-content p {
    margin-bottom: 1.5rem;
    text-align: justify;
    line-height: 1.8;
}

.stories-post-content ul, 
.stories-post-content ol {
    margin: 1.5rem 0 1.5rem 1.75rem;
    line-height: 1.8;
}

.stories-post-content li {
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.stories-post-content strong {
    color: var(--text-color);
    font-weight: 600;
}

.stories-post-content blockquote {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-left: 4px solid #667eea;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-light);
}

.stories-post-content blockquote strong {
    font-style: normal;
}

/* YouTube Embeds */
.youtube-embed {
    position: relative;
    width: 100%;
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.youtube-embed iframe {
    max-width: 100%;
    border-radius: 12px;
}

/* Images & Figures */
.stories-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.stories-figure {
    margin: 2rem 0;
    text-align: center;
    padding: 0;
}

.stories-figure img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.stories-figure figcaption {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.4;
}
