
:root {
    --primary: #ff0072;
    --whatsapp: #25D366;
    
    /* Světlé téma */
    --bg-light: #ffffff;
    --text-light-mode: #111111;
    --card-light: #ffffff;
    --border-light: rgba(0, 0, 0, 0.08);
    --muted-light: #666666;

    /* Tmavé téma */
    --bg-dark: #0a0a0a;
    --text-dark-mode: #ffffff;
    --card-dark: #141414;
    --border-dark: rgba(255, 255, 255, 0.08);
    --muted-dark: #a3a3a3;
    
    --bg-nav: rgba(255, 255, 255, 0.95);
    --bg-footer: #050505;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background-color: var(--bg-light);
    color: var(--text-light-mode);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; transition: 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* Typografie */
@font-face {
    font-family: 'Vivaldi';
    src: local('Vivaldi'), local('Vivaldi Italic');
}
.logo-fancy { font-family: 'Vivaldi', 'Playfair Display', serif; font-style: italic; font-weight: 400; }
.text-primary { color: var(--primary); }
.text-white { color: #ffffff; }
.font-semibold { font-weight: 600; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }

/* Přepínání sekcí */
.bg-light { background-color: var(--bg-light); color: var(--text-light-mode); }
.bg-dark { background-color: var(--bg-dark); color: var(--text-dark-mode); }

/* Komponenty */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: 50px;
    font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
    cursor: pointer; border: none; transition: all 0.3s;
}
.btn-primary { background: var(--text-light-mode); color: #fff; }
.btn-primary:hover { background: var(--primary); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255,0,114,0.3); }

.btn-outline { border: 1px solid var(--text-light-mode); color: var(--text-light-mode); background: transparent; }
.btn-outline:hover { background: var(--text-light-mode); color: #fff; }

.btn-outline-white { border: 1px solid #fff; color: #fff; background: transparent; }
.btn-outline-white:hover { background: #fff; color: #000; }

.btn-whatsapp { background: var(--whatsapp); color: #fff; border: 1px solid var(--whatsapp); }
.btn-whatsapp:hover { background: #20ba56; border-color: #20ba56; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3); }
.w-full { width: 100%; }
.justify-center { justify-content: center; }

/* Navigace (Světlý pruh pro čistotu) */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; height: 80px;
    background: var(--bg-nav); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border-light);
    z-index: 100; color: var(--text-light-mode);
}
.navbar-container { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.logo { font-size: 22px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; }
.logo-fancy { font-size: 28px; margin-left: 4px; text-transform: none; }
.nav-menu { display: flex; gap: 32px; }
.nav-menu a { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.nav-menu a:hover { color: var(--primary); }
.menu-toggle { display: none; background: none; border: none; color: var(--text-light-mode); cursor: pointer; }

/* Mobilní Boční Menu */
.mobile-menu-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 199; opacity: 0; pointer-events: none; transition: 0.3s; }
.mobile-drawer { position: fixed; top: 0; right: -300px; width: 300px; height: 100vh; background: var(--bg-light); z-index: 200; box-shadow: -5px 0 25px rgba(0,0,0,0.1); transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1); display: flex; flex-direction: column; color: var(--text-light-mode); }
.drawer-active .mobile-menu-overlay { opacity: 1; pointer-events: auto; }
.drawer-active .mobile-drawer { right: 0; }
.close-drawer { position: absolute; top: 24px; right: 24px; background: none; border: none; color: var(--text-light-mode); cursor: pointer; }
.drawer-nav { padding: 80px 32px 32px; display: flex; flex-direction: column; gap: 24px; flex-grow: 1; }
.drawer-nav a { font-size: 18px; font-weight: 600; text-transform: uppercase; }
.drawer-nav a:hover { color: var(--primary); }
.drawer-footer { padding: 32px; border-top: 1px solid var(--border-light); }

/* Hero Sekce s Fotkou */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: 80px; text-align: center; overflow: hidden; }
.hero-bg-photo {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%), url('img/utulny-interier-salonu-krasy-anett-nymburk-1.webp') center/cover no-repeat;
    z-index: 0;
}
.hero-content { position: relative; z-index: 10; max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.hero-title { font-size: 48px; font-weight: 700; line-height: 1.1; margin-bottom: 24px; color: #fff; }
.hero-subtitle {display: block; font-family: 'Inter', sans-serif; font-size: 18px; font-weight: 600; text-transform: uppercase; letter-spacing: 4px; margin-top: 12px;}

/* Úprava pro mobilní zařízení, aby se text nezalomil ošklivě */
@media (max-width: 992px) {
    .hero-subtitle {
        font-size: 14px;
        letter-spacing: 2px;
    }
}
.hero-script { font-size: 64px; display: block; margin-top: 8px; }
.hero-description { font-size: 16px; color: var(--muted-dark); max-width: 600px; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; }

/* Google Badge */
.google-trust-badge {
    display: inline-flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.1); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2); padding: 6px 20px 6px 8px; border-radius: 50px; margin-bottom: 32px; transition: 0.3s;
}
.google-trust-badge:hover { border-color: var(--primary); }
.google-logo { background: #fff; border-radius: 50%; padding: 4px; display: flex; }
.avatars { display: flex; margin-left: -4px; }
.avatars img { width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--bg-dark); margin-left: -8px; }
.stars { display: flex; color: #FBBC05; margin-left: 4px; }
.stars svg { width: 14px; height: 14px; fill: currentColor; }
.badge-text { font-size: 12px; font-weight: 600; color: #fff; }

/* Sémantika hlaviček */
.section-header { text-align: center; margin-bottom: 56px; }
.section-subtitle { font-size: 28px; color: var(--primary); display: block; margin-bottom: 8px; }
.section-title { font-size: 32px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; }
.text-left { text-align: left; }
.accent-line { width: 50px; height: 2px; background: var(--primary); margin: 16px auto 0; }
.accent-line.text-left { margin-left: 0; margin-bottom: 32px}
.contact-action-wrap {margin-top: 48px;}
.contact-action-wrap .btn-whatsapp {padding: 16px 24px;font-size: 14px;box-shadow: 0 10px 30px rgba(37, 211, 102, 0.2);}
.btn-pink {background: var(--primary); color: #ffffff; border: none;}
.btn-pink:hover {background: #d40060; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255, 0, 114, 0.3);}

/* Služby (Světlá sekce) */
.bg-light .section-title { color: var(--text-light-mode); }
.bg-light .card { background: var(--card-light); border: 1px solid transparent; box-shadow: 0 4px 20px rgba(0,0,0,0.03); padding: 32px; border-radius: 16px; transition: 0.3s; }
.bg-light .card:hover { border-color: rgba(255,0,114,0.3); transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.08); }
.bg-light .card-header h3 { font-size: 18px; font-weight: 700; text-transform: uppercase; color: var(--text-light-mode); }
.bg-light .price-list li { border-bottom: 1px solid var(--border-light); color: var(--muted-light); }
.bg-light .price-list .price { color: var(--text-light-mode); }

.compact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.card-header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.icon-wrap { background: rgba(255,0,114,0.08); padding: 10px; border-radius: 12px; color: var(--primary); }
.price-list { display: flex; flex-direction: column; gap: 12px; }
.price-list li { display: flex; justify-content: space-between; font-size: 13px; padding-bottom: 6px; }
.price-list .price { font-weight: 700; }
.price-list .featured { border-bottom-color: var(--primary) !important; }
.price-list .featured span { color: var(--primary); font-weight: 600; }

/* Galerie Carousely (Tmavá sekce) */
.bg-dark .section-title { color: #fff; }
.overflow-hidden { overflow: hidden; }
.mt-4 { margin-top: 24px; }
.marquee-wrapper { width: 100vw; position: relative; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; overflow: hidden; }
.marquee-track { display: flex; gap: 16px; width: max-content; }
.marquee-track:hover { animation-play-state: paused !important; }

.track-right { animation: scrollRight 60s linear infinite; }
.track-left { animation: scrollLeft 60s linear infinite; }

@keyframes scrollLeft { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes scrollRight { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

.gallery-card { position: relative; width: 300px; aspect-ratio: 4/5; border-radius: 16px; overflow: hidden; background: #111; flex-shrink: 0; cursor: pointer; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; filter: brightness(0.8); }
.gallery-card:hover img { transform: scale(1.05); filter: brightness(1); }
.gallery-card-info { position: absolute; inset: 0; background: rgba(0,0,0,0.6); display: flex; align-items: center; justify-content: center; opacity: 0; transition: 0.3s; padding: 20px; text-align: center; }
.gallery-card:hover .gallery-card-info { opacity: 1; }
.gallery-card-info span { color: #fff; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; border: 1px solid var(--primary); padding: 8px 16px; border-radius: 30px; background: rgba(255,0,114,0.2); backdrop-filter: blur(4px); }

/* O mně (Světlá sekce) */
.about-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-image { position: relative; border-radius: 24px; overflow: hidden; z-index: 2; }
.about-accent-box { position: absolute; inset: 0; border: 2px solid var(--primary); border-radius: 24px; transform: translate(16px, 16px); z-index: -1; }
.bg-light .about-text p { color: var(--muted-light); margin-bottom: 16px; font-size: 15px; }
.about-stats { display: flex; gap: 40px; }
.about-stats h4 { font-family: 'Playfair Display', serif; font-size: 32px; color: var(--primary); }
.bg-light .about-stats span { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light-mode); font-weight: 600; }

/* Recenze Slider (Tmavá sekce) */
.review-slider-container { max-width: 700px; margin: 0 auto; text-align: center; }
.review-slide { display: none; animation: fadeIn 0.5s; }
.review-slide.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.r-stars { color: var(--primary); display: flex; justify-content: center; gap: 4px; margin-bottom: 24px; }
.bg-dark .r-text { font-family: 'Playfair Display', serif; font-size: 20px; font-style: italic; margin-bottom: 24px; line-height: 1.6; color: #fff; }
.bg-dark .r-author { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--muted-dark); }
.slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 32px; }
.dot { width: 8px; height: 8px; background: rgba(255,255,255,0.2); border-radius: 50%; cursor: pointer; transition: 0.3s; }
.dot.active { background: var(--primary); transform: scale(1.2); }

/* Kontakt & TVOJE NOVÁ MAPA */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.info-items { display: flex; flex-direction: column; gap: 24px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-icon { background: rgba(255,0,114,0.08); padding: 12px; border-radius: 12px; color: var(--primary); }
.bg-light .info-item h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 4px; color: var(--text-light-mode); }
.bg-light .info-item p { color: var(--muted-light); font-size: 14px; }

/* Modulární Mapa z tvého kódu - kompaktnější verze */
.contact-map-container {
    position: relative;
    min-height: 500px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 1;
}
.map-iframe-full {
    position: absolute; 
    inset: 0; 
    width: 100%; 
    height: 100%; 
    border: 0;
    filter: contrast(1.05);
    z-index: 2;
}
.map-glass-card {
    position: relative; 
    z-index: 10; 
    margin: 16px; 
    padding: 16px;
    background: rgba(0, 0, 0, 0.75); 
    backdrop-filter: blur(16px); 
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.1); 
    border-radius: 16px; 
    color: #fff;
}
.map-card-header { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.map-icon-box { background: var(--primary); padding: 10px; border-radius: 12px; box-shadow: 0 4px 15px rgba(255,0,114,0.3); }
.map-icon-box svg { color: #fff; width: 20px; height: 20px; }
.map-title { font-weight: 700; font-size: 16px; color: #fff; }
.map-subtitle { font-size: 13px; color: #ccc; }
.map-note { font-size: 11px; color: #ccc; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 10px; line-height: 1.4; }


/* Footer (Tmavý jako elegantní kotva webu) */
.footer { background: var(--bg-footer); border-top: 1px solid var(--border-dark); padding: 80px 0 40px; color: #a3a3a3; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 64px; }
.footer-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 24px; color: #fff; }
.logo.text-white { color: #fff; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col li, .footer-col a { color: #a3a3a3; font-size: 13px; transition: 0.2s; }
.footer-col a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 24px; display: flex; justify-content: space-between; font-size: 12px; color: #666; }
.hover-underline:hover { text-decoration: underline; color: var(--primary); }

/* Animace Zjevení */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Floating WhatsApp s tooltypem */
.floating-wa { position: fixed; bottom: 30px; right: 30px; z-index: 99; display: flex; align-items: center; gap: 16px; }

.wa-btn {
    width: 60px; height: 60px; background: var(--whatsapp); color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: flex-start;
    padding-left: 16px;
    box-sizing: border-box;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    animation: bouncePulse 2s infinite; cursor: pointer;
    overflow: hidden; 
    white-space: nowrap; 
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s, border-radius 0.3s, padding 0.4s;
}

.wa-btn svg { width: 28px; height: 28px; fill: white; color: white; flex-shrink: 0;}

.wa-text {
    margin-left: 0;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    opacity: 0;
    transition: opacity 0.2s ease, margin-left 0.4s ease;
}

.wa-btn:hover {
    width: 260px;
    padding: 0 24px;
    border-radius: 30px;
    animation-play-state: paused;
}
.wa-btn:hover .wa-text {
    margin-left: 12px;
    opacity: 1;
}

.wa-tooltip {
    background: #fff; color: #000; padding: 10px 16px; border-radius: 12px; font-size: 13px; font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15); opacity: 0; transform: translateX(20px); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none; position: relative; border: 1px solid var(--border-light);
}
.wa-tooltip::after {
    content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%);
    border-width: 6px 0 6px 6px; border-style: solid; border-color: transparent transparent transparent #fff;
}
.wa-tooltip.show { opacity: 1; transform: translateX(0); }

@keyframes bouncePulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Responsivita */
@media (max-width: 992px) {
    .nav-menu, .nav-cta { display: none; }
    .menu-toggle { display: block; }
    .hero-title { font-size: 36px; }
    .hero-script { font-size: 48px; }
    .compact-grid { grid-template-columns: 1fr; }
    .about-wrapper, .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 576px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
    .floating-wa { bottom: 20px; right: 20px; }
    .wa-tooltip { display: none; }
}

/* Elegantní citace vložená přímo do příběhu */
.story-quote {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-style: italic;
    line-height: 1.6;
    color: var(--primary); /* Decentní zvýraznění firemní barvou */
    border-left: 3px solid var(--primary);
    padding-left: 20px;
    margin: 28px 0;
    font-weight: 500;
}

/* Responzivita pro menší obrazovky */
@media (max-width: 768px) {
    .story-quote {
        font-size: 16px;
        margin: 20px 0;
        padding-left: 16px;
    }
}