	* { margin: 0; padding: 0; box-sizing: border-box; } :root { --primary: #0a0a0b; --secondary: #111114; --tertiary: #18181b; --accent: #FF6B35; --accent-dark: #E85A2B; --accent-secondary: #E91E63; --text-main: #f4f4f5; --text-light: #a1a1aa; --text-lighter: #71717a; --bg-dark: #0a0a0b; --bg-light: #111114; --bg-lighter: #18181b; --bg-card: #1c1c20; --white: #ffffff; --border: #27272a; --shadow-sm: 0 1px 3px rgba(0,0,0,0.08); --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1); --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1); --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1); --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25); --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1); --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #E91E63 100%); --gradient-accent: linear-gradient(135deg, #FF6B35 0%, #E91E63 100%); --youtube-red: #FF0000; --instagram-gradient: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); } html { scroll-behavior: smooth; } body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; line-height: 1.6; color: var(--text-main); background: var(--bg-dark); overflow-x: hidden; transition: background 0.3s ease; } /* Custom Scrollbar */ ::-webkit-scrollbar { width: 10px; } ::-webkit-scrollbar-track { background: var(--bg-dark); } ::-webkit-scrollbar-thumb { background: var(--tertiary); border-radius: 5px; } ::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* Selection color */
::selection {
    background: var(--accent);
    color: white;
} /* Loading Screen */ .loading-screen { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--bg-dark); display: flex; justify-content: center; align-items: center; z-index: 9999; transition: opacity 0.5s ease, visibility 0.5s ease; } .loading-screen.hidden { opacity: 0; visibility: hidden; } .loader { width: 60px; height: 60px; border: 4px solid var(--border); border-top-color: var(--accent); border-radius: 50%; animation: spin 1s linear infinite; } @keyframes spin { to { transform: rotate(360deg); } } /* Typography */ h1 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 900; line-height: 1; letter-spacing: -0.03em; } h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem; letter-spacing: -0.02em; } h3 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; margin-bottom: 1rem; letter-spacing: -0.01em; } p { font-size: 1.125rem; line-height: 1.8; color: var(--text-light); margin-bottom: 1.25rem; } /* Navigation */ nav { position: fixed; top: 0; left: 0; right: 0; background: rgba(255,255,255,0.8); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); box-shadow: none; z-index: 1000; transition: var(--transition); } nav.scrolled { background: rgba(255,255,255,0.95); box-shadow: var(--shadow-md); } .nav-container { max-width: 1280px; margin: 0 auto; padding: 1rem 2rem; display: flex; justify-content: space-between; align-items: center; } .nav-logo { font-size: 1.5rem; font-weight: 800; background: var(--gradient-accent); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-decoration: none; transition: var(--transition); letter-spacing: -0.02em; } .nav-menu { display: flex; list-style: none; gap: 2.5rem; align-items: center; } .nav-link { color: var(--text-main); text-decoration: none; font-weight: 500; font-size: 0.95rem; padding: 0.5rem 0; position: relative; transition: var(--transition-fast); opacity: 0.8; } .nav-link:hover { opacity: 1; } .nav-link::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--gradient-accent); transition: width 0.3s; } .nav-link:hover::after, .nav-link.active::after { width: 100%; } .mobile-menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; } .mobile-menu-toggle span { display: block; width: 25px; height: 2px; background: var(--text-main); margin: 6px 0; transition: var(--transition); } /* Hero Section - Full Background Image */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 11, 0.2) 0%,
        rgba(10, 10, 11, 0.5) 50%,
        rgba(10, 10, 11, 1) 100%
    );
    z-index: 1;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-container.hero-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    min-height: 100vh;
    padding-bottom: 4rem;
}

.hero-content {
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-tag {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    color: white;
    margin-bottom: 1rem;
    line-height: 1;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 550px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Ghost button for dark backgrounds */
.btn-ghost {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 1s both;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid rgba(255, 255, 255, 0.6);
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
    transform: rotate(45deg);
    margin-top: 8px;
    animation: bounce-arrow 2s infinite;
}

@keyframes bounce-arrow {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(8px); }
}

/* Social Buttons */
.btn-youtube {
    background: var(--youtube-red);
    color: white;
    box-shadow: 0 4px 15px rgba(255,0,0,0.3);
}

.btn-youtube:hover {
    background: #cc0000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,0,0,0.4);
}

.btn-instagram {
    background: var(--instagram-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(225,48,108,0.3);
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(225,48,108,0.4);
}

.btn-icon {
    font-size: 0.9rem;
}

.btn-icon-svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
} .btn { padding: 1rem 2rem; border-radius: 12px; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; transition: var(--transition); font-size: 1rem; cursor: pointer; border: none; position: relative; overflow: hidden; } .btn::before { content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0; border-radius: 50%; background: rgba(255,255,255,0.3); transform: translate(-50%, -50%); transition: width 0.6s, height 0.6s; } .btn:hover::before { width: 300px; height: 300px; } .btn-primary { background: var(--gradient-accent); color: white; box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3); } .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4); } .btn-secondary { background: transparent; color: var(--text-main); border: 2px solid var(--border); } .btn-secondary:hover { background: var(--bg-light); border-color: var(--accent); transform: translateY(-2px); }

/* Floating Cards - removed from hero, kept for other sections if needed */
.floating-card {
    display: none;
} /* Sections */ section { padding: 6rem 2rem; position: relative; } .container { max-width: 1280px; margin: 0 auto; } .section-header { text-align: center; margin-bottom: 4rem; } .section-tag { display: inline-block; padding: 0.5rem 1rem; background: var(--bg-light); color: var(--accent); border-radius: 50px; font-size: 0.875rem; font-weight: 600; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.05em; } .section-title { color: var(--text-main); position: relative; display: inline-block; } /* Bio Section Enhanced */ .bio { background: var(--bg-light); position: relative; overflow: hidden; } .bio::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 1px; height: 100%; background: linear-gradient(to bottom, transparent, var(--accent), transparent); opacity: 0.3; } .bio-container { max-width: 900px; margin: 0 auto; background: var(--bg-lighter); padding: 3rem; border-radius: 20px; box-shadow: var(--shadow-lg); position: relative; } .bio-text { font-size: 1.125rem; line-height: 1.8; color: var(--text-light); text-align: left; margin-bottom: 1.5rem; } .bio-text strong { color: var(--accent); font-weight: 600; } .bio-highlight { display: inline-block; padding: 2px 8px; background: rgba(255, 107, 53, 0.1); border-radius: 4px; color: var(--accent); font-weight: 600; } /* Goals Cards Enhanced */ .goals { position: relative; } .goals-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; } .goal-card { background: var(--bg-lighter); padding: 2.5rem; border-radius: 20px; box-shadow: 0 1px 0 rgba(0,0,0,0.05); position: relative; overflow: hidden; transition: var(--transition); border: 1px solid var(--border); cursor: pointer; } .goal-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: var(--gradient-accent); opacity: 0; transition: opacity 0.3s; z-index: 0; } .goal-card:hover { transform: translateY(-10px) scale(1.02); box-shadow: var(--shadow-xl); border-color: var(--accent); } .goal-card:hover::before { opacity: 0.05; } .goal-card-content { position: relative; z-index: 1; } .goal-icon { width: 70px; height: 70px; background: var(--gradient-accent); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; font-size: 2rem; color: white; box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3); transition: var(--transition); } .goal-card:hover .goal-icon { transform: rotateY(180deg); } .goal-title { color: var(--text-main); margin-bottom: 1rem; font-size: 1.5rem; } .goal-description { color: var(--text-light); line-height: 1.6; } /* Projects Section Enhanced */ .projects { background: var(--bg-light); } .projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; margin-top: 3rem; max-width: 600px; margin-left: auto; margin-right: auto; } .project-card { background: var(--bg-lighter); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); transition: var(--transition); position: relative; cursor: pointer; } .project-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-2xl); } .project-image-wrapper { position: relative; height: 250px; overflow: hidden; } .project-image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; } .project-card:hover .project-image { transform: scale(1.1); } .project-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.7)); opacity: 0; transition: opacity 0.3s; display: flex; align-items: flex-end; padding: 2rem; } .project-card:hover .project-overlay { opacity: 1; } .project-status { position: absolute; top: 1rem; right: 1rem; padding: 0.5rem 1rem; background: var(--accent); color: white; border-radius: 50px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; } .project-content { padding: 2rem; } .project-meta { display: flex; gap: 1rem; margin-bottom: 1rem; font-size: 0.875rem; color: var(--text-lighter); } .project-title { color: var(--text-main); margin-bottom: 1rem; font-size: 1.75rem; } .project-description { color: var(--text-light); margin-bottom: 1.5rem; line-height: 1.6; } .project-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; } .project-tag { padding: 0.25rem 0.75rem; background: var(--bg-light); border-radius: 50px; font-size: 0.75rem; color: var(--text-light); } .project-link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--accent); font-weight: 600; text-decoration: none; transition: gap 0.3s; } .project-link:hover { gap: 1rem; } /* Values Section Enhanced */ .values { position: relative; } .values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; margin-top: 3rem; } .value-card { background: var(--bg-lighter); padding: 3rem; border-radius: 20px; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; transition: var(--transition); } .value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); } .value-icon { font-size: 3rem; margin-bottom: 1.5rem; display: inline-block; animation: bounce 3s infinite; will-change: transform; } @keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } } .value-title { color: var(--text-main); margin-bottom: 1.5rem; font-size: 1.75rem; } .value-content { color: var(--text-light); line-height: 1.8; } /* Faith Section */ .faith-section { background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), transparent); padding: 2rem; border-radius: 16px; margin-top: 2rem; } details { margin-top: 2rem; } summary { cursor: pointer; font-weight: 600; color: var(--text-main); padding: 1.5rem; background: var(--bg-light); border-radius: 12px; transition: var(--transition); list-style: none; display: flex; align-items: center; justify-content: space-between; box-shadow: var(--shadow-sm); } summary:hover { background: var(--bg-lighter); box-shadow: var(--shadow-md); transform: translateX(5px); } summary::after { content: '>'; font-size: 1.5rem; transition: transform 0.3s; color: var(--accent); } details[open] summary::after { transform: rotate(90deg); } .faith-content { padding: 2rem; margin-top: 1rem; background: var(--bg-lighter); border-radius: 12px; animation: slideDown 0.5s ease-out; box-shadow: var(--shadow-md); } @keyframes slideDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } } /* Contact Section Enhanced */ .contact { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; text-align: center; position: relative; overflow: hidden; } .contact::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, var(--accent) 0%, transparent 70%); opacity: 0.1; animation: rotate 30s linear infinite; } @keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } .contact h2 { color: white; } .contact-content { position: relative; z-index: 1; } .contact-text { font-size: 1.25rem; margin-bottom: 3rem; color: rgba(255,255,255,0.9); } .social-links { display: flex; justify-content: center; align-items: center; gap: 2rem; flex-wrap: wrap; margin-bottom: 2rem; } .email-display { display: flex; align-items: center; gap: 0.75rem; padding: 1rem 2rem; background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border: 2px solid rgba(255,255,255,0.2); border-radius: 16px; color: white; font-size: 1.1rem; } .email-icon { font-size: 1.5rem; } .email-text { font-weight: 500; letter-spacing: 0.02em; } .social-link { display: inline-flex; align-items: center; justify-content: center; width: 80px; height: 80px; background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border: 2px solid rgba(255,255,255,0.2); border-radius: 16px; color: white; text-decoration: none; transition: var(--transition); font-size: 2rem; position: relative; overflow: hidden; } .social-link::before { content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0; background: var(--accent); border-radius: 50%; transform: translate(-50%, -50%); transition: width 0.3s, height 0.3s; } .social-link:hover::before { width: 100%; height: 100%; } .social-link:hover { transform: translateY(-5px) rotate(5deg); border-color: var(--accent); } .social-link span { position: relative; z-index: 1; } /* Footer Enhanced */ footer { background: var(--primary); color: rgba(255,255,255,0.7); padding: 3rem 2rem; text-align: center; } .footer-content { max-width: 1280px; margin: 0 auto; } .footer-nav { display: flex; justify-content: center; gap: 2rem; margin-bottom: 2rem; flex-wrap: wrap; } .footer-link { color: rgba(255,255,255,0.7); text-decoration: none; transition: var(--transition); } .footer-link:hover { color: var(--accent); } .footer-divider { width: 100px; height: 2px; background: var(--accent); margin: 2rem auto; } .footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; } .footer-copyright { color: rgba(255,255,255,0.5); font-size: 0.875rem; } /* Back to Top Button */ .back-to-top { position: fixed; bottom: 2rem; right: 2rem; width: 50px; height: 50px; background: var(--accent); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; visibility: hidden; transition: var(--transition); box-shadow: var(--shadow-lg); z-index: 100; } .back-to-top.visible { opacity: 1; visibility: visible; } .back-to-top:hover { background: var(--accent-dark); transform: translateY(-5px); } /* Small screens - better text wrapping */ @media (max-width: 480px) { .container { padding: 0 0.75rem; } .bio-container { padding: 1.5rem 1.25rem; border-radius: 12px; } .goal-card, .value-card { padding: 1.75rem 1.25rem; } .project-content { padding: 1.25rem; } .stat-item { flex: 1; min-width: 80px; } .stat-number { font-size: 1.5rem; } .stat-label { font-size: 0.7rem; } .hero-tag { font-size: 0.75rem; padding: 0.4rem 0.8rem; } .section-tag { font-size: 0.75rem; padding: 0.4rem 0.8rem; } .floating-card { display: none; } section { padding: 3rem 0.75rem; } .faith-content { padding: 1.25rem; } summary { padding: 1.25rem; font-size: 0.95rem; } } /* Mobile Responsive */ @media (max-width: 768px) { p, .bio-text, .goal-description, .project-description, .value-content p { font-size: 1rem; line-height: 1.7; word-wrap: break-word; overflow-wrap: break-word; } h1 { font-size: clamp(2rem, 8vw, 3rem); } h2 { font-size: clamp(1.75rem, 6vw, 2.5rem); } h3 { font-size: clamp(1.25rem, 4vw, 1.75rem); } .hero-subtitle { font-size: 1.1rem; } .nav-container { padding: 1rem; } .hero { padding: 6rem 1rem 3rem; } .bio-container { padding: 2rem 1.5rem; } .goal-card, .value-card { padding: 2rem 1.5rem; } .project-content { padding: 1.5rem; } .hero-buttons { flex-direction: column; gap: 0.75rem; } .btn { width: 100%; justify-content: center; padding: 0.875rem 1.5rem; font-size: 0.95rem; } .social-link { width: 60px; height: 60px; font-size: 1.5rem; } .email-display { padding: 0.875rem 1.5rem; font-size: 1rem; } .goals-grid, .values-grid { grid-template-columns: 1fr; gap: 1.5rem; } .projects-grid { grid-template-columns: 1fr; gap: 2rem; } .nav-menu { position: fixed; top: 70px; left: -100%; width: 100%; background: var(--bg-lighter); backdrop-filter: blur(20px); flex-direction: column; padding: 2rem; box-shadow: var(--shadow-xl); transition: left 0.3s; } .nav-menu.active { left: 0; } .mobile-menu-toggle { display: block; } .mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); } .mobile-menu-toggle.active span:nth-child(2) { opacity: 0; } .mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); } .hero-container { grid-template-columns: 1fr; text-align: center; } .hero-visual { display: none; } .hero-stats { justify-content: center; } .hero-buttons { justify-content: center; } .footer-bottom { flex-direction: column; text-align: center; } section { padding: 4rem 1rem; } } /* Animations on scroll */ .fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; } .fade-in.visible { opacity: 1; transform: translateY(0); } .slide-in-left { opacity: 0; transform: translateX(-50px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; } .slide-in-left.visible { opacity: 1; transform: translateX(0); } .slide-in-right { opacity: 0; transform: translateX(50px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; } .slide-in-right.visible { opacity: 1; transform: translateX(0); } .scale-in { opacity: 0; transform: scale(0.8); transition: opacity 0.8s ease-out, transform 0.8s ease-out; } .scale-in.visible { opacity: 1; transform: scale(1); } /* Typing effect */ .typing-text { border-right: 3px solid var(--accent); animation: blink 1s step-end infinite; } @keyframes blink { 0%, 50% { border-color: var(--accent); } 51%, 100% { border-color: transparent; } }/* FORCE CENTER – wszystkie nagłówki sekcji */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;   /* wyśrodkuj w poziomie */
  text-align: center;    /* i tekstowo */
  margin-bottom: 3rem;
}

.section-header .section-tag {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 107, 53, 0.1);
  color: var(--accent);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.section-header .section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 11, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
  z-index: 1000;
  transition: var(--transition);
}

nav .nav-logo {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav .nav-link {
  color: var(--text-light);
}

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

nav .mobile-menu-toggle span {
  background: var(--text-main);
}

nav.scrolled {
  background: rgba(10, 10, 11, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}

nav.scrolled .nav-logo {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== JOURNEY TIMELINE SECTION ===== */
.journey-timeline {
    background: var(--bg-light);
    padding: 6rem 2rem;
}

/* ===== STORIES ===== */
.stories-container {
    max-width: 1000px;
    margin: 0 auto 3rem;
    overflow: hidden;
}

.stories-scroll {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 1rem 0.5rem 1.5rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.stories-scroll::-webkit-scrollbar {
    display: none;
}

.story-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    flex-shrink: 0;
    transition: var(--transition);
}

.story-item:hover {
    transform: scale(1.1);
}

.story-item:hover .story-circle {
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
}

.story-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    padding: 3px;
    background: var(--gradient-accent);
    transition: var(--transition);
}

.story-circle img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--bg-dark);
}

.story-title {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-light);
    text-align: center;
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ===== INTERACTIVE MAP ===== */
.map-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

#journeyMap {
    width: 100%;
    height: 500px;
    background: var(--bg-dark);
}

/* Custom map pins */
.custom-map-pin {
    background: none;
    border: none;
}

.pin-dot {
    width: 16px;
    height: 16px;
    background: var(--accent);
    border-radius: 50%;
    border: 3px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 0 12px rgba(255, 107, 53, 0.5);
    transition: var(--transition);
}

.custom-map-pin:hover .pin-dot {
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.7);
}

/* Leaflet dark theme overrides */
.dark-popup .leaflet-popup-content-wrapper {
    background: var(--bg-card);
    color: var(--text-main);
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.dark-popup .leaflet-popup-tip {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-top: none;
    border-left: none;
}

.dark-popup .leaflet-popup-close-button {
    color: var(--text-lighter);
    font-size: 20px;
    top: 8px;
    right: 8px;
}

.dark-popup .leaflet-popup-close-button:hover {
    color: var(--accent);
}

.leaflet-control-zoom a {
    background: var(--bg-card) !important;
    color: var(--text-main) !important;
    border-color: var(--border) !important;
}

.leaflet-control-zoom a:hover {
    background: var(--tertiary) !important;
    color: var(--accent) !important;
}

.leaflet-control-attribution {
    background: rgba(10, 10, 11, 0.8) !important;
    color: var(--text-lighter) !important;
    font-size: 0.65rem !important;
}

.leaflet-control-attribution a {
    color: var(--text-lighter) !important;
}

/* Map popup content */
.map-popup {
    padding: 0;
}

.map-popup-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
    margin: -14px -20px 12px;
    width: calc(100% + 40px);
}

.map-popup-body h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 0 0 0.4rem;
}

.map-popup-location {
    font-size: 0.8rem;
    color: var(--text-lighter);
    margin: 0 0 0.5rem;
}

.map-popup-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0 0 0.75rem;
}

.map-popup-date {
    display: block;
    font-size: 0.75rem;
    color: var(--text-lighter);
    margin-bottom: 0.5rem;
}

.map-popup-btn {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
}

.map-popup-btn:hover {
    background: var(--accent-dark);
}

/* Stories responsive */
@media (max-width: 768px) {
    .stories-container {
        margin-bottom: 2rem;
    }

    .story-circle {
        width: 68px;
        height: 68px;
    }

    .story-title {
        max-width: 68px;
        font-size: 0.65rem;
    }

    #journeyMap {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .story-circle {
        width: 60px;
        height: 60px;
    }

    .story-title {
        max-width: 60px;
    }

    .stories-scroll {
        gap: 1rem;
    }

    #journeyMap {
        height: 350px;
    }
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    z-index: 1;
    animation: lightboxZoomIn 0.3s ease;
}

@keyframes lightboxZoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-image {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 45px;
    height: 45px;
    background: var(--accent);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    line-height: 1;
}

.lightbox-close:hover {
    background: var(--accent-dark);
    transform: rotate(90deg);
}

.lightbox-caption {
    text-align: center;
    color: white;
    margin-top: 1rem;
    font-size: 1rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .lightbox-close {
        top: -45px;
        right: 0;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .lightbox-image {
        max-width: 95vw;
        max-height: 80vh;
    }

    .lightbox-caption {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
}

/* Mobile responsive for timeline */
@media (max-width: 768px) {
    .journey-timeline {
        padding: 4rem 1rem;
    }
}

/* ===== HERO RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-container.hero-centered {
        padding-bottom: 6rem;
    }

    .hero-bg-image {
        background-position: center center;
    }

    .hero-tag {
        font-size: 0.6rem;
        padding: 0.5rem 1rem;
        letter-spacing: 0.1em;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        padding: 0 1.5rem;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }

    .scroll-indicator {
        bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 1rem;
    }

    .hero-tag {
        font-size: 0.55rem;
        padding: 0.4rem 0.8rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .scroll-indicator {
        display: none;
    }
}

/* ===== DARK MODE THEME ===== */

/* Sections */
section {
    background: var(--bg-dark);
}

.bio {
    background: var(--bg-light);
}

.bio::before {
    display: none;
}

.bio-container {
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.bio-text {
    color: var(--text-light);
}

.bio-highlight {
    background: rgba(255, 107, 53, 0.15);
    color: var(--accent);
}

/* ===== BIO SECTION - NEW LAYOUT ===== */
.bio-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

.bio-photo-side {
    position: relative;
}

.bio-photo-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.bio-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.bio-photo-wrapper:hover .bio-photo {
    transform: scale(1.05);
}

.bio-photo-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    pointer-events: none;
}

.bio-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--bg-card);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    border: 1px solid var(--border);
}

.location-icon {
    font-size: 1.1rem;
}

.bio-content-side {
    padding: 1rem 0;
}

.bio-hook {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Interest Tags */
.bio-interests {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 2rem 0;
}

.interest-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    transition: var(--transition);
}

.interest-tag:hover {
    border-color: var(--accent);
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
}

.tag-icon {
    font-size: 1.1rem;
}

/* Bio CTA */
.bio-cta {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(233, 30, 99, 0.05));
    border-radius: 16px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.bio-cta-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    margin: 0;
}

.btn-sm {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

/* Bio Mobile Responsive */
@media (max-width: 900px) {
    .bio-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
    }

    .bio-photo-side {
        order: -1;
    }

    .bio-photo {
        height: 350px;
    }

    .bio-hook {
        font-size: 1.6rem;
        text-align: center;
    }

    .bio-interests {
        justify-content: center;
    }

    .bio-cta {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .bio-photo {
        height: 280px;
    }

    .bio-hook {
        font-size: 1.4rem;
    }

    .interest-tag {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .bio-cta {
        padding: 1.25rem;
    }

    .bio-cta-text {
        font-size: 0.9rem;
    }
}

/* Goals */
.goals {
    background: var(--bg-dark);
}

.goal-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.goal-card:hover {
    border-color: var(--accent);
}

.goal-title {
    color: var(--text-main);
}

.goal-description {
    color: var(--text-light);
}

/* Journey Timeline */
.journey-timeline {
    background: var(--bg-light);
}

/* Values */
.values {
    background: var(--bg-dark);
}

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.value-card:hover {
    border-color: var(--accent);
}

.value-title {
    color: var(--text-main);
}

.value-content {
    color: var(--text-light);
}

/* ===== EXPANDED VALUE CARD (Konie vs F1) ===== */
.value-card-expanded .value-content p {
    margin-bottom: 1rem;
}

.value-comparison-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.value-comparison-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 12px;
    border-left: 3px solid var(--accent);
    transition: var(--transition);
}

.value-comparison-item:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateX(4px);
}

.vc-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.value-comparison-item strong {
    display: block;
    color: var(--text-main);
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.value-comparison-item p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* ===== PARADA CARD ===== */
.value-card-parada .value-content p {
    margin-bottom: 0.75rem;
}

.parada-highlight {
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(233, 30, 99, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    color: var(--text-main) !important;
    font-weight: 600;
}

.faith-section {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), transparent);
    border: 1px solid var(--border);
}

summary {
    background: var(--tertiary);
    color: var(--text-main);
}

summary:hover {
    background: var(--bg-card);
}

.faith-content {
    background: var(--bg-card);
    border: 1px solid var(--border);
}

/* Contact */
.contact {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
}

/* Footer */
footer {
    background: var(--primary);
    border-top: 1px solid var(--border);
}

/* Section Headers */
.section-header .section-tag {
    background: rgba(255, 107, 53, 0.1);
    color: var(--accent);
}

.section-header .section-title {
    color: var(--text-main);
}

/* Back to top */
.back-to-top {
    background: var(--accent);
    border: 1px solid var(--border);
}

/* Mobile Menu Dark */
@media (max-width: 768px) {
    .nav-menu {
        background: var(--bg-dark);
        border-bottom: 1px solid var(--border);
    }

    .nav-menu .nav-link {
        color: var(--text-main);
    }

    /* Contact section mobile */
    .social-links {
        flex-direction: column;
        gap: 1rem;
    }

    .email-display {
        width: 100%;
        justify-content: center;
        font-size: 0.95rem;
        padding: 0.875rem 1rem;
    }

    .social-link {
        width: 60px;
        height: 60px;
    }

    /* Better touch targets */
    .btn {
        min-height: 48px;
    }

    /* Bio text alignment on mobile */
    .bio-text {
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* Smaller screens */
    .email-display {
        flex-direction: column;
        gap: 0.5rem;
    }

    .email-text {
        font-size: 0.85rem;
        word-break: break-all;
    }

    /* Footer mobile */
    .footer-bottom {
        padding: 0 1rem;
    }

    .footer-copyright {
        font-size: 0.8rem;
    }
}

/* Safe area for iPhone notch */
@supports (padding: env(safe-area-inset-bottom)) {
    .hero {
        padding-top: env(safe-area-inset-top);
    }

    nav {
        padding-top: env(safe-area-inset-top);
    }

    footer {
        padding-bottom: env(safe-area-inset-bottom);
    }

    .back-to-top {
        bottom: calc(2rem + env(safe-area-inset-bottom));
    }
}

/* ===== TIMELINE Z LATAMI (CMS) ===== */
.timeline-container {
    max-width: 1000px;
    margin: 2.5rem auto;
}

.year-section {
    margin-bottom: 1rem;
}

.year-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-main);
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
}

.year-toggle:hover {
    border-color: var(--accent);
    background: var(--tertiary);
}

.year-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.year-count {
    font-size: 0.85rem;
    color: var(--text-lighter);
    font-weight: 500;
}

.year-arrow {
    margin-left: auto;
    font-size: 1.5rem;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.year-section.open .year-arrow {
    transform: rotate(90deg);
}

.year-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.year-section.open .year-content {
    max-height: 2000px;
    padding-top: 1rem;
}

.trips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.trip-card {
    display: flex;
    flex-direction: column;
    background: var(--tertiary);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    transition: var(--transition);
}

.trip-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
}

.trip-image-wrapper {
    height: 160px;
    overflow: hidden;
}

.trip-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.trip-card:hover .trip-image-wrapper img {
    transform: scale(1.08);
}

.trip-body {
    padding: 1rem 1.25rem;
}

.trip-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 0 0 0.5rem;
}

.trip-country {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(10, 10, 11, 0.9);
    color: var(--text-main);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.trip-description {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

/* ===== KONIE & MOTORSPORT - ROZWIJANA SEKCJA ===== */
.parallels-section {
    max-width: 700px;
    margin: 2.5rem auto;
    text-align: center;
}

.parallels-heading {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.parallels-subtitle {
    font-size: 0.95rem;
    color: var(--text-lighter);
    margin-bottom: 1.5rem;
}

.parallels-details {
    text-align: left;
}

.parallels-details summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(233, 30, 99, 0.05));
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    list-style: none;
}

.parallels-details summary::-webkit-details-marker {
    display: none;
}

.parallels-details summary::after {
    content: '+';
    font-size: 1.3rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.parallels-details[open] summary::after {
    transform: rotate(45deg);
}

.parallels-details summary:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(233, 30, 99, 0.08));
    border-color: var(--accent);
}

.parallels-content {
    padding: 1.5rem 0;
}

.parallel-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    margin-bottom: 0.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: var(--transition);
}

.parallel-item:hover {
    border-color: rgba(255, 107, 53, 0.3);
    background: rgba(255, 107, 53, 0.03);
}

.parallel-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.parallel-text strong {
    display: block;
    color: var(--text-main);
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.parallel-text p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.parallels-conclusion {
    text-align: center;
    padding: 1.2rem;
    margin-top: 0.5rem;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
    font-style: italic;
}

/* ===== VALUES LAYOUT FIXES ===== */

/* Wycentruj pojedynczą kartę "Od koni do bolidów" */
.values-grid:first-of-type {
    display: flex;
    justify-content: center;
}

.values-grid:first-of-type .value-card {
    max-width: 500px;
    width: 100%;
    text-align: center;
}

/* Dolne karty: Głód rozwoju + Parada obok siebie */
.values-grid-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 0;
}

/* Parada expandable details */
.parada-details {
    margin-top: 1rem;
}

.parada-details summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(233, 30, 99, 0.05));
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    list-style: none;
}

.parada-details summary::-webkit-details-marker {
    display: none;
}

.parada-details summary::after {
    content: '+';
    font-size: 1.2rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.parada-details[open] summary::after {
    transform: rotate(45deg);
}

.parada-details summary:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(233, 30, 99, 0.08));
    border-color: var(--accent);
}

.parada-full-story {
    padding: 1.25rem 0 0;
    animation: slideDown 0.4s ease-out;
}

.parada-full-story p {
    margin-bottom: 0.75rem;
}

/* ===== RESPONSIVE - TIMELINE + VALUES ===== */
@media (max-width: 768px) {
    .timeline-container {
        margin: 2rem auto;
    }

    .trips-grid {
        grid-template-columns: 1fr;
    }

    .year-toggle {
        padding: 0.85rem 1.25rem;
    }

    .year-label {
        font-size: 1.3rem;
    }

    .parallels-section {
        margin: 2rem auto;
    }

    .parallel-item {
        padding: 1rem;
    }

    .parallels-heading {
        font-size: 1.2rem;
    }

    .values-grid-bottom {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .trip-image-wrapper {
        height: 130px;
    }

    .trip-body {
        padding: 0.85rem 1rem;
    }
}