/* Blog Variables - CSS Custom Properties */
:root {
    --primary: #f97316;
    --primary-dark: #ea580c;
    --secondary: #0ea5e9;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --dark: #1e293b;
    --gray-900: #0f172a;
    --gray-800: #1e293b;
    --gray-700: #334155;
    --gray-600: #475569;
    --gray-500: #64748b;
    --gray-400: #94a3b8;
    --gray-300: #cbd5e1;
    --gray-200: #e2e8f0;
    --gray-100: #f1f5f9;
    --gray-50: #f8fafc;
    --white: #ffffff;
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-serif: Georgia, Cambria, "Times New Roman", Times, serif;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
}/* Blog Base Styles - Reset & Typography */

/* Modern Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--gray-50);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-sans);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1.5rem; }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin: 3rem auto 1.5rem; max-width: 1200px; }
h3 { font-size: clamp(1.25rem, 3vw, 1.875rem); margin: 2rem auto 1rem; max-width: 1200px; }

p {
    margin: 0 auto 1.5rem;
    line-height: 1.8;
    font-size: 1.0625rem;
    color: var(--gray-700);
    max-width: 1200px;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}/* Blog Layout - Structure & Containers */

/* Main Content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.article-content {
    background: transparent;
    padding: 0;
    margin-top: 0;
    position: relative;
    z-index: 10;
}

.lead-section {
    background: white;
    padding: 4rem 0;
    margin-top: -3rem;
    position: relative;
    z-index: 10;
    box-shadow: var(--shadow-md);
}

/* Content Sections */
.content-section {
    background: white;
    padding: 4rem 0;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

.content-section:nth-child(even) {
    background: var(--gray-50);
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Better typography for full width */
.article-content h2 {
    text-align: center;
    color: var(--gray-900);
    position: relative;
    padding-bottom: 1rem;
}

.article-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

/* Article Footer */
.article-footer {
    border-top: 1px solid var(--gray-200);
    padding-top: 2rem;
    margin-top: 3rem;
}

/* Footer specific overrides if needed *//* Blog Components - All UI Components */

/* Hero Section */
.hero {
    margin-top: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 2rem 0 4rem;
    position: relative;
    overflow: hidden;
    height: auto !important;
    min-height: auto !important;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><polygon points="30 30 0 0 0 30"/><polygon points="30 30 60 0 60 30"/><polygon points="30 60 0 30 0 60"/><polygon points="30 60 60 30 60 60"/></g></g></svg>');
    background-size: 60px 60px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 1;
    text-decoration: none;
}

.breadcrumb span {
    opacity: 0.6;
}

/* Article Meta */
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    opacity: 0.9;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 1rem;
    border-radius: 999px;
    font-weight: 600;
}

/* Lead Paragraph */
.lead {
    font-size: 1.375rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Feature Image */
.feature-image {
    margin: 3rem auto;
    position: relative;
    max-width: 1200px;
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.image-caption {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: 1rem;
    font-style: italic;
}

/* Info Boxes */
.info-box {
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    margin: 3rem auto;
    position: relative;
    overflow: hidden;
    max-width: 1200px;
}

.info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-color, var(--primary));
}

.info-box.green {
    background: #f0fdf4;
    --accent-color: var(--success);
}

.info-box.yellow {
    background: #fefce8;
    --accent-color: var(--warning);
}

.info-box.blue {
    background: #eff6ff;
    --accent-color: var(--secondary);
}

.info-box h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-box ul {
    list-style: none;
    space-y: 0.5rem;
}

.info-box li {
    padding-left: 1.5rem;
    position: relative;
}

.info-box li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Quote Box */
.quote-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 2rem 3rem;
    border-radius: var(--radius-lg);
    margin: 2rem 0;
    text-align: center;
    position: relative;
}

.quote-box::before {
    content: '"';
    font-size: 4rem;
    opacity: 0.2;
    position: absolute;
    top: -1rem;
    left: 1rem;
}

.quote-text {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.quote-author {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Feature Cards */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem auto;
    max-width: 1200px;
}

.feature-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: default;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-card h4 {
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0;
}

/* Cultural Experience Cards */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 3rem auto;
    max-width: 1200px;
}

.experience-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

.experience-icon {
    height: 200px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
}

.experience-content {
    padding: 1.5rem;
}

.experience-content h4 {
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

.experience-content p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 3rem;
    border-radius: var(--radius-xl);
    text-align: center;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-button {
    display: inline-block;
    background: white;
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    text-decoration: none;
}

/* Share Section */
.share-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.share-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    color: var(--gray-600);
    transition: all 0.3s ease;
}

.share-button:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.share-button.facebook:hover {
    background: #1877f2;
    color: white;
}

.share-button.twitter:hover {
    background: #1da1f2;
    color: white;
}

.share-button.linkedin:hover {
    background: #0077b5;
    color: white;
}

.share-button.whatsapp:hover {
    background: #25d366;
    color: white;
}

/* Related Articles */
.related-section {
    margin-top: 0;
    background: var(--gray-50);
    padding: 4rem 0;
}

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

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.related-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.related-image {
    height: 200px;
    background: linear-gradient(135deg, var(--gray-300) 0%, var(--gray-400) 100%);
    position: relative;
    overflow: hidden;
}

.related-content {
    padding: 1.5rem;
}

.related-content h4 {
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.related-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
}/* Blog Utilities - Utility Classes & Animations */

/* Scroll Progress */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    z-index: 1001;
    transition: width 0.3s ease;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.6s ease forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}/* Blog Responsive - Media Queries */

@media (max-width: 768px) {
    .hero {
        padding: 1.5rem 0 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .lead-section {
        padding: 2rem 0;
    }
    
    .lead {
        font-size: 1.125rem;
        padding: 0 1rem;
    }
    
    .article-content {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
        max-width: 100%;
    }
    
    .related-section {
        max-width: 100%;
    }
    
    .feature-image {
        margin: 2rem -1.5rem;
    }
    
    .quote-box {
        padding: 1.5rem 2rem;
    }
    
    .feature-grid,
    .experience-grid {
        max-width: 100%;
        padding: 0 1rem;
        gap: 1.5rem;
    }
    
    .experience-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .lead-section {
        padding: 1.5rem 0;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    .article-content {
        padding: 1.5rem 1rem;
    }
}