/* ===== FONTY – lokální hosting ===== */
@font-face { font-family:'Baloo 2'; src:url('fonts/baloo2-400.woff2') format('woff2'); font-weight:400; font-style:normal; font-display:swap; }
@font-face { font-family:'Baloo 2'; src:url('fonts/baloo2-600.woff2') format('woff2'); font-weight:600; font-style:normal; font-display:swap; }
@font-face { font-family:'Baloo 2'; src:url('fonts/baloo2-700.woff2') format('woff2'); font-weight:700; font-style:normal; font-display:swap; }
@font-face { font-family:'Baloo 2'; src:url('fonts/baloo2-800.woff2') format('woff2'); font-weight:800; font-style:normal; font-display:swap; }
@font-face { font-family:'Nunito';  src:url('fonts/nunito-400.woff2')  format('woff2'); font-weight:400; font-style:normal; font-display:swap; }
@font-face { font-family:'Nunito';  src:url('fonts/nunito-600.woff2')  format('woff2'); font-weight:600; font-style:normal; font-display:swap; }
@font-face { font-family:'Nunito';  src:url('fonts/nunito-700.woff2')  format('woff2'); font-weight:700; font-style:normal; font-display:swap; }
@font-face { font-family:'Nunito';  src:url('fonts/nunito-800.woff2')  format('woff2'); font-weight:800; font-style:normal; font-display:swap; }

:root {
    --pink:          #FF5FA7;
    --pink-light:    #FFD6EC;
    --purple:        #A93BF5;
    --purple-light:  #EDD9FF;
    --teal:          #00C8B8;
    --teal-light:    #C8FAF5;
    --yellow:        #FFD93D;
    --bg:            #FEF7FC;
    --text:          #2D1B4E;
    --text-light:    #6B5B8A;
    --shadow:        0 8px 32px rgba(150,60,230,0.13);
    --radius:        22px;
    --radius-sm:     14px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@keyframes gradShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
body {
    font-family: 'Nunito', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    scrollbar-gutter: stable;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0; width: 100%;
    height: 58px;
    z-index: 200;
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 0 28px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    box-shadow: 0 2px 20px rgba(169,59,245,0.1);
}
.nav-logo {
    grid-column: 1;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.nav-logo-img {
    height: 38px;
    width: auto;
    display: block;
}
.nav-logo-text {
    font-family: 'Baloo 2', cursive;
    font-weight: 800;
    font-size: 1.55rem;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}
.nav-links { grid-column: 2; display: flex; gap: 8px; list-style: none; align-items: center; }
.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: 0.88rem;
    padding: 8px 17px;
    border-radius: 50px;
    transition: color 0.28s, box-shadow 0.28s, transform 0.28s;
    background-size: 260% 260% !important;
    animation: gradShift 8s ease infinite;
}
.nav-links li:nth-child(1) a { background: linear-gradient(-45deg, #FFE8F4, #EDD9FF, #C8FAF5, #FFE8F4); animation-delay: 0s; }
.nav-links li:nth-child(2) a { background: linear-gradient(-45deg, #FFD6EC, #C8FAF5, #FFF3D4, #FFD6EC); animation-delay: -1s; }
.nav-links li:nth-child(3) a { background: linear-gradient(-45deg, #EDD9FF, #FFF3D4, #FFE8F4, #EDD9FF); animation-delay: -2s; }
.nav-links li:nth-child(4) a { background: linear-gradient(-45deg, #C8FAF5, #FFE8F4, #FFD6EC, #C8FAF5); animation-delay: -3s; }
.nav-links li:nth-child(5) a { background: linear-gradient(-45deg, #FFF3D4, #FFD6EC, #EDD9FF, #FFF3D4); animation-delay: -4s; }
.nav-links li:nth-child(6) a { background: linear-gradient(-45deg, #FFE0EE, #EDD9FF, #C8FAF5, #FFE0EE); animation-delay: -5s; }
.nav-links li:nth-child(7) a { background: linear-gradient(-45deg, #C8FAF5, #FFE0EE, #FFF3D4, #C8FAF5); animation-delay: -6s; }
.nav-links li:nth-child(8) a { background: linear-gradient(-45deg, #FFD6EC, #EDD9FF, #C8FAF5, #FFD6EC); animation-delay: -7s; }
.nav-links a:hover, .nav-links a.active {
    background: linear-gradient(135deg, var(--pink), var(--purple)) !important;
    color: #fff;
    box-shadow: 0 4px 16px rgba(169,59,245,0.38);
    transform: translateY(-2px);
}

.nav-right {
    grid-column: 3;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-insta {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.2s, box-shadow 0.2s;
}
.nav-insta:hover { transform: scale(1.1); box-shadow: 0 3px 12px rgba(220,39,67,0.4); }
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
}
.hamburger span { width: 26px; height: 3px; background: var(--purple); border-radius: 3px; transition: all 0.3s; display: block; }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
    display: none;
    position: fixed;
    top: 58px; left: 0; right: 0;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 199;
    padding: 14px 20px 22px;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid rgba(169,59,245,0.08);
    box-shadow: 0 8px 32px rgba(169,59,245,0.13);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 13px 22px;
    border-radius: 50px;
    text-align: center;
    transition: color 0.25s, box-shadow 0.25s, transform 0.25s;
    background-size: 260% 260% !important;
    animation: gradShift 8s ease infinite;
}
.mobile-menu a:nth-child(1) { background: linear-gradient(-45deg, #FFE8F4, #EDD9FF, #C8FAF5, #FFE8F4); animation-delay: 0s; }
.mobile-menu a:nth-child(2) { background: linear-gradient(-45deg, #FFD6EC, #C8FAF5, #FFF3D4, #FFD6EC); animation-delay: -1s; }
.mobile-menu a:nth-child(3) { background: linear-gradient(-45deg, #EDD9FF, #FFF3D4, #FFE8F4, #EDD9FF); animation-delay: -2s; }
.mobile-menu a:nth-child(4) { background: linear-gradient(-45deg, #C8FAF5, #FFE8F4, #FFD6EC, #C8FAF5); animation-delay: -3s; }
.mobile-menu a:nth-child(5) { background: linear-gradient(-45deg, #FFF3D4, #FFD6EC, #EDD9FF, #FFF3D4); animation-delay: -4s; }
.mobile-menu a:nth-child(6) { background: linear-gradient(-45deg, #FFE0EE, #EDD9FF, #C8FAF5, #FFE0EE); animation-delay: -5s; }
.mobile-menu a:nth-child(7) { background: linear-gradient(-45deg, #C8FAF5, #FFE0EE, #FFF3D4, #C8FAF5); animation-delay: -6s; }
.mobile-menu a:nth-child(8) { background: linear-gradient(-45deg, #FFD6EC, #EDD9FF, #C8FAF5, #FFD6EC); animation-delay: -7s; }
.mobile-menu a:hover { transform: scale(1.03); box-shadow: 0 4px 14px rgba(169,59,245,0.2); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 34px;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.28s ease;
    cursor: pointer;
    border: none;
}
.btn-primary { background: linear-gradient(135deg, var(--pink), var(--purple)); color: #fff; box-shadow: 0 8px 26px rgba(169,59,245,0.38); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(169,59,245,0.5); }
.btn-secondary { background: linear-gradient(135deg, var(--teal), #22D8E8); color: #fff; box-shadow: 0 8px 26px rgba(0,200,184,0.35); }
.btn-secondary:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(0,200,184,0.5); }
.btn-ghost { background: rgba(255,255,255,0.75); color: var(--text); border: 2px solid rgba(169,59,245,0.25); }
.btn-ghost:hover { background: #fff; border-color: var(--purple); color: var(--purple); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--purple); border: 2.5px solid var(--purple); }
.btn-outline:hover { background: var(--purple); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(169,59,245,0.35); }

/* ===== SECTION COMMONS ===== */
section { padding: 80px 20px; }
.section-header { text-align: center; margin-bottom: 52px; }
.section-label {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}
.label-pink   { background: var(--pink-light);   color: #D0266A; }
.label-purple { background: var(--purple-light); color: #7A1FC8; }
.label-teal   { background: var(--teal-light);   color: #007A72; }
.label-yellow { background: #FFF3D4;              color: #A86800; }
.section-title {
    font-family: 'Baloo 2', cursive;
    font-weight: 800;
    font-size: clamp(1.85rem, 4vw, 2.9rem);
    color: var(--text);
    margin-bottom: 14px;
}
.section-desc { color: var(--text-light); font-size: 1.05rem; max-width: 560px; margin: 0 auto; line-height: 1.72; }

/* ===== SERVICE CARDS ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.service-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 34px 26px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
}
.service-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 6px;
    border-radius: var(--radius) var(--radius) 0 0;
}
.service-card.c-pink::before   { background: linear-gradient(90deg, var(--pink), var(--purple)); }
.service-card.c-purple::before { background: linear-gradient(90deg, var(--purple), var(--teal)); }
.service-card.c-teal::before   { background: linear-gradient(90deg, var(--teal), #22D8E8); }
.service-card.c-yellow::before { background: linear-gradient(90deg, var(--yellow), var(--pink)); }
.service-card:hover { transform: translateY(-9px); box-shadow: 0 20px 54px rgba(150,60,230,0.2); }
.service-icon { font-size: 3.3rem; margin-bottom: 16px; display: block; }
.service-card h3 { font-family: 'Baloo 2', cursive; font-weight: 800; font-size: 1.22rem; margin-bottom: 10px; color: var(--text); }
.service-card p { color: var(--text-light); font-size: 0.95rem; line-height: 1.65; margin-bottom: 14px; }
.card-more { display: inline-block; color: var(--purple); font-weight: 800; font-size: 0.88rem; }
.service-card:hover .card-more { color: var(--pink); }
.service-card-photo {
    display: block;
    width: 215px;
    height: 215px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

.section-more { text-align: center; margin-top: 36px; }

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero-pink   { background: linear-gradient(135deg, #FFF0FB, #FFD6EC, #EDD9FF); }
.page-hero-purple { background: linear-gradient(135deg, #F0E4FF, #EDD9FF, #D8FAFA); }
.page-hero-teal   { background: linear-gradient(135deg, #D8FAFA, #C8FAF5, #E8FFFE); }
.page-hero-yellow { background: linear-gradient(135deg, #FFF9E0, #FFF3D4, #FFE8F4); }

.page-hero-content { position: relative; z-index: 1; }
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    margin-bottom: 20px;
    padding: 7px 16px;
    background: rgba(255,255,255,0.75);
    border-radius: 50px;
    transition: all 0.25s;
}
.back-link:hover { background: #fff; color: var(--purple); }
.page-hero-icon { font-size: 4.5rem; display: block; margin-bottom: 14px; }
.page-hero-icon img,
.hero-icon-photo {
    width: 220px; height: 220px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto 14px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}
.page-hero h1 { font-family: 'Baloo 2', cursive; font-weight: 800; font-size: clamp(2rem, 5vw, 3.2rem); color: var(--text); margin-bottom: 12px; }
.page-hero p { color: var(--text-light); font-size: 1.1rem; font-weight: 600; max-width: 520px; margin: 0 auto; line-height: 1.6; }

/* ===== PAGE BODY (2-column) ===== */
.page-body {
    max-width: 1060px;
    margin: 0 auto;
    padding: 64px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    align-items: start;
}
.content-main h2 {
    font-family: 'Baloo 2', cursive;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text);
    margin: 32px 0 12px;
}
.content-main h2:first-child { margin-top: 0; }
.content-main p { color: var(--text-light); line-height: 1.82; margin-bottom: 14px; font-size: 1.02rem; }
.content-main ul { list-style: none; margin-bottom: 18px; }
.content-main ul li {
    color: var(--text-light);
    padding: 7px 0 7px 28px;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
    border-bottom: 1px solid #F0EAF8;
}
.content-main ul li:last-child { border-bottom: none; }
.content-main ul li::before { content: '✓'; position: absolute; left: 0; color: var(--teal); font-weight: 800; }

.cta-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 30px 24px;
    box-shadow: var(--shadow);
    text-align: center;
    position: sticky;
    top: 90px;
}
.cta-card h3 { font-family: 'Baloo 2', cursive; font-weight: 800; font-size: 1.35rem; margin-bottom: 10px; color: var(--text); }
.cta-card p { color: var(--text-light); font-size: 0.93rem; line-height: 1.65; margin-bottom: 18px; }
.cta-phone { display: block; font-size: 1.25rem; font-weight: 800; color: var(--text); text-decoration: none; margin-bottom: 14px; }
.cta-phone:hover { color: var(--purple); }
.cta-divider { height: 1px; background: #EDE8F8; margin: 18px 0; }

/* ===== MINI CONTACT FORM (CTA sidebar) ===== */
.cta-form-card { text-align: left; }
.cta-form-card h3 { font-family: 'Baloo 2', cursive; font-weight: 800; font-size: 1.18rem; margin-bottom: 14px; color: var(--text); text-align: center; }
.mini-form-group { margin-bottom: 11px; }
.mini-form-group label { display: block; font-size: 0.78rem; font-weight: 700; color: var(--text); margin-bottom: 4px; letter-spacing: 0.02em; text-transform: uppercase; }
.mini-form-group input,
.mini-form-group textarea,
.mini-form-group select {
    width: 100%; padding: 9px 12px; border: 1.5px solid #E2D9F3;
    border-radius: 10px; font-size: 0.88rem; font-family: 'Nunito', sans-serif;
    color: var(--text); background: #FAFAFA; transition: border-color 0.22s, box-shadow 0.22s;
    box-sizing: border-box;
}
.mini-form-group input:focus,
.mini-form-group textarea:focus,
.mini-form-group select:focus { outline: none; border-color: var(--purple); box-shadow: 0 0 0 3px rgba(169,59,245,0.12); background: #fff; }
.mini-form-group textarea { resize: vertical; min-height: 80px; }
.mini-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mini-form-btns { display: flex; gap: 8px; margin-top: 8px; }
.mini-btn {
    flex: 1; text-align: center; font-size: 0.84rem; padding: 10px 6px;
    font-weight: 700; border-radius: 50px; text-decoration: none;
    transition: all 0.25s; display: inline-block;
    font-family: 'Nunito', sans-serif; cursor: pointer;
}
.mini-btn-call {
    background: linear-gradient(135deg, var(--pink), var(--purple));
    color: #fff; box-shadow: 0 4px 14px rgba(169,59,245,0.28);
}
.mini-btn-call:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(169,59,245,0.45); color: #fff; }
.mini-btn-wa {
    background: #25D366; color: #fff;
    box-shadow: 0 4px 14px rgba(37,211,102,0.28);
}
.mini-btn-wa:hover { transform: translateY(-2px); background: #1ebe5d; box-shadow: 0 8px 22px rgba(37,211,102,0.45); color: #fff; }
.mini-success { text-align: center; padding: 10px 0; }
.mini-success .success-icon { font-size: 2.8rem; display: block; margin-bottom: 8px; }
.mini-success strong { font-size: 1.1rem; display: block; margin-bottom: 6px; color: var(--text); }
.mini-success p { color: var(--text-light); font-size: 0.88rem; line-height: 1.6; }

/* ===== GALLERY BUTTON (on subpages) ===== */
.btn-gallery-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: transparent;
    color: var(--text-light);
    border: 1.5px solid var(--border, #e8dcf5);
    border-radius: 12px;
    padding: 11px 16px;
    margin-bottom: 16px;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    font-family: 'Nunito', sans-serif;
}
.btn-gallery-link:hover {
    border-color: var(--pink);
    color: var(--pink);
    background: rgba(255,95,167,0.05);
}

/* ===== RELATED SERVICES ===== */
.related-section { padding: 64px 24px 80px; background: linear-gradient(135deg, #F8F0FF, #E4FAFA); }
.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

/* ===== FOOTER ===== */
footer { background: var(--text); color: rgba(255,255,255,0.65); text-align: center; padding: 36px 20px; }
.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}
.footer-logo-text {
    font-family: 'Baloo 2', cursive;
    font-weight: 800;
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--pink), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
footer p { font-size: 0.9rem; line-height: 1.7; }
footer a { color: #FFB8D8; text-decoration: none; }
footer a:hover { color: var(--teal-light); }
.footer-copy { margin-top: 18px; font-size: 0.78rem; opacity: 0.45; }
.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
    color: #fff;
    font-weight: 800;
    font-size: 0.92rem;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(220,39,67,0.35);
    transition: all 0.28s;
}
.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(220,39,67,0.55);
    color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) { .nav-links { display: none; } .hamburger { display: flex; } }
@media (max-width: 900px) { .page-body { grid-template-columns: 1fr; } .cta-card { position: static; } }
@media (max-width: 560px) { .page-hero { padding: 100px 16px 44px; } section { padding: 60px 16px; } }


/* ===== TABLET – detail foto na atrakce stránce ===== */
@media (max-width: 900px) {
    .atrakce-detail-foto {
        max-width: 400px;
        width: 50% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/* ===== SERVICES GRID – tablet 2 sloupce, mobil 2 sloupce ===== */
@media (max-width: 860px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .services-grid { gap: 12px; }
    .service-card { padding: 22px 14px; }
    .service-card-photo { width: 120px; height: 120px; }
    .service-card h3 { font-size: 1.05rem; }
    .service-card p { font-size: 0.86rem; }
}

/* ===== ACCESSIBILITY – reduced motion ===== */
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; } }
