:root {
    --primary-color: #1a3a52;
    --primary-dark: #0d2133;
    --primary-light: #2a5a7e;
    --secondary-color: #c9a962;
    --secondary-light: #dbc78a;
    --accent-color: #8b4513;
    --text-color: #2d3436;
    --text-light: #636e72;
    --text-muted: #95a5a6;
    --bg-light: #f8f6f3;
    --bg-cream: #faf8f5;
    --bg-dark: #1a1a1a;
    --white: #ffffff;
    --border-color: #e0dcd5;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Lora', serif;
    --font-accent: 'Playfair Display', serif;
    --font-ui: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-cream);
    overflow-x: hidden;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-dark);
}

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border-color);
    border-top-color: var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loader-text {
    font-family: var(--font-ui);
    font-size: 14px;
    color: var(--text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 58, 82, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.navbar {
    padding: 15px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary-color);
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    padding: 8px 18px;
    letter-spacing: 0.5px;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--secondary-color);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.dropdown-menu {
    background: var(--white);
    border: none;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    padding: 10px 0;
    margin-top: 10px;
}

.dropdown-item {
    font-family: var(--font-ui);
    font-size: 14px;
    padding: 10px 20px;
    color: var(--text-color);
}

.dropdown-item:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 5px;
}

.burger-line {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.burger-btn.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-btn.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-btn.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--primary-dark);
    z-index: 1001;
    transition: right 0.4s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--white);
}

.mobile-menu-close {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu-nav {
    list-style: none;
    padding: 20px;
}

.mobile-menu-nav > li {
    margin-bottom: 5px;
}

.mobile-menu-nav > li > a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    color: rgba(255,255,255,0.85);
    font-family: var(--font-ui);
    font-size: 15px;
    border-radius: 8px;
    transition: var(--transition);
}

.mobile-menu-nav > li > a:hover,
.mobile-menu-nav > li > a.active {
    background: rgba(255,255,255,0.1);
    color: var(--secondary-color);
}

.mobile-submenu .submenu-toggle {
    justify-content: space-between;
}

.submenu-items {
    list-style: none;
    padding-left: 35px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-submenu.open .submenu-items {
    max-height: 200px;
}

.submenu-items li a {
    display: block;
    padding: 10px 15px;
    color: rgba(255,255,255,0.7);
    font-family: var(--font-ui);
    font-size: 14px;
}

.submenu-items li a:hover {
    color: var(--secondary-color);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.main-content {
    padding-top: 75px;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--primary-light) 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://upload.wikimedia.org/wikipedia/commons/thumb/e/e0/Praha_Staromestske_namesti_2014.JPG/1920px-Praha_Staromestske_namesti_2014.JPG') center/cover;
    opacity: 0.15;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(26,58,82,0.9) 0%, rgba(13,33,51,0.95) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 60px 0;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary-color);
    background: rgba(201,169,98,0.15);
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 25px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    padding: 15px 35px;
    background: var(--secondary-color);
    color: var(--primary-dark);
    border-radius: 8px;
    letter-spacing: 0.5px;
}

.btn-hero-primary:hover {
    background: var(--secondary-light);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-hero-secondary {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    padding: 15px 35px;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    letter-spacing: 0.5px;
}

.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    color: var(--white);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-family: var(--font-ui);
    font-size: 12px;
    letter-spacing: 1px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.section-label {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 50px;
}

.intro-section {
    padding: 100px 0;
    background: var(--white);
}

.intro-image-wrapper {
    position: relative;
}

.intro-image {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.intro-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--secondary-color);
    color: var(--primary-dark);
    padding: 20px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.badge-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-family: var(--font-ui);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.intro-content {
    padding-left: 40px;
}

.intro-text {
    margin-bottom: 20px;
    color: var(--text-light);
}

.intro-features {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.intro-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
}

.intro-feature i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.featured-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.featured-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: repeat(2, auto);
    gap: 30px;
}

.featured-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.featured-card-large {
    grid-row: span 2;
}

.featured-card-link {
    display: block;
    height: 100%;
}

.featured-card-image {
    position: relative;
    overflow: hidden;
}

.featured-card-large .featured-card-image {
    height: 350px;
}

.featured-card:not(.featured-card-large) .featured-card-image {
    height: 180px;
}

.featured-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-card:hover .featured-card-image img {
    transform: scale(1.05);
}

.featured-category {
    position: absolute;
    top: 15px;
    left: 15px;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: var(--secondary-color);
    color: var(--primary-dark);
    padding: 6px 14px;
    border-radius: 20px;
}

.featured-card-content {
    padding: 25px;
}

.featured-card-large .featured-card-content {
    padding: 35px;
}

.featured-card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    transition: var(--transition);
}

.featured-card:hover .featured-card-content h3 {
    color: var(--primary-light);
}

.featured-card-content p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.featured-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.read-time {
    font-family: var(--font-ui);
    font-size: 13px;
    color: var(--text-muted);
}

.read-time i {
    margin-right: 5px;
}

.featured-arrow {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 50%;
    color: var(--primary-color);
    transition: var(--transition);
}

.featured-card:hover .featured-arrow {
    background: var(--secondary-color);
    color: var(--primary-dark);
}

.info-section {
    padding: 80px 0;
    background: var(--white);
}

.info-card {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    border-radius: 20px;
    padding: 50px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(201,169,98,0.1);
    border-radius: 50%;
}

.info-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.info-card h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.info-card p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
    max-width: 800px;
}

.info-tips {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.info-tip {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-ui);
    font-size: 14px;
    color: rgba(255,255,255,0.9);
}

.info-tip i {
    color: var(--secondary-color);
}

.stats-section {
    padding: 80px 0;
    background: var(--primary-dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 30px;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-family: var(--font-ui);
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.5px;
}

.resources-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.resource-card {
    display: block;
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.resource-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--white);
    margin: 0 auto 20px;
}

.resource-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.resource-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.resource-link {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary-color);
}

.resource-link i {
    margin-left: 5px;
    font-size: 11px;
}

.site-footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.8);
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-brand h3 {
    font-size: 1.3rem;
    color: var(--white);
}

.footer-about {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
}

.footer-title {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.copyright {
    font-family: var(--font-ui);
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

.footer-update {
    font-family: var(--font-ui);
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -5px 30px rgba(0,0,0,0.15);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.cookie-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
}

.cookie-text {
    flex: 1;
}

.cookie-text h5 {
    font-family: var(--font-ui);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.cookie-text p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.cookie-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.btn-cookie-accept {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    padding: 12px 25px;
    background: var(--secondary-color);
    color: var(--primary-dark);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cookie-accept:hover {
    background: var(--secondary-light);
}

.btn-cookie-reject {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    padding: 12px 25px;
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--border-color);
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cookie-reject:hover {
    border-color: var(--text-color);
}

.btn-cookie-settings {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    padding: 12px 25px;
    background: transparent;
    color: var(--primary-color);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cookie-settings:hover {
    color: var(--secondary-color);
}

.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cookie-settings-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-settings-content {
    background: var(--white);
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid var(--border-color);
}

.cookie-settings-header h4 {
    font-size: 1.2rem;
    margin: 0;
}

.cookie-settings-close {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    color: var(--text-light);
    cursor: pointer;
}

.cookie-settings-body {
    padding: 25px 30px;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.cookie-option:last-child {
    border-bottom: none;
}

.cookie-option-info h6 {
    font-family: var(--font-ui);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
}

.cookie-option-info p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

.cookie-option-toggle {
    flex-shrink: 0;
}

.cookie-option-toggle label {
    font-family: var(--font-ui);
    font-size: 12px;
    color: var(--text-muted);
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    background: var(--border-color);
    border-radius: 13px;
    cursor: pointer;
    transition: var(--transition);
}

.toggle-switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

input[type="checkbox"]:checked + .toggle-switch {
    background: var(--secondary-color);
}

input[type="checkbox"]:checked + .toggle-switch::after {
    left: 27px;
}

input[type="checkbox"] {
    display: none;
}

.cookie-settings-footer {
    padding: 20px 30px;
    border-top: 1px solid var(--border-color);
}

.btn-cookie-save {
    width: 100%;
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    padding: 15px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cookie-save:hover {
    background: var(--primary-dark);
}

.page-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://upload.wikimedia.org/wikipedia/commons/thumb/e/e0/Praha_Staromestske_namesti_2014.JPG/1920px-Praha_Staromestske_namesti_2014.JPG') center/cover;
    opacity: 0.1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-badge {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-hero h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
}

.about-intro-section {
    padding: 100px 0;
    background: var(--white);
}

.about-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image {
    width: 100%;
    height: auto;
}

.about-content {
    padding-right: 40px;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 25px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.values-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    background: var(--white);
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    font-size: 1.8rem;
    color: var(--white);
    margin: 0 auto 20px;
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 14px;
    color: var(--text-light);
}

.expertise-section {
    padding: 100px 0;
    background: var(--white);
}

.expertise-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.expertise-image {
    width: 100%;
    height: auto;
}

.expertise-content h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.expertise-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.expertise-item {
    display: flex;
    gap: 20px;
}

.expertise-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 12px;
    font-size: 1.3rem;
    color: var(--secondary-color);
}

.expertise-info h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.expertise-info p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.cta-content h2 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-cta-primary {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    padding: 15px 35px;
    background: var(--secondary-color);
    color: var(--primary-dark);
    border-radius: 8px;
}

.btn-cta-primary:hover {
    background: var(--secondary-light);
    color: var(--primary-dark);
}

.btn-cta-secondary {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    padding: 15px 35px;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 8px;
}

.btn-cta-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    color: var(--white);
}

.contact-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-info-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-intro {
    color: var(--text-light);
    margin-bottom: 35px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 35px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    font-size: 1.2rem;
    color: var(--white);
}

.contact-text h4 {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-text p,
.contact-text a {
    font-size: 15px;
    color: var(--text-light);
    margin: 0;
}

.contact-text a:hover {
    color: var(--secondary-color);
}

.contact-note {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 10px;
}

.contact-note i {
    flex-shrink: 0;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.contact-note p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.contact-map-wrapper {
    padding-left: 40px;
}

.map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
}

.map-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
}

.map-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-family: var(--font-ui);
    font-size: 14px;
}

.contact-faq h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.faq-item {
    margin-bottom: 25px;
}

.faq-item h4 {
    font-family: var(--font-ui);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.resources-banner {
    padding: 60px 0;
    background: var(--bg-light);
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    border-radius: 16px;
    padding: 40px 50px;
}

.banner-text h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 8px;
}

.banner-text p {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    margin: 0;
}

.btn-banner {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    padding: 15px 30px;
    background: var(--secondary-color);
    color: var(--primary-dark);
    border-radius: 8px;
    flex-shrink: 0;
}

.btn-banner:hover {
    background: var(--secondary-light);
    color: var(--primary-dark);
}

.policy-section {
    padding: 80px 0;
    background: var(--white);
}

.policy-nav {
    position: sticky;
    top: 100px;
    background: var(--bg-light);
    border-radius: 12px;
    padding: 25px;
}

.policy-nav h4 {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.policy-nav ul {
    list-style: none;
}

.policy-nav ul li {
    margin-bottom: 12px;
}

.policy-nav ul li a {
    font-size: 14px;
    color: var(--text-light);
}

.policy-nav ul li a:hover {
    color: var(--primary-color);
}

.policy-content {
    padding-left: 40px;
}

.policy-article {
    margin-bottom: 50px;
    scroll-margin-top: 100px;
}

.policy-article h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.policy-article h3 {
    font-size: 1.2rem;
    margin: 25px 0 15px;
}

.policy-article p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.policy-article ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.policy-article ul li {
    color: var(--text-light);
    margin-bottom: 10px;
}

.policy-contact {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 25px;
}

.policy-contact p {
    margin-bottom: 10px;
}

.policy-contact p:last-child {
    margin-bottom: 0;
}

.article-page {
    background: var(--white);
}

.article-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.article-hero-content {
    text-align: center;
}

.article-category {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-dark);
    background: var(--secondary-color);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.article-hero h1 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.article-meta span {
    font-family: var(--font-ui);
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.article-meta i {
    margin-right: 8px;
}

.article-featured-image {
    margin-top: -40px;
    padding: 0 15px;
}

.article-featured-image img {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: block;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.article-body {
    padding: 60px 0 100px;
}

.article-content {
    max-width: 100%;
}

.article-intro {
    margin-bottom: 40px;
}

.article-intro .lead {
    font-size: 1.2rem;
    color: var(--text-color);
    line-height: 1.9;
}

.article-toc {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 50px;
}

.article-toc h3 {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.article-toc ol {
    margin: 0;
    padding-left: 20px;
}

.article-toc ol li {
    margin-bottom: 12px;
}

.article-toc ol li a {
    font-size: 15px;
    color: var(--primary-color);
}

.article-toc ol li a:hover {
    color: var(--secondary-color);
}

.article-section {
    margin-bottom: 50px;
    scroll-margin-top: 100px;
}

.article-section h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--secondary-color);
}

.article-section h3 {
    font-size: 1.3rem;
    margin: 30px 0 15px;
}

.article-section p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.article-section ul,
.article-section ol {
    margin-bottom: 25px;
    padding-left: 25px;
}

.article-section ul li,
.article-section ol li {
    color: var(--text-light);
    margin-bottom: 12px;
}

.article-figure {
    margin: 35px 0;
    text-align: center;
}

.article-figure img {
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    max-width: 100%;
}

.article-figure figcaption {
    font-family: var(--font-ui);
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 15px;
    font-style: italic;
}

.info-box {
    background: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
    border-radius: 0 12px 12px 0;
    padding: 25px 30px;
    margin: 30px 0;
}

.info-box h4 {
    font-family: var(--font-ui);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}

.info-box ul {
    margin: 0;
    padding-left: 20px;
}

.info-box ul li {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.grade-table {
    margin: 30px 0;
}

.grade-table h4 {
    font-family: var(--font-ui);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}

.grade-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.grade-table th,
.grade-table td {
    padding: 15px 20px;
    text-align: left;
    font-size: 14px;
}

.grade-table th {
    background: var(--primary-color);
    color: var(--white);
    font-family: var(--font-ui);
    font-weight: 600;
}

.grade-table tr:nth-child(even) {
    background: var(--bg-light);
}

.grade-table td {
    color: var(--text-light);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.tip-card {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
}

.tip-card i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.tip-card h4 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.tip-card p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.article-conclusion {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    border-radius: 16px;
    padding: 40px;
    margin: 50px 0;
}

.article-conclusion h2 {
    color: var(--white);
    border-bottom-color: rgba(255,255,255,0.2);
    font-size: 1.5rem;
}

.article-conclusion p {
    color: rgba(255,255,255,0.85);
}

.article-resources {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 30px;
}

.article-resources h3 {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.article-resources ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.article-resources ul li {
    margin-bottom: 12px;
}

.article-resources ul li a {
    font-size: 15px;
    color: var(--primary-color);
}

.article-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
}

.sidebar-widget h4 {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.sidebar-highlight {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.sidebar-highlight h4 {
    color: var(--white);
    border-bottom-color: rgba(255,255,255,0.2);
}

.related-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-list li {
    margin-bottom: 15px;
}

.related-list li:last-child {
    margin-bottom: 0;
}

.related-list a {
    display: flex;
    gap: 15px;
    align-items: center;
}

.related-list img {
    width: 70px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.related-list span {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.4;
}

.related-list a:hover span {
    color: var(--primary-color);
}

.quick-tips {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-tips li {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-left: 25px;
    position: relative;
}

.quick-tips li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.quick-tips li:last-child {
    border-bottom: none;
}

.resource-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.resource-links li {
    margin-bottom: 12px;
}

.resource-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--primary-color);
}

.resource-links i {
    color: var(--secondary-color);
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.timeline-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-list li {
    display: flex;
    gap: 15px;
    padding: 12px 0;
    font-size: 14px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.timeline-list li:last-child {
    border-bottom: none;
}

.timeline-list .year {
    font-family: var(--font-ui);
    font-weight: 600;
    color: var(--secondary-color);
    min-width: 50px;
}

.valuable-list {
    margin: 30px 0;
}

.valuable-item {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 20px 25px;
    margin-bottom: 15px;
}

.valuable-item h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.valuable-item p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.market-info {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 20px 25px;
    margin: 20px 0;
}

.market-info p {
    font-size: 14px;
    margin-bottom: 8px;
}

.market-info p:last-child {
    margin-bottom: 0;
}

.auction-list {
    margin: 25px 0;
}

.auction-item {
    border-left: 3px solid var(--secondary-color);
    padding-left: 20px;
    margin-bottom: 25px;
}

.auction-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.auction-item p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.condition-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.condition-item {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 20px;
}

.condition-item h4 {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.condition-item p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

@media (max-width: 991px) {
    .burger-btn {
        display: flex;
    }

    .navbar-collapse {
        display: none !important;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .featured-card-large {
        grid-row: auto;
    }

    .intro-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .intro-image-badge {
        right: 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .contact-map-wrapper {
        padding-left: 0;
    }

    .policy-content {
        padding-left: 0;
    }

    .policy-nav {
        position: relative;
        top: 0;
        margin-bottom: 30px;
    }

    .article-hero h1 {
        font-size: 2rem;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }

    .condition-grid {
        grid-template-columns: 1fr;
    }

    .info-tips {
        grid-template-columns: 1fr;
    }

    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .intro-features {
        flex-wrap: wrap;
        gap: 20px;
    }

    .article-meta {
        flex-direction: column;
        gap: 10px;
    }

    .article-sidebar {
        position: relative;
        top: 0;
        margin-top: 50px;
    }

    .grade-table {
        overflow-x: auto;
    }

    .grade-table table {
        min-width: 500px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .hero-cta {
        flex-direction: column;
    }

    .footer-top {
        padding: 50px 0 30px;
    }
}
