/* ============================================
   Detská kaviarnička – 2026 Modern Design
   Svetlý, vzdušný, soft UI + glassmorphism
   ============================================ */

:root {
    --accent: #A78BFA;
    --accent-dark: #7C5FD3;
    --accent-light: #DDD6FE;
    --accent-pale: #F3F0FF;
    --pink: #F4A7C1;
    --pink-dark: #E87FA3;
    --pink-light: #FDE8F0;
    --yellow: #F5C542;
    --yellow-light: #FFF4D6;
    --mint: #6EE7B7;
    --mint-light: #D1FAE5;
    --coral: #FB923C;

    --dark: #1E293B;
    --text: #475569;
    --text-light: #94A3B8;
    --bg: #FFFFFF;
    --bg-soft: #F8FAFC;
    --bg-warm: #FEFCF9;
    --border: #E2E8F0;
    --border-light: #F1F5F9;

    --gradient-brand: linear-gradient(135deg, var(--accent) 0%, var(--pink) 100%);
    --gradient-soft: linear-gradient(135deg, var(--accent-pale) 0%, var(--pink-light) 100%);

    --font-heading: 'Baloo 2', cursive;
    --font-body: 'Nunito', sans-serif;

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 36px;
    --radius-full: 9999px;

    --shadow-xs: 0 1px 3px rgba(0,0,0,0.04);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 24px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.08);
    --shadow-glow: 0 0 60px rgba(91,197,232,0.12);

    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    line-height: 1.2;
}

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

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(91,197,232,0.3);
}

.btn-soft {
    background: var(--accent-pale);
    color: var(--accent-dark);
}

.btn-soft:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

.btn-block { width: 100%; }

/* === NAVBAR === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 1px 0 var(--border);
    padding: 8px 0;
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo {
    display: flex;
    align-items: center;
}

.navbar-logo img {
    height: 56px;
    object-fit: contain;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-link {
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    transition: var(--transition);
}

.nav-link:hover { color: var(--accent-dark); background: var(--accent-pale); }
.nav-link.active { color: var(--accent-dark); background: var(--accent-pale); }

.nav-link-cta {
    background: var(--accent);
    color: #fff !important;
    margin-left: 8px;
}

.nav-link-cta:hover {
    background: var(--accent-dark) !important;
    color: #fff !important;
}

/* Hamburger */
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.navbar-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar-toggle.active span:nth-child(2) { opacity: 0; }
.navbar-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* === HERO === */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(160deg, #FEFCF9 0%, var(--accent-pale) 25%, var(--pink-light) 50%, var(--yellow-light) 75%, var(--mint-light) 100%);
    background-size: 200% 200%;
    animation: heroGradient 12s ease infinite;
    overflow: hidden;
    position: relative;
}

@keyframes heroGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Floating playful shapes */
.hero-bubbles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
}

.hero > .container {
    position: relative;
    z-index: 3;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    padding: 8px 20px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px);
    border: 1.5px solid rgba(91,197,232,0.2);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-dark);
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

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

.hero-text > p {
    font-size: 1.15rem;
    color: var(--text);
    max-width: 480px;
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero-stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
}

/* Hero visuals */
.hero-visuals {
    position: relative;
    height: 520px;
    perspective: 800px;
}

.hero-img {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 3px solid rgba(255,255,255,0.8);
    transition: box-shadow 0.5s ease;
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 20s ease-in-out infinite alternate;
}

/* Ken Burns - pomalý zoom & pan vo vnútri okienok */
@keyframes kenBurns {
    0%   { transform: scale(1)   translate(0, 0); }
    100% { transform: scale(1.08) translate(-2%, -1.5%); }
}

/* (každý rámik má vlastnú animáciu) */

/* Shine - removed */
.hero-img-shine { display: none; }

.hero-img-main {
    top: 0;
    left: 0;
    width: 85%;
    height: 75%;
    z-index: 2;
    box-shadow: var(--shadow-lg);
    animation: cardFloatMain 7s ease-in-out infinite;
}

@keyframes cardFloatMain {
    0%, 100% { transform: translateY(0) rotate3d(1, 0, 0, 0deg); }
    33%  { transform: translateY(-12px) rotate3d(1, 0.5, 0, 1.5deg); }
    66%  { transform: translateY(-4px) rotate3d(0.5, 1, 0, -1deg); }
}

.hero-img-small {
    bottom: 0;
    right: 0;
    width: 55%;
    height: 45%;
    z-index: 3;
    border: 5px solid var(--bg);
    box-shadow: var(--shadow-lg);
    animation: cardFloatSmall 5s ease-in-out infinite;
}

@keyframes cardFloatSmall {
    0%, 100% { transform: translate(0, 0) rotate3d(0, 0, 1, 0deg); }
    20%  { transform: translate(8px, -10px) rotate3d(0, 1, 0, 2deg); }
    40%  { transform: translate(-6px, -6px) rotate3d(1, 0, 0, -1.5deg); }
    60%  { transform: translate(10px, -14px) rotate3d(0.5, 1, 0, 1.5deg); }
    80%  { transform: translate(-4px, -8px) rotate3d(1, 0.5, 0, -1deg); }
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    filter: blur(50px);
    opacity: 0.5;
    animation: blobFloat 8s ease-in-out infinite;
}

.hero-blob-1 {
    width: 260px;
    height: 260px;
    background: var(--accent);
    top: -60px;
    right: -30px;
    animation-delay: 0s;
}

.hero-blob-2 {
    width: 200px;
    height: 200px;
    background: var(--pink);
    bottom: 0;
    left: -40px;
    animation-delay: -3s;
}

.hero-blob-3 {
    width: 120px;
    height: 120px;
    background: var(--mint);
    top: 50%;
    right: 30%;
    animation-delay: -5s;
}

.hero-blob-4 {
    width: 80px;
    height: 80px;
    background: var(--coral);
    top: 10%;
    left: 50%;
    animation-delay: -7s;
    filter: blur(40px);
    opacity: 0.5;
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, -20px) scale(1.08); }
    50% { transform: translate(-15px, 15px) scale(0.95); }
    75% { transform: translate(10px, -10px) scale(1.04); }
}

/* Animated shapes */
.hero-shape {
    position: absolute;
    z-index: 1;
    opacity: 0.15;
}

.hero-shape-1 {
    width: 40px;
    height: 40px;
    border: 3px solid var(--accent);
    border-radius: 50%;
    top: 15%;
    right: 15%;
    animation: shapeSpin 15s linear infinite;
}

.hero-shape-2 {
    width: 24px;
    height: 24px;
    background: var(--coral);
    border-radius: 4px;
    bottom: 25%;
    left: 52%;
    animation: shapeSpin 20s linear infinite reverse, shapeFloat 6s ease-in-out infinite;
}

.hero-shape-3 {
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-bottom: 24px solid var(--mint);
    top: 35%;
    right: 5%;
    animation: shapeFloat 5s ease-in-out infinite;
    animation-delay: -2s;
}

@keyframes shapeSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes shapeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Dots pattern */
.hero-dots {
    position: absolute;
    top: 8%;
    right: 0;
    width: 100px;
    height: 100px;
    z-index: 1;
    opacity: 0.12;
    background-image: radial-gradient(circle, var(--accent) 2px, transparent 2px);
    background-size: 16px 16px;
}

/* === SECTIONS === */
.section {
    padding: 100px 0;
}

.section-soft {
    background: var(--bg-soft);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-flex;
    padding: 6px 18px;
    background: var(--accent-pale);
    color: var(--accent-dark);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-tag-light {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.section-header h2 {
    font-size: 2.6rem;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 520px;
    margin: 0 auto;
}

/* === O NÁS === */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content .section-tag { margin-bottom: 20px; }

.about-content h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    text-align: left;
}

.about-lead {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 36px;
}

.feature-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border-radius: var(--radius-md);
    background: var(--bg-soft);
    transition: var(--transition);
}

.feature-card:hover {
    background: var(--accent-pale);
    transform: translateX(4px);
}

.feature-card-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: var(--radius-sm);
    background: var(--accent-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-dark);
    font-size: 1.1rem;
    transition: var(--transition);
}

.feature-card:hover .feature-card-icon {
    background: var(--accent);
    color: #fff;
}

.feature-card-text h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.feature-card-text p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

/* About visuals */
.about-visual {
    position: relative;
}

.about-photo-stack {
    position: relative;
    height: 500px;
}

.about-photo {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-photo-1 {
    top: 0;
    left: 0;
    width: 75%;
    height: 70%;
    z-index: 1;
}

.about-photo-2 {
    bottom: 0;
    right: 0;
    width: 60%;
    height: 50%;
    z-index: 2;
    border: 5px solid var(--bg);
}

.about-float-badge {
    position: absolute;
    top: 40px;
    right: -10px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.about-float-badge i {
    color: var(--yellow);
    font-size: 1.2rem;
}

.about-float-badge strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--dark);
}

.about-float-badge span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* === BENTO GRID (Ihrisko) === */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 260px;
    gap: 16px;
}

.bento-featured {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.bento-item:hover {
    border-color: var(--accent-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.bento-img {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.bento-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bento-item:hover .bento-img img {
    transform: scale(1.04);
}

.bento-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.6) 40%, rgba(255,255,255,0.1) 100%);
}

.bento-featured .bento-img::after {
    background: linear-gradient(to top, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
}

.bento-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}

.bento-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--accent-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-dark);
    font-size: 1rem;
    margin-bottom: 12px;
    backdrop-filter: blur(8px);
}

.bento-content h3 {
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.bento-featured .bento-content h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.bento-content p {
    font-size: 0.88rem;
    color: var(--text);
    line-height: 1.5;
}

.bento-featured .bento-content p {
    font-size: 1rem;
    max-width: 400px;
}

/* === CTA (Oslavy) === */
.section-cta {
    padding: 40px 0;
}

.cta-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 64px;
    background: var(--gradient-soft);
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
}

.cta-text .section-tag {
    background: var(--accent-pale);
    color: var(--accent-dark);
    margin-bottom: 20px;
}

.cta-text h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.cta-text p {
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 28px;
    line-height: 1.7;
}

.cta-photos {
    position: relative;
    height: 340px;
}

.cta-photo {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.cta-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-photo-1 {
    top: 0;
    left: 0;
    width: 65%;
    height: 80%;
    z-index: 1;
}

.cta-photo-2 {
    bottom: 0;
    right: 0;
    width: 55%;
    height: 65%;
    z-index: 2;
    border: 4px solid rgba(255,255,255,0.8);
}

/* === MENU === */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.menu-tab {
    padding: 10px 24px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-full);
    background: var(--bg);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-tab:hover {
    border-color: var(--accent);
    color: var(--accent-dark);
}

.menu-tab.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.menu-panel { display: none; }
.menu-panel.active {
    display: block;
    animation: fadeIn 0.35s ease;
}

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

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.menu-item {
    padding: 22px 24px;
    border-radius: var(--radius-md);
    background: var(--bg-soft);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.menu-item:hover {
    background: var(--bg);
    border-color: var(--accent-light);
    box-shadow: var(--shadow-sm);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.menu-item-header h4 { font-size: 1.05rem; }

.menu-price {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-dark);
}

.menu-item p { font-size: 0.88rem; color: var(--text-light); }

.menu-note {
    margin-top: 20px;
    padding: 14px 20px;
    background: var(--accent-pale);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    color: var(--text);
    text-align: center;
}

/* === GALÉRIA === */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
    gap: 14px;
    margin-bottom: 48px;
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-tall {
    grid-row: span 2;
}

.gallery-wide {
    grid-column: span 2;
}

.gallery-instagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--gradient-soft);
    text-decoration: none;
    transition: var(--transition);
}

.gallery-instagram i {
    font-size: 2.2rem;
    background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gallery-instagram span {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--dark);
    text-align: center;
    line-height: 1.3;
}

.gallery-instagram strong {
    font-size: 1.1rem;
}

.gallery-instagram:hover {
    background: var(--accent-pale);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.gallery-cta {
    text-align: center;
}

/* === CENNÍK === */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.pricing-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    border: 1.5px solid var(--border);
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    border-color: var(--accent-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.pricing-card-featured {
    border-color: var(--accent);
    background: var(--accent-pale);
    box-shadow: var(--shadow-glow);
}

.pricing-card-featured:hover {
    box-shadow: var(--shadow-glow), var(--shadow-md);
}

.pricing-card-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--accent);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.pricing-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    margin-bottom: 28px;
}

.pricing-value {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.pricing-period {
    font-size: 0.95rem;
    color: var(--text-light);
}

.pricing-value-small {
    font-size: 2.4rem;
}

.pricing-card-note {
    margin-top: 12px;
    font-size: 0.8rem;
    color: var(--text-light);
    text-align: center;
    font-style: italic;
}

.pricing-features {
    margin-bottom: 28px;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.93rem;
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li i {
    color: var(--accent);
    font-size: 0.85rem;
}

.pricing-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.93rem;
    background: var(--accent-pale);
    padding: 16px 24px;
    border-radius: var(--radius-md);
}

.pricing-note i {
    color: var(--accent);
    margin-right: 6px;
}

/* === BRUNCH BANNER === */
.brunch-banner {
    position: relative;
    padding: 60px;
    border-radius: var(--radius-xl);
    background: var(--gradient-soft);
    overflow: hidden;
    text-align: center;
}

.brunch-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.brunch-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.4;
    animation: blobFloat 8s ease-in-out infinite;
}

.brunch-blob-1 {
    width: 180px;
    height: 180px;
    background: var(--accent);
    top: -40px;
    left: -40px;
}

.brunch-blob-2 {
    width: 140px;
    height: 140px;
    background: var(--pink);
    bottom: -30px;
    right: -20px;
    animation-delay: -3s;
}

.brunch-blob-3 {
    width: 100px;
    height: 100px;
    background: var(--yellow);
    top: 30%;
    right: 15%;
    animation-delay: -5s;
}

.brunch-shape {
    position: absolute;
    opacity: 0.15;
    animation: shapeFloat 5s ease-in-out infinite;
}

.brunch-shape-1 {
    font-size: 2rem;
    color: var(--accent);
    top: 15%;
    right: 10%;
    animation: shapeSpin 15s linear infinite;
}

.brunch-shape-2 {
    font-size: 1.6rem;
    color: var(--pink);
    bottom: 15%;
    left: 8%;
    animation-delay: -2s;
}

.brunch-shape-3 {
    font-size: 1.4rem;
    color: var(--yellow);
    top: 60%;
    right: 25%;
    animation-delay: -4s;
    animation: shapeSpin 20s linear infinite reverse;
}

.brunch-content {
    position: relative;
    z-index: 2;
    max-width: 560px;
    margin: 0 auto;
}

.brunch-day {
    display: inline-flex;
    padding: 8px 24px;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(167,139,250,0.15);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-dark);
    margin-bottom: 20px;
}

.brunch-banner h2 {
    font-size: 2.6rem;
    margin-bottom: 14px;
}

.brunch-banner p {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 28px;
}

.brunch-details {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.brunch-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
}

.brunch-detail i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.7);
    color: var(--accent-dark);
    font-size: 0.9rem;
}

/* === KONTAKT === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
}

.contact-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 36px;
    background: var(--bg-soft);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-item > i {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: var(--radius-sm);
    background: var(--accent-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-dark);
    font-size: 1rem;
    line-height: 40px;
    text-align: center;
}

.contact-item h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.contact-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.contact-socials {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--bg-soft);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--text);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: translateY(-2px);
}

/* Form */
.contact-form-wrapper {
    padding: 40px;
    background: var(--bg);
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--border);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--dark);
    background: var(--bg-soft);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--bg);
    box-shadow: 0 0 0 4px rgba(91,197,232,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* === FOOTER === */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    height: 80px;
    margin-bottom: 14px;
    object-fit: contain;
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-socials {
    display: flex;
    gap: 8px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--accent);
    color: #fff;
}

.footer h4 {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 18px;
}

.footer-links a {
    display: block;
    font-size: 0.88rem;
    padding: 4px 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-light);
    padding-left: 4px;
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    padding: 6px 0;
    gap: 8px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    margin-bottom: 10px;
}

.footer-contact i {
    color: var(--accent);
    width: 16px;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}

.footer-bottom a {
    color: var(--accent-light);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-bottom a:hover {
    color: #fff;
}

/* === BACK TO TOP === */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--bg);
    color: var(--accent-dark);
    border: 1.5px solid var(--border);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: translateY(-3px);
}

/* === ANIMATIONS === */
[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate="fade-right"] { transform: translateX(-24px); }
[data-animate="fade-left"] { transform: translateX(24px); }
[data-animate="fade-up"] { transform: translateY(24px); }

[data-animate].animated {
    opacity: 1;
    transform: translate(0, 0);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero h1 { font-size: 3rem; }
    .hero-grid { gap: 40px; }
    .hero-visuals { height: 420px; }
    .section { padding: 80px 0; }
    .section-header h2 { font-size: 2.2rem; }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 240px;
    }

    .bento-featured { grid-column: span 2; grid-row: span 1; }

    .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 160px; }

    .brunch-banner { padding: 40px 24px; }
    .brunch-banner h2 { font-size: 2rem; }
    .brunch-details { gap: 16px; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    .navbar-toggle { display: flex; }

    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 360px;
        height: 100vh;
        flex-direction: column;
        background: rgba(255,255,255,0.97);
        backdrop-filter: blur(24px);
        padding: 80px 28px 28px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        z-index: 1001;
        gap: 4px;
    }

    .navbar-menu.active { right: 0; }

    .nav-link {
        padding: 12px 16px;
        font-size: 1rem;
        width: 100%;
    }

    .nav-link-cta { margin-left: 0; margin-top: 8px; text-align: center; }

    .hero { padding: 120px 0 60px; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero h1 { font-size: 2.6rem; }
    .hero-visuals { height: 380px; }
    .hero-stats { gap: 16px; }

    .about-layout { grid-template-columns: 1fr; gap: 48px; }
    .about-content h2 { font-size: 2rem; }
    .about-photo-stack { height: 400px; }

    .bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 220px;
    }

    .cta-card {
        grid-template-columns: 1fr;
        padding: 40px 28px;
        gap: 32px;
    }

    .cta-photos { height: 260px; }

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

    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 32px;
    }

    .contact-grid { grid-template-columns: 1fr; gap: 32px; }

    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .section { padding: 64px 0; }
    .hero { padding: 110px 0 48px; }
    .hero h1 { font-size: 2rem; }
    .hero-visuals { height: 300px; }
    .hero-img-main { width: 90%; }
    .hero-img-small { width: 60%; height: 50%; }
    .hero-stats { flex-wrap: wrap; gap: 12px; }
    .hero-stat-divider { display: none; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn { width: 100%; }

    .about-photo-stack { height: 320px; }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }
    .bento-featured { grid-column: span 1; }

    .section-header h2 { font-size: 1.8rem; }

    .menu-tabs { gap: 6px; }
    .menu-tab { padding: 8px 16px; font-size: 0.88rem; }

    .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; }
    .gallery-tall { grid-row: span 1; }
    .gallery-wide { grid-column: span 1; }

    .cta-photos { height: 220px; }
    .cta-text h2 { font-size: 1.7rem; }

    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 24px; }
    .contact-card { padding: 24px; }
}

/* === REZERVAČNÝ MODAL === */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal-overlay.active { display: flex; }

.modal-box {
    background: #fff;
    border-radius: 24px;
    padding: 36px;
    max-width: 440px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
}
.modal-close:hover { color: var(--dark); }

.modal-box h3 {
    font-size: 1.4rem;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 24px;
}

.modal-field {
    margin-bottom: 16px;
}

.modal-field label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.modal-field label small {
    font-weight: 400;
    color: var(--text-light);
}

.modal-field input,
.modal-field textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--dark);
    background: var(--bg-soft);
    transition: var(--transition);
}

.modal-field input:focus,
.modal-field textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--bg);
    box-shadow: 0 0 0 3px rgba(167,139,250,0.1);
}

.modal-field textarea { resize: vertical; min-height: 50px; }

.modal-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.modal-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 12px;
}

.modal-success {
    text-align: center;
    padding: 20px 0;
}

.modal-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #D1FAE5;
    color: #059669;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.modal-success h3 {
    justify-content: center;
    margin-bottom: 8px;
}

.modal-success p {
    color: var(--text-light);
    font-size: 0.95rem;
}

#rezSubmit:disabled {
    opacity: 0.6;
    cursor: wait;
}

@media (max-width: 480px) {
    .modal-box { padding: 24px; }
    .modal-row { grid-template-columns: 1fr; }
}
