/* CSS Reset & Variables */
:root {
    --primary-blue: #010F4F;
    --text-white: #FFFFFF;
    --bg-white: #FFFFFF;
    --bg-light: #f7f9fc;
    --font-heading: 'Work Sans', sans-serif;
    --font-body: 'Raleway', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 15px;
    color: var(--primary-blue);
    background-color: var(--bg-white);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    transition-duration: 0.8s;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
    transition-duration: 1s;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.hero-cta {
    display: inline-block;
    margin-top: 50px;
    padding: 16px 42px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
}

.hero-cta:hover {
    background: var(--text-white);
    color: var(--primary-blue);
    border-color: var(--text-white);
    letter-spacing: 4px;
}

/* Reusable Components */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px;
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 43px;
    text-transform: uppercase;
    letter-spacing: 8.6px;
    color: var(--primary-blue);
    margin-bottom: 80px;
    text-align: center;
}

.spacer {
    height: 20px;
}

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 35px 40px;
    background: transparent;
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 20px 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    transition: var(--transition-smooth);
}

.logo-img {
    height: 22px;
    width: auto;
    transition: var(--transition-smooth);
}

.logo-white {
    display: block;
}

.logo-blue {
    display: none;
}

.header.scrolled .logo-white {
    display: none;
}

.header.scrolled .logo-blue {
    display: block;
}

.hero-logo {
    height: 80px;
    width: auto;
}

.header.scrolled .nav-link,
.header.scrolled .hamburger span {
    color: var(--primary-blue);
}

.header.scrolled .hamburger span {
    background-color: var(--primary-blue);
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link {
    color: var(--text-white);
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 400;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: currentColor;
    transition: width 0.4s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.lang-switch {
    font-weight: 600;
    margin-left: 20px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--text-white);
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    background-color: var(--primary-blue);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-white);
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('img/villa-hero.jpg') center 25% / cover no-repeat;
    /* Grayscale + ztmavení vily — funguje jako tlumené pozadí */
    filter: grayscale(1) brightness(0.55) contrast(1.05);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Silnější modrý filtr — vila zůstává jen jako náznak v pozadí */
    background: linear-gradient(135deg, rgba(1, 15, 79, 0.88), rgba(1, 15, 79, 0.62));
    z-index: 1;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(1, 15, 79, 1);
    opacity: 0;
    animation: heroDarken 5s ease-out forwards;
    pointer-events: none;
}

@keyframes heroDarken {
    from { opacity: 0; }
    to { opacity: 0.45; }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 300;
    letter-spacing: 16px;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    letter-spacing: 6px;
    opacity: 0.9;
    font-weight: 400;
}

/* About Section */
.about-section {
    background-color: var(--bg-white);
    text-align: center;
}

.about-text-content {
    max-width: 850px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 2.2;
    color: rgba(1, 15, 79, 0.85);
}

/* Specializations */
.specialization-section {
    background-color: var(--bg-light);
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.spec-card {
    background: var(--bg-white);
    padding: 50px 35px;
    text-align: center;
    border: 1px solid rgba(1, 15, 79, 0.05);
    transition: var(--transition-smooth);
    color: var(--primary-blue);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.spec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-blue);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
}

.spec-card span,
.spec-card .spec-list {
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

.spec-title {
    font-family: var(--font-heading);
    font-size: 20px;
    letter-spacing: 2px;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.spec-desc {
    font-family: var(--font-body);
    font-size: 14px;
    letter-spacing: 0;
    font-weight: 300;
    text-transform: none;
    line-height: 1.8;
    opacity: 0.75;
}

.spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
    color: var(--primary-blue);
    opacity: 0.78;
}

.spec-list li {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 12px;
    position: relative;
}

.spec-list li:last-child {
    margin-bottom: 0;
}

.spec-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(1, 15, 79, 0.08);
}

.spec-card:hover::before {
    transform: translateY(0);
}

.spec-card:hover span,
.spec-card:hover .spec-list {
    color: var(--text-white);
}

/* Team Section */
.team-section {
    background-color: var(--bg-white);
}

/* Interactive team collage */
.team-collage {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
}

.team-tile {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background-color: var(--primary-blue);
}

.team-tile.is-link {
    cursor: pointer;
}

.team-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 22%;
    display: block;
    filter: grayscale(0.85) brightness(0.92);
    transform: scale(1.03);
    transition: filter 0.6s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.team-tile:hover img {
    filter: grayscale(0) brightness(1);
    transform: scale(1.08);
}

.team-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(1, 15, 79, 0.92) 0%, rgba(1, 15, 79, 0.45) 45%, transparent 75%);
    z-index: 1;
    opacity: 0.85;
    transition: opacity 0.5s ease;
}

.team-tile:hover::before {
    opacity: 1;
}

.team-tile-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 22px 20px 20px;
    z-index: 2;
    color: var(--text-white);
    transform: translateY(8px);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.team-tile:hover .team-tile-caption {
    transform: translateY(0);
}

.team-tile-name {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0.3px;
    margin-bottom: 4px;
}

.team-tile-role {
    font-family: var(--font-body);
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.78;
    font-weight: 400;
}

.team-tile-cta {
    position: absolute;
    top: 18px;
    right: 20px;
    z-index: 2;
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-white);
    opacity: 0;
    transform: translateY(-6px);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.55);
    padding: 5px 10px;
    background: transparent;
}

.team-tile.is-link:hover .team-tile-cta {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    .team-collage { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 700px) {
    .team-collage { grid-template-columns: repeat(2, 1fr); gap: 3px; }
    .team-tile-name { font-size: 14px; }
    .team-tile-role { font-size: 9.5px; letter-spacing: 1.5px; }
}

/* Profile header with portrait */
.profile-header {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 36px;
    align-items: start;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(1, 15, 79, 0.1);
}

.profile-photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center 22%;
    display: block;
    filter: grayscale(0.15);
}

.profile-header .modal-name,
.profile-header .modal-role,
.profile-header .modal-email {
    margin-left: 0;
}

.profile-header .modal-name {
    margin-bottom: 8px;
}

.profile-header .modal-role {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 14px;
}

.profile-header .modal-email {
    margin-bottom: 0;
}

@media (max-width: 700px) {
    .profile-header {
        grid-template-columns: 1fr;
        gap: 22px;
        text-align: center;
    }
    .profile-photo {
        max-width: 220px;
        margin: 0 auto;
    }
}

/* Modals (Lightboxes) */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(1, 15, 79, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-window {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%);
    background: var(--bg-white);
    width: 92%;
    max-width: 1100px;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1002;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: none;
}

.modal-window.legal-modal {
    max-width: 700px;
}

.modal-window.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
}

.close-btn {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 32px;
    font-weight: 300;
    color: var(--primary-blue);
    cursor: pointer;
    transition: transform 0.3s ease;
    line-height: 1;
}

.close-btn:hover {
    transform: rotate(90deg);
}

.modal-name {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.modal-role {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(1, 15, 79, 0.5);
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(1, 15, 79, 0.1);
    padding-bottom: 20px;
}

.modal-bio {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(1, 15, 79, 0.8);
}

.modal-bio p {
    margin-bottom: 16px;
    text-align: justify;
    /* Vypnutá automatická hyphenace — neláme slova pomlčkou na konci řádku */
    hyphens: manual;
    -webkit-hyphens: manual;
    -ms-hyphens: manual;
    word-break: normal;
    overflow-wrap: normal;
}

.legal-modal .modal-name {
    margin-bottom: 30px;
}

.modal-bio h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 19px;
    color: var(--primary-blue);
    margin-top: 28px;
    margin-bottom: 8px;
}

.modal-bio ul {
    margin: 0 0 16px 22px;
    padding: 0;
}

.modal-bio li {
    margin-bottom: 6px;
}

.modal-bio a {
    color: var(--primary-blue);
    text-decoration: underline;
}

.modal-bio a:hover {
    opacity: 0.7;
}

.modal-email {
    font-size: 14px;
    color: rgba(1, 15, 79, 0.6);
    margin-bottom: 20px;
}

.modal-email a {
    color: rgba(1, 15, 79, 0.6);
    text-decoration: none;
}

.modal-email a:hover {
    color: var(--primary-blue);
}

.modal-bio .bio-section-title {
    font-weight: 600;
    color: var(--primary-blue);
    margin-top: 24px;
    margin-bottom: 4px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Recognitions (Chambers, Legal 500) */
.recognitions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 24px 0 8px;
}

.recognition-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 18px;
    border: 1px solid rgba(1, 15, 79, 0.18);
    background: var(--bg-white);
    line-height: 1.2;
}

.recognition-label {
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(1, 15, 79, 0.55);
    margin-bottom: 4px;
}

.recognition-name {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--primary-blue);
    text-transform: uppercase;
}

.recognition-logo {
    height: 46px;
    width: auto;
}

/* Odznak s oficiálním logem (Chambers) — logo vlevo, popisek vpravo */
.recognition-badge-logo {
    flex-direction: row;
    align-items: center;
    gap: 14px;
    padding: 12px 20px;
}

.recognition-badge-logo .recognition-badge-text {
    display: flex;
    flex-direction: column;
}

.praxe-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 5px;
}

.praxe-table td {
    padding: 3px 0;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(1, 15, 79, 0.8);
    vertical-align: top;
}

.praxe-table td:first-child {
    width: 130px;
    white-space: nowrap;
    padding-right: 20px;
}

/* vCard / QR kód */
.vcard-section {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(1, 15, 79, 0.1);
}

.vcard-row {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 28px;
    align-items: center;
}

.vcard-qr {
    width: 160px;
    height: 160px;
    background: var(--bg-white);
    border: 1px solid rgba(1, 15, 79, 0.1);
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vcard-qr canvas,
.vcard-qr img {
    display: block;
    width: 100%;
    height: 100%;
}

.vcard-meta {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(1, 15, 79, 0.75);
}

.vcard-hint {
    margin-bottom: 12px;
}

.vcard-dl {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-blue);
    border: 1px solid rgba(1, 15, 79, 0.3);
    padding: 10px 18px;
    transition: var(--transition-smooth);
}

.vcard-dl:hover {
    background: var(--primary-blue);
    color: var(--text-white);
    border-color: var(--primary-blue);
}

@media (max-width: 600px) {
    .vcard-row {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }
}

.news-modal {
    max-width: 1000px;
    max-height: none;
    overflow-y: visible;
}

.news-modal .modal-bio p {
    margin-bottom: 18px;
}

.news-modal .modal-name {
    margin-bottom: 20px;
}

.news-modal .modal-bio p strong {
    display: inline-block;
    margin-top: 8px;
}

/* News Section */
.news-section {
    background-color: var(--bg-light);
}

.news-list {
    max-width: 900px;
    margin: 0 auto;
}

.news-item {
    padding: 40px 0;
    border-top: 1px solid rgba(1, 15, 79, 0.1);
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    transition: var(--transition-smooth);
    cursor: pointer;
}


.news-item:hover {
    transform: translateX(10px);
}

.news-date {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--primary-blue);
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 1px;
    opacity: 0.8;
}

.news-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--primary-blue);
}

/* Footer & Contact */
.footer-section {
    background-color: var(--primary-blue);
    color: var(--text-white);
    padding: 100px 40px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    padding: 0 0 80px 0;
}

.footer-block {
    text-align: left;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 28px;
    letter-spacing: 6px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-block-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* zabraňuje horizontálnímu roztažení loga */
    gap: 12px;
}

.footer-logo {
    height: 36px;
    width: auto;
    max-width: 100%;
    align-self: flex-start; /* explicitně zachovává poměr stran */
    object-fit: contain;
}

.footer-legal-name {
    font-size: 13px;
    letter-spacing: 1px;
    opacity: 0.7;
    text-transform: lowercase;
}

.footer-block p {
    font-size: 15px;
    opacity: 0.7;
    line-height: 1.8;
}

.footer-block p.footer-social {
    margin-top: 12px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.85;
}

.social-link svg {
    flex-shrink: 0;
    opacity: 0.9;
    transition: var(--transition-smooth);
}

.social-link:hover {
    opacity: 1;
}

.social-link:hover svg {
    transform: translateY(-1px);
}

.footer-legal-links {
    margin-bottom: 14px;
    font-size: 12px;
    letter-spacing: 1px;
    opacity: 0.65;
    text-transform: uppercase;
}

.footer-legal-links .footer-link {
    display: inline-block;
    padding: 0 6px;
}

.footer-sep {
    opacity: 0.5;
}

.footer-link {
    position: relative;
    padding-bottom: 2px;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--bg-white);
    opacity: 0.3;
    transition: var(--transition-smooth);
}

.footer-link:hover::after {
    opacity: 1;
}

.footer-link:hover {
    color: var(--text-white);
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    text-align: center;
    font-size: 12px;
    letter-spacing: 1px;
    opacity: 0.5;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 900px) {
    .nav-menu {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 30px;
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: min(82vw, 320px);
        padding: 90px 40px 40px;
        background: var(--primary-blue);
        box-shadow: -10px 0 40px rgba(1, 15, 79, 0.25);
        transform: translateX(105%);
        transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
        z-index: 1100;
    }

    body.nav-open .nav-menu {
        transform: translateX(0);
    }

    .nav-menu .nav-link {
        color: var(--text-white);
        font-size: 16px;
        letter-spacing: 2.5px;
    }

    /* V otevřeném panelu (navy pozadí) drží odkazy i „X" bílé i po odscrollování,
       kdy header dostane .scrolled a jinak by je přebarvil na modrou (= neviditelné). */
    .header.scrolled .nav-menu .nav-link {
        color: var(--text-white);
    }

    body.nav-open .header.scrolled .hamburger span,
    body.nav-open .hamburger span {
        background-color: var(--text-white);
    }

    .lang-switch {
        margin-left: 0;
    }

    .hamburger {
        display: flex;
        position: relative;
        z-index: 1200;
    }

    /* Hamburger zůstává vždy viditelný (i přes otevřené menu) */
    body.nav-open .hamburger span {
        background-color: var(--text-white);
    }

    body.nav-open .hamburger span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    body.nav-open .hamburger span:nth-child(2) {
        opacity: 0;
    }

    body.nav-open .hamburger span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero-logo {
        height: 55px;
    }

    .news-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .news-date {
        font-size: 14px;
        opacity: 0.6;
    }

    .section-title {
        font-size: 32px;
    }

    .modal-window {
        padding: 40px 30px;
    }
}

/* ===== Cookie lišta (jednoduchá informační) ===== */
#cookie-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1300;
    background: var(--primary-blue);
    color: var(--text-white);
    padding: 18px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    box-shadow: 0 -6px 30px rgba(1, 15, 79, 0.25);
    transform: translateY(0);
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}

#cookie-bar.hidden {
    transform: translateY(110%);
    pointer-events: none;
}

.cookie-bar-text {
    font-size: 14px;
    line-height: 1.6;
    max-width: 820px;
    opacity: 0.92;
}

.cookie-bar-text a {
    color: var(--text-white);
    text-decoration: underline;
    cursor: pointer;
}

.cookie-bar-btn {
    flex-shrink: 0;
    background: var(--text-white);
    color: var(--primary-blue);
    border: none;
    padding: 12px 30px;
    font-family: inherit;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.cookie-bar-btn:hover {
    opacity: 0.85;
}

@media (max-width: 700px) {
    #cookie-bar {
        flex-direction: column;
        gap: 14px;
        padding: 18px 22px;
        text-align: center;
    }
}