/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    font-size: 18px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e6e6e6;
    z-index: 100;
    padding: 0 20px;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.logo-link:hover {
    transform: translateY(-1px);
}

.logo-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #FFCA42;
    box-shadow: 0 2px 8px rgba(255, 202, 66, 0.3);
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 202, 66, 0.4);
    border-color: #e6b63a;
}

.logo-text h1 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
    margin: 0;
    line-height: 1;
}

.logo-text .tagline {
    font-size: 12px;
    color: #666;
    font-weight: 400;
    margin-top: 2px;
    display: block;
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.2s ease;
}

.nav-menu a:hover {
    color: #FFCA42;
}

.nav-social-links {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-left: 16px;
    padding-left: 16px;
    border-left: 1px solid #e6e6e6;
}

.nav-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #f8f8f8;
    color: #666;
    text-decoration: none;
    transition: all 0.2s ease;
}

.nav-social-links a:hover {
    background-color: #FFCA42;
    color: white;
    transform: translateY(-1px);
}

.nav-social-links svg {
    width: 18px;
    height: 18px;
}

/* Main content */
main {
    margin-top: 64px;
}

/* Hero section */
/* QR Card */
.qr-card {
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
    border: 2px solid #FFCA42;
    aspect-ratio: 1;
    min-height: auto;
    height: auto;
}

.qr-card-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.qr-code {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Blog grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin: 100px auto 80px auto;
    max-width: 1200px;
    padding: 0 40px;
    align-items: stretch;
}

.story-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.story-card:not(.qr-card) {
    height: 450px;
    min-height: 450px;
    max-height: 450px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.story-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 202, 66, 0.2);
    border-color: #FFCA42;
}

.story-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    flex-shrink: 0;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.3s ease;
}

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

.story-content {
    padding: 20px;
    height: 270px;
    max-height: 270px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.story-content h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 8px;
    color: #1a1a1a;
    letter-spacing: -0.3px;
    height: 70px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.story-excerpt {
    font-size: 14px;
    line-height: 1.4;
    color: #666;
    margin-bottom: 12px;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.story-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #999;
}

.publish-date, .read-time {
    font-weight: 400;
}

/* Spotify section */
.spotify-section {
    margin: 80px auto 60px auto;
    padding: 60px 40px;
    background: #f8f9fa;
    border-radius: 16px;
    text-align: center;
    max-width: 1200px;
}

.spotify-section h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.spotify-embed {
    width: 100%;
    margin: 0 auto;
    max-width: 500px;
}

.spotify-embed iframe {
    border-radius: 12px;
}

/* Audio Experience Section */
.audio-experience {
    margin: 32px 0;
    padding: 24px;
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
    border-radius: 12px;
    border-left: 4px solid #FFCA42;
}

.audio-experience h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.audio-note {
    font-size: 14px;
    color: #666;
    margin-top: 12px;
    text-align: center;
    font-style: italic;
}

/* Host section */
.host-section {
    margin: 80px auto 60px auto;
    padding: 60px 40px;
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
    border-radius: 16px;
    max-width: 1200px;
}

.host-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.host-image {
    flex-shrink: 0;
}

.host-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #FFCA42;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.host-message {
    flex: 1;
}

.host-message blockquote {
    font-size: 20px;
    line-height: 1.6;
    color: #333;
    font-style: italic;
    margin: 0 0 16px 0;
    position: relative;
    padding-left: 24px;
}

.host-message blockquote:before {
    content: '"';
    font-size: 60px;
    color: #FFCA42;
    position: absolute;
    left: -8px;
    top: -20px;
    font-family: serif;
}

.host-message cite {
    font-size: 16px;
    color: #666;
    font-weight: 600;
    font-style: normal;
}

/* Story page styles */
.story-page {
    max-width: 720px;
    margin: 0 auto;
    padding: 100px 20px 0 20px;
}

.story-article {
    margin-bottom: 60px;
}

.story-header {
    margin-bottom: 40px;
    text-align: center;
}

.story-header h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
    letter-spacing: -0.8px;
}

.story-meta-full {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 16px;
    color: #666;
}

.story-hero-image {
    margin-bottom: 40px;
    text-align: center;
}

.story-hero-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.story-content-full {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
}

.story-content-full p {
    margin-bottom: 24px;
}

.story-content-full .story-lead {
    font-size: 22px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e6e6e6;
}

.story-content-full h2 {
    font-size: 28px;
    font-weight: 600;
    margin: 40px 0 20px 0;
    color: #1a1a1a;
    letter-spacing: -0.3px;
}

.story-content-full h2:first-of-type {
    margin-top: 32px;
}

.story-navigation {
    margin: 60px 0 40px 0;
    text-align: center;
}

.back-to-home {
    display: inline-block;
    padding: 12px 24px;
    background: #f8f9fa;
    color: #666;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.back-to-home:hover {
    background: #e9ecef;
    color: #333;
}

.logo a, .logo-text a {
    text-decoration: none;
    color: inherit;
}

/* Footer */
footer {
    border-top: 1px solid #e6e6e6;
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    max-width: 680px;
    margin: 0 auto;
}

.footer-content p {
    color: #666;
    font-size: 16px;
    margin-bottom: 8px;
}

.footer-content p:last-child {
    margin-bottom: 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 16px 0;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f5f5f5;
    color: #666;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-links a:hover {
    background-color: #333;
    color: white;
    transform: translateY(-2px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.copyright {
    font-size: 14px;
    color: #999;
    text-align: center;
    margin-top: 16px;
}

/* Responsive design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .qr-code {
        width: 180px;
        height: 180px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 20px;
        margin: 80px auto 60px auto;
    }
    
    .story-card {
        margin: 0 auto;
        max-width: 400px;
        min-height: auto;
    }
    
    .story-card.qr-card {
        aspect-ratio: 1;
    }
    
    .story-content h3 {
        font-size: 16px;
    }
    
    .story-excerpt {
        font-size: 13px;
    }
    
    .story-content {
        padding: 16px;
    }
    
    .spotify-section {
        padding: 40px 20px;
        margin: 60px 20px;
    }
    
    .spotify-section h2 {
        font-size: 24px;
    }
    
    .host-section {
        margin: 60px 20px;
        padding: 40px 20px;
    }
    
    .host-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .host-message blockquote {
        font-size: 18px;
        padding-left: 20px;
    }
}

@media (max-width: 480px) {
    .qr-code {
        width: 150px;
        height: 150px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 70px auto 60px auto;
        padding: 0 20px;
    }
    
    .story-card {
        max-width: 100%;
    }
    
    .story-content {
        padding: 12px;
    }
    
    .story-content h3 {
        font-size: 14px;
    }
    
    .story-excerpt {
        font-size: 12px;
    }
    
    .logo h1 {
        font-size: 24px;
    }
    
    .logo-text .tagline {
        font-size: 11px;
    }
    
    .logo-img {
        width: 40px;
        height: 40px;
        border-width: 1.5px;
    }
    
    .logo-text h1 {
        font-size: 24px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-taglines p {
        font-size: 18px;
    }
    
    
    .host-message blockquote {
        font-size: 16px;
    }
    
    .story-page {
        padding: 80px 16px 0 16px;
    }
    
    .story-header h1 {
        font-size: 28px;
    }
    
    .story-content-full {
        font-size: 16px;
    }
    
    .story-content-full .story-lead {
        font-size: 18px;
    }
    
    .story-content-full h2 {
        font-size: 24px;
    }
    
    .story-hero-image img {
        height: auto;
    }
    
    .story-meta-full {
        flex-direction: column;
        gap: 8px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection styling */
::selection {
    background-color: #FFCA42;
    color: #1a1a1a;
}

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: 2px solid #FFCA42;
    outline-offset: 2px;
}

/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    color: white;
}

.whatsapp-widget:hover {
    background: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-widget svg {
    width: 28px;
    height: 28px;
}

/* Article UI Enhancement Elements */
.insight-card {
    background: #f8f9fa;
    border-left: 4px solid #FFCA42;
    padding: 20px;
    margin: 24px 0;
    border-radius: 4px;
}

.quote-highlight {
    background: #fafbfc;
    border: 1px solid #e1e4e8;
    padding: 16px;
    margin: 20px 0;
    font-style: italic;
    border-radius: 4px;
}

.process-steps {
    background: #f6f8fa;
    padding: 20px;
    margin: 24px 0;
    border-radius: 8px;
    border: 1px solid #e1e4e8;
}

.tip-callout {
    background: #e6f3ff;
    border-left: 4px solid #0969da;
    padding: 16px;
    margin: 20px 0;
    border-radius: 4px;
}

.comparison-box {
    background: #fff8dc;
    border: 1px solid #d4a574;
    padding: 16px;
    margin: 20px 0;
    border-radius: 4px;
}

/* Social Sharing Buttons */
.social-sharing {
    background: #f8f9fa;
    border: 1px solid #e1e4e8;
    border-radius: 12px;
    padding: 24px;
    margin: 32px 0;
    text-align: center;
}

.social-sharing h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.social-sharing-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-width: 120px;
    justify-content: center;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-btn.linkedin {
    background: #0077b5;
    color: white;
}

.social-btn.linkedin:hover {
    background: #005885;
}

.social-btn.twitter {
    background: #1da1f2;
    color: white;
}

.social-btn.twitter:hover {
    background: #0d8bd9;
}

.social-btn.whatsapp {
    background: #25d366;
    color: white;
}

.social-btn.whatsapp:hover {
    background: #20ba5a;
}

.social-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .social-sharing-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .social-btn {
        width: 100%;
        max-width: 280px;
    }
}