/* --- 1. DESIGN SYSTEM --- */
:root {
    --bg-color: #F9F4F0;
    --text-main: #1a1a1a;
    --text-soft: #555555;
    --accent-pink: #FADADD;
    --accent-dark: #2D2D2D;
    
    --radius-lg: 32px;
    --radius-pill: 100px;
    
    /* Tiene a Efekty */
    --shadow-soft: 0 15px 35px -10px rgba(0,0,0,0.05);
    --shadow-bento: 0 20px 40px -12px rgba(0,0,0,0.08), inset 0 0 0 1px rgba(255,255,255,0.6);
    --shadow-hover: 0 30px 60px -15px rgba(0,0,0,0.12), inset 0 0 0 1px rgba(255,255,255,0.8);
    
    --font-main: 'Poppins', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
    width: 100%;
    overflow-x: hidden; /* Zabraňuje horizontálnemu scrollovaniu */
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* --- 2. HEADER (FLOATING - VŽDY ODLEPENÝ) --- */
.nav-wrapper {
    position: fixed; top: 0; left: 0; width: 100%;
    height: auto; z-index: 1000;
    display: flex; justify-content: center;
    pointer-events: none; /* Aby sa dalo kliknúť vedľa menu */
    padding-top: 2rem;
    transition: padding 0.3s ease;
}

.floating-nav {
    pointer-events: auto; /* Samotné menu je klikateľné */
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255, 0.6);
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-soft);
    
    width: auto;
    min-width: 320px;
    max-width: 90%;
    padding: 0.6rem 0.8rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    justify-content: center;
}

/* Stav po scrollovaní */
.nav-wrapper.scrolled-wrapper { padding-top: 1rem; }

.floating-nav.scrolled {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 0.5rem 0.8rem;
}

.nav-content {
    display: flex; align-items: center; justify-content: space-between; 
    gap: 1rem; width: 100%;
}

.logo { 
    font-weight: 800; text-decoration: none; color: var(--text-main); 
    font-size: 1rem; padding-left: 1rem; letter-spacing: -0.5px;
    white-space: nowrap;
}
.nav-links { display: none; gap: 2rem; }
.nav-links a { text-decoration: none; color: var(--text-soft); font-weight: 500; font-size: 0.9rem; transition: color 0.2s;}
.nav-links a:hover { color: var(--text-main); }

.nav-cta {
    background: var(--accent-dark); color: white;
    text-decoration: none; padding: 0.6rem 1.2rem;
    border-radius: var(--radius-pill); font-weight: 600; font-size: 0.85rem;
    white-space: nowrap; transition: transform 0.2s;
}
.nav-cta:hover { transform: scale(1.05); }

@media(min-width: 768px) { 
    .nav-links { display: flex; } 
    .floating-nav { padding: 0.8rem 2rem; min-width: 500px;}
    .logo { font-size: 1.2rem; }
}
@media(min-width: 900px) { 
    .floating-nav { min-width: 700px; }
}

.external-link {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.85rem; 
    background: rgba(0,0,0,0.04); /* Jemné pozadie pre tlačidlá */
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    transition: all 0.2s ease;
}
.external-link:hover {
    background: var(--accent-pink);
    color: var(--text-main) !important;
    transform: translateY(-2px);
}
.external-link i { font-size: 0.8rem; opacity: 0.7; }

.nav-divider { color: rgba(0,0,0,0.1); }
/* --- 3. HERO SECTION --- */
.hero {
    min-height: 100svh;
    position: relative;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    text-align: center;
    padding: 8rem 1rem 2rem 1rem;
    overflow: hidden;
    width: 100%;
}

.hero-text-wrapper { 
    position: relative; z-index: 5; 
    max-width: 100%; 
    display: flex; flex-direction: column; align-items: center;
}

.label-pill {
    background: #EAE4E0; padding: 0.5rem 1rem;
    border-radius: var(--radius-pill);
    font-size: 0.8rem; font-weight: 600; margin-bottom: 1.5rem;
    display: inline-block; letter-spacing: 0.5px;
    border: 1px solid rgba(255,255,255,0.5);
}

.hero h1 {
    font-size: clamp(2.8rem, 11vw, 6rem);
    line-height: 1.05; 
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

/* Oprava textu čas pre seba */
.highlight {
    position: relative; display: inline-block;
    color: transparent; 
    -webkit-text-stroke: 2px var(--text-main);
    white-space: nowrap;
}
.highlight::after {
    content: attr(data-text);
    position: absolute; left: 4px; top: 4px;
    color: var(--accent-pink);
    -webkit-text-stroke: 0;
    z-index: -1;
}

.hero-sub {
    max-width: 500px; 
    font-size: 1rem; 
    color: var(--text-soft);
    margin: 0 auto 2rem auto;
    line-height: 1.6;
    padding: 0 1rem;
}

.big-button {
    background: var(--text-main); color: white;
    padding: 1rem 2rem; border-radius: var(--radius-pill);
    font-size: 1rem; font-weight: 600; text-decoration: none;
    display: inline-flex; align-items: center; gap: 10px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
.big-button:hover { transform: scale(1.05); }

/* Emojis */
.emoji-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; }
.emoji { position: absolute; width: clamp(50px, 10vw, 90px); filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1)); }

/* --- 4. MARQUEE (OPRAVENÉ ODREZÁVANIE) --- */
.marquee-wrapper {
    background: var(--text-main); color: white;
    padding: 1rem 0; 
    transform: rotate(-2deg);
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-top: 2rem;
    margin-bottom: 4rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.marquee-track {
    display: flex; white-space: nowrap;
    animation: scroll 25s linear infinite;
}
@media (max-width: 768px) {
    .marquee-track { animation: scroll 10s linear infinite; }
}
.marquee-track span {
    font-size: 1.2rem; font-weight: 700; 
    padding-right: 4rem; letter-spacing: 1px;
}
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* --- 5. ACT ONE (Statement) --- */
.act-one { 
    padding: 4rem 1rem; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    width: 100%;
}
.large-statement { text-align: center; max-width: 800px; width: 100%; }
.large-statement h2 {
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    font-weight: 800; line-height: 1.1; margin-bottom: 2rem;
    letter-spacing: -0.03em;
}
.text-outline { -webkit-text-stroke: 1px var(--text-main); color: transparent; }

.statement-card { 
    background: white;
    padding: 2rem 1.5rem; 
    border-radius: var(--radius-lg); 
    box-shadow: var(--shadow-soft);
    max-width: 600px;
    margin: 0 auto;
}
.statement-card p { margin-bottom: 1.5rem; color: var(--text-soft); }

.avatar-group { 
    display: flex; align-items: center; justify-content: center; width: 100%; 
}
.avatar {
    width: 40px; height: 40px; border-radius: 50%;
    border: 2px solid white; 
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; margin-right: -10px;
    min-width: 40px; flex-shrink: 0;
}
.avatar-group span { margin-left: 20px; font-weight: 600; font-size: 0.9rem; }


/* --- 6. MANIFESTO (SCROLLER) --- */
.section-header {
    text-align: center; margin: 4rem 0 3rem 0; padding: 0 1rem;
}
.section-header h2 {
    font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; letter-spacing: -0.03em;
    margin-bottom: 0.5rem; line-height: 1.1;
}
.section-header p { color: var(--text-soft); font-size: 1.1rem; }

.manifesto-section {
    padding: 2rem 0;
    overflow: hidden;
}

.manifesto-scroller {
    overflow-x: auto;
    padding: 1rem 1.5rem 3rem 1.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; 
    -ms-overflow-style: none;
}
.manifesto-scroller::-webkit-scrollbar { display: none; }

.manifesto-track {
    display: flex; gap: 1rem; width: max-content;
}

.manifesto-card {
    min-width: 280px; max-width: 280px;
    padding: 2rem;
    border-radius: 24px;
    background: white;
    border: 1px solid rgba(255,255,255,0.8);
    box-shadow: var(--shadow-soft);
    display: flex; flex-direction: column; gap: 1rem;
    position: relative; overflow: hidden;
}
.manifesto-card h3 { font-size: 1.3rem; font-weight: 700; line-height: 1.2; }
.manifesto-card p { font-size: 0.95rem; color: var(--text-soft); line-height: 1.5; }
.card-num { 
    font-size: 3rem; font-weight: 800; color: rgba(0,0,0,0.05); 
    position: absolute; top: -10px; right: 10px; 
}


/* --- 7. AGENDA (TIMELINE) --- */
.agenda-section { padding: 0 1.5rem; max-width: 800px; margin: 0 auto; }

.timeline-container {
    display: flex; flex-direction: column; gap: 1rem;
}

.timeline-item {
    display: grid; grid-template-columns: 80px 1fr; gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.5);
    border-radius: 20px;
    align-items: center;
    transition: transform 0.3s ease;
}
.timeline-item:hover { background: white; transform: translateX(10px); box-shadow: var(--shadow-soft); }

.time {
    font-size: 1.2rem; font-weight: 700; color: var(--text-main);
    background: var(--accent-pink); padding: 0.3rem 0.5rem;
    border-radius: 8px; text-align: center;
}
.event-detail h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.3rem; }
.event-detail p { font-size: 0.9rem; color: var(--text-soft); margin: 0; }
.highlight-item { background: white; border: 1px solid rgba(0,0,0,0.05); box-shadow: var(--shadow-soft); }

.bonus-banner {
    margin-top: 3rem;
    background: var(--accent-dark); color: white;
    border-radius: 16px; padding: 1.5rem;
    display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center;
    text-align: center; font-weight: 600;
}
.bonus-banner span { display: flex; align-items: center; gap: 8px; }


/* --- 8. BENTO GRID (FOTKY & NOISE) --- */
.bento-section { padding: 4rem 1rem; max-width: 1100px; margin: 0 auto; width: 100%; }
.bento-header h2 { font-size: clamp(2.2rem, 6vw, 4rem); font-weight: 800; text-align: center; margin-bottom: 3rem; letter-spacing: -0.03em;}

.bento-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; width: 100%; }

/* Textúra */
.bento-card::before {
    content: "";
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.4; pointer-events: none; z-index: 1;
}

.bento-card {
    border-radius: 24px;
    padding: 2rem; 
    position: relative; overflow: hidden;
    min-height: 240px;
    display: flex; flex-direction: column; justify-content: flex-end;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
    background: white; /* Fallback */
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Fotka na pozadí */
.card-bg {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease; z-index: 0;
}
.bento-card:hover .card-bg { transform: scale(1.05); }

/* Gradient cez fotku */
.bento-card::after {
    content: '';
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

/* Obsah karty */
.card-content { position: relative; z-index: 2; color: white; }
.card-icon { font-size: 1.5rem; margin-bottom: 0.5rem; color: var(--accent-pink); text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.card-content h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 0.3rem; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.card-content p { font-size: 0.95rem; opacity: 0.9; line-height: 1.4; font-weight: 400; margin: 0; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }

/* Desktop Bento Layout */
@media (min-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 220px;
        gap: 1.2rem;
    }
    .card-wide { grid-column: span 2; grid-row: span 1; }
    .card-tall { grid-column: span 2; grid-row: span 2; }
    .card-square { grid-column: span 1; grid-row: span 1; }
    .card-wide-bottom { grid-column: span 2; grid-row: span 1; }
}

@media (min-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 250px;
    }
    .card-wide { grid-column: span 2; }
    .card-tall { grid-column: span 1; grid-row: span 2; }
    .card-square { grid-column: span 1; }
    .card-wide-bottom { grid-column: span 2; }
}


/* --- 9. PRICING --- */
.pricing-section { padding: 4rem 1.5rem; max-width: 900px; margin: 0 auto; }
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }

.pricing-card {
    background: white; padding: 2.5rem;
    border-radius: 32px;
    box-shadow: var(--shadow-bento);
    display: flex; flex-direction: column; gap: 2rem;
    position: relative; overflow: hidden;
}

.price-header { text-align: center; border-bottom: 1px solid rgba(0,0,0,0.05); padding-bottom: 2rem; }
.price-header h3 { font-size: 3.5rem; font-weight: 800; letter-spacing: -2px; margin: 0.5rem 0; }
.price-header p { color: var(--text-soft); }

.tag { 
    background: #EAE4E0; padding: 0.4rem 1rem; border-radius: 100px; 
    font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; 
}
.tag.accent { background: var(--accent-pink); }

.price-features { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.price-features li { display: flex; align-items: center; gap: 10px; color: var(--text-main); font-weight: 500; }
.price-features i { color: var(--accent-dark); }

.pricing-card.dark-mode { background: var(--accent-dark); color: white; }
.pricing-card.dark-mode h3, .pricing-card.dark-mode p, .pricing-card.dark-mode li { color: white; }
.pricing-card.dark-mode .price-header { border-color: rgba(255,255,255,0.1); }
.pricing-card.dark-mode i { color: var(--accent-pink); }

.full-width { width: 100%; justify-content: center; margin-top: auto; }
.white-btn { background: white; color: var(--text-main); }
.white-btn:hover { background: #f0f0f0; }
.pricing-note { text-align: center; margin-top: 2rem; color: var(--text-soft); font-size: 0.9rem; }

@media (min-width: 768px) {
    .pricing-grid { grid-template-columns: 1fr 1fr; }
    .timeline-item { padding: 2rem; grid-template-columns: 100px 1fr; }
}


/* --- 10. FAQ --- */
.faq-section { 
    margin-top: 4rem; 
    border-radius: 50px 50px 0 0; 
    background: white; 
    padding: 4rem 1.5rem;
    width: 100%;
    overflow: hidden;
}

.faq-container { max-width: 800px; margin: 0 auto; width: 100%; }
.faq-header { text-align: center; margin-bottom: 3rem; }
.faq-header h2 { font-size: 2.5rem; font-weight: 800; }

.faq-item { border-bottom: 1px solid #eee; margin-bottom: 1rem; }
.faq-trigger {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    background: none; border: none; font-size: 1.1rem; font-weight: 600; 
    padding: 1.5rem 0; text-align: left; cursor: pointer; color: var(--text-main);
    font-family: var(--font-main);
}
.faq-content { max-height: 0; overflow: hidden; transition: 0.3s ease; }
.faq-content p { padding-bottom: 1.5rem; color: var(--text-soft); font-size: 1rem;}

.simple-footer { text-align: center; padding: 3rem; font-size: 0.9rem; color: var(--text-soft); }

/* --- NOVÝ FOOTER STYLE --- */

.main-footer {
    background: var(--text-main); /* Tmavý footer pre kontrast */
    color: white;
    border-radius: 40px 40px 0 0; /* Zaoblenie hore */
    padding: 4rem 1.5rem 2rem 1.5rem;
    margin-top: -50px; /* Jemné prekrytie FAQ sekcie */
    position: relative; z-index: 10;
}

.footer-content {
    max-width: 1000px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr; gap: 3rem;
    margin-bottom: 4rem;
}

/* Stĺpec Značky */
.footer-brand-col h3 {
    font-size: 1.8rem; font-weight: 800; margin-bottom: 0.5rem; color: white;
}
.footer-brand-col p {
    color: rgba(255,255,255,0.6); margin-bottom: 2rem; max-width: 300px;
}

/* Instagram Tlačidlo (Veľké) */
.social-btn-large {
    display: inline-flex; align-items: center; gap: 1rem;
    background: rgba(255,255,255,0.1);
    padding: 0.8rem 1.2rem; border-radius: 20px;
    text-decoration: none; color: white;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}
.social-btn-large:hover {
    background: white; color: var(--text-main);
    transform: translateY(-3px);
}
.icon-box {
    font-size: 1.8rem;
}
.btn-text {
    display: flex; flex-direction: column; line-height: 1.2;
}
.btn-text span { font-size: 0.8rem; opacity: 0.8; }
.btn-text strong { font-size: 1rem; }

/* Stĺpec Kontakty */
.footer-contact-col h4 {
    font-size: 1.2rem; margin-bottom: 1.5rem; color: white;
}

.contact-list {
    display: flex; flex-direction: column; gap: 1rem;
}

.contact-item {
    display: flex; align-items: center; gap: 1rem;
    text-decoration: none; color: rgba(255,255,255,0.8);
    padding: 0.8rem;
    border-radius: 16px;
    background: rgba(255,255,255,0.03);
    transition: all 0.2s;
}
.contact-item:hover {
    background: rgba(255,255,255,0.1); color: white; padding-left: 1.2rem;
}
.contact-item i { color: var(--accent-pink); }

/* Spodná lišta */
.footer-bottom {
    max-width: 1000px; margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex; flex-direction: column; align-items: center; gap: 1rem;
    text-align: center;
    color: rgba(255,255,255,0.4); font-size: 0.9rem;
}

.footer-sublinks a {
    color: rgba(255,255,255,0.4); text-decoration: none; margin: 0 10px; transition: color 0.2s;
}
.footer-sublinks a:hover { color: white; }

/* Desktop Footer */
@media (min-width: 768px) {
    .footer-content { grid-template-columns: 1fr 1fr; gap: 4rem; }
    .footer-bottom { flex-direction: row; justify-content: space-between; }
}


/* --- ÚPRAVY PRE MOBILNÉ MENU --- */

/* 1. Layout Headeru */
.nav-content {
    justify-content: space-between; 
    /* Logo vľavo, zvyšok vpravo */
}

.nav-right-group {
    display: flex; align-items: center; gap: 0.8rem;
}

/* Skrytie desktop liniek na mobile */
.desktop-only { display: none; }

@media(min-width: 900px) {
    .desktop-only { display: flex; }
    .hamburger-btn { display: none; }
}

/* 2. Hamburger Tlačidlo */
.hamburger-btn {
    background: none; border: none; cursor: pointer;
    width: 40px; height: 40px;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    gap: 6px; z-index: 2000;
    padding: 0;
}

.bar {
    width: 24px; height: 2px; background-color: var(--text-main);
    border-radius: 2px; transition: all 0.3s ease;
}

/* Animácia na krížik (Active state) */
.hamburger-btn.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger-btn.active .bar:nth-child(2) {
    transform: translateY(0) rotate(-45deg); /* Spojíme ich do kríža */
    margin-top: -8px; /* Korekcia pozície */
}

/* 3. Celoobrazovkové Mobilné Menu */
.mobile-menu-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    z-index: 1500; /* Pod headerom, ale nad obsahom */
    display: flex; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu-overlay.open {
    opacity: 1; visibility: visible;
}

.mobile-menu-content {
    display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
    text-align: center;
    transform: translateY(20px); transition: transform 0.4s ease;
}

.mobile-menu-overlay.open .mobile-menu-content {
    transform: translateY(0);
}

/* Štýl odkazov v menu */
.mobile-link {
    font-size: 2rem; font-weight: 800; text-decoration: none;
    color: var(--text-main); letter-spacing: -1px;
    transition: color 0.2s;
}
.mobile-link:hover { color: var(--accent-pink); }

.mobile-link.external {
    font-size: 1.2rem; font-weight: 600; color: var(--text-soft);
    display: flex; align-items: center; gap: 10px;
}

.menu-label {
    text-transform: uppercase; font-size: 0.8rem; letter-spacing: 2px;
    color: #bbb; font-weight: 700; margin-top: 1rem;
}

.mobile-divider {
    width: 50px; height: 2px; background: #eee; margin: 1rem 0;
}

.mobile-socials {
    display: flex; gap: 1.5rem; margin-top: 2rem;
}
.mobile-socials a {
    font-size: 1.5rem; color: var(--text-main); text-decoration: none;
}