/* ---------------------------------------------------
   TABLE OF CONTENTS
------------------------------------------------------
   1.  RESET AND BASE STYLES
   2.  CSS CUSTOM PROPERTIES
   3.  TYPOGRAPHY
   4.  HEADER
   5.  LOGO
   6.  NAVIGATION
   7.  HERO SECTION
   8.  INFO BLOCKS
   9.  SLIDESHOW
   10. CONTACT SECTION
   11. FOOTER
   12. KONZULTACE (CONSULTATION) PAGE
   13. O MNE (ABOUT ME) PAGE
   14. KONTAKT (CONTACT) PAGE
   15. BREADCRUMBS
   16. PROJEKTY / BLOG PAGE
   17. GALERIE PAGE
   18. REASONS SECTION
   19. FAQ ACCORDION
   20. UTILITY CLASSES
   21. MEDIA QUERIES (CONSOLIDATED)
   22. PRINT STYLES
------------------------------------------------------ */

/* ---------------------------------------------------
   1) RESET AND BASE STYLES
------------------------------------------------------ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #fff;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ---------------------------------------------------
   2) CSS CUSTOM PROPERTIES
------------------------------------------------------ */
:root {
    --color-primary: #0077be;
    --color-primary-dark: #005f99;
    --color-primary-light: #1ba2f6;
    --color-text: #333;
    --color-text-light: #555;
    --color-text-muted: #666;
    --color-text-faint: #777;
    --color-text-pale: #999;
    --color-bg: #fff;
    --color-bg-alt: #f7f7f7;
    --color-bg-green: #d0f0c0;
    --color-border: #eee;
    --color-border-light: #ddd;
    --color-footer: #8B4513;
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-danger: #ef4444;
    --color-indigo: #6366f1;
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 10px;
    --radius-xl: 16px;
    --shadow-sm: 0 3px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.15);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.2);
    --transition: 0.3s ease;
}

/* ---------------------------------------------------
   3) TYPOGRAPHY
------------------------------------------------------ */
h1 {
    font-size: clamp(1.8rem, 5vw, 3rem);
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--color-primary);
}

a {
    text-decoration: none;
    color: var(--color-primary);
    transition: color var(--transition);
}

a:not(.main-nav a):not(.logo-link):hover {
    text-decoration: underline;
    color: var(--color-primary-dark);
}

/* ---------------------------------------------------
   4) HEADER
------------------------------------------------------ */
header {
    background: rgba(255, 255, 255, 0.75);
    padding: 10px 0;
    position: relative;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    flex-wrap: wrap;
}

/* ---------------------------------------------------
   5) LOGO
------------------------------------------------------ */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    color: #000;
    text-decoration: none;
}

.logo-link img {
    max-height: 80px;
    width: auto;
    margin-right: 8px;
    transition: all var(--transition);
}

.logo-link:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 2px 6px rgba(0, 119, 190, 0.2));
}

.logo-text {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: bold;
    line-height: 1.2;
    color: #000;
    transition: color var(--transition);
}

.logo-link:hover .logo-text {
    color: var(--color-primary-dark);
}

/* ---------------------------------------------------
   6) NAVIGATION
------------------------------------------------------ */
.main-nav {
    margin-left: auto;
    margin-top: 0;
}

.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.main-nav ul li a {
    color: #000;
    font-weight: bold;
    font-size: clamp(0.9rem, 2vw, 1rem);
    white-space: nowrap;
    position: relative;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    display: inline-block;
    text-decoration: none;
}

/* Animated underline */
.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #943c3c;
    transition: width var(--transition);
}

.main-nav ul li a:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    text-decoration: none;
    color: #000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.main-nav ul li a:hover::after {
    width: 80%;
}

/* Active page */
.main-nav ul li a.active {
    background: rgba(140, 231, 247, 0.76);
    font-weight: bold;
    text-decoration: none;
}

.main-nav ul li a.active::after {
    width: 80%;
}

/* ---------------------------------------------------
   7) HERO SECTION
------------------------------------------------------ */
.hero-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 ratio */
    overflow: hidden;
    background: #000;
}

.hero-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.hero-overlay h1 {
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-overlay p {
    font-size: clamp(1rem, 3vw, 1.5rem);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* ---------------------------------------------------
   8) INFO BLOCKS
------------------------------------------------------ */
.info-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 40px 20px;
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
    text-align: center;
}

.info-block:nth-child(odd) {
    background: var(--color-bg-alt);
}

.info-block:nth-child(even) {
    background: var(--color-bg-green);
}

.info-text,
.info-image {
    flex: 1 1 100%;
    min-width: 0;
}

.info-text {
    max-width: 600px;
    padding: 20px;
    text-align: center;
}

.info-image img {
    width: 100%;
    max-width: 100%;
    border-radius: var(--radius-md);
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
    cursor: pointer;
}

.info-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    filter: brightness(1.05);
}

/* ---------------------------------------------------
   9) SLIDESHOW
------------------------------------------------------ */
.slideshow {
    background: #fff;
    padding: 40px 0;
    overflow: hidden;
    position: relative;
}

.slideshow-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slide-track {
    display: flex;
    gap: 20px;
    width: fit-content;
    animation: slideshow 120s linear infinite;
    padding-right: 20px;
}

.slide {
    flex: 0 0 auto;
    width: clamp(200px, 30vw, 300px);
    height: clamp(130px, 20vw, 200px);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #ccc;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes slideshow {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-17 * 300px - 16 * 20px));
    }
}

/* Pause on hover */
.slideshow-container:hover .slide-track {
    animation-play-state: paused;
}

/* ---------------------------------------------------
   10) CONTACT SECTION
------------------------------------------------------ */
.kontakt-main {
    position: relative;
    min-height: 100vh;
    background-image: url('../images/pozadi.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    padding: 80px 0;
    margin: 0;
    width: 100%;
    max-width: none;
}

.kontakt-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 1;
}

.kontakt-main .container {
    position: relative;
    z-index: 2;
}

.contact {
    background: #fff;
    padding: 60px 20px;
    text-align: center;
}

.contact h2 {
    margin-bottom: 20px;
}

.contact p {
    font-size: 1rem;
    margin-bottom: 15px;
}

/* Contact header with photo */
.kontakt-header-with-photo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
    gap: 20px;
}

.kontakt-title {
    margin: 0;
}

.kontakt-photo {
    width: 200px;
    height: 300px;
    border-radius: 5%;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform var(--transition), box-shadow var(--transition);
}

.kontakt-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
}

.kontakt-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---------------------------------------------------
   11) FOOTER
------------------------------------------------------ */
footer {
    background: var(--color-footer);
    padding: 20px;
    color: #fff;
    text-align: center;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.footer-main {
    font-size: 1rem;
    color: #fff;
}

.footer-credits {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}

.footer-credits a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition);
    border-bottom: 1px solid transparent;
}

.footer-credits a:hover {
    color: #fff;
    border-bottom-color: #fff;
}

/* ---------------------------------------------------
   12) KONZULTACE (CONSULTATION) PAGE
------------------------------------------------------ */
.konzultace-main {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.konzultace-intro,
.konzultace-process,
.konzultace-benefits,
.konzultace-examples,
.konzultace-cta {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.konzultace-main h1 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: 20px;
    color: var(--color-text);
    text-align: center;
}

.konzultace-main h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 15px;
    color: var(--color-primary);
}

.konzultace-main h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 10px;
    color: var(--color-text);
}

.konzultace-main p,
.konzultace-main li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 15px;
}

.konzultace-main ul {
    margin: 20px 0;
    padding-left: 25px;
}

.konzultace-main ul li {
    margin-bottom: 10px;
}

/* Konzultace images - shared hover */
.konzultace-intro img,
.konzultace-process img,
.konzultace-benefits img,
.konzultace-examples img,
.konzultace-cta img,
.konzultace-cta .omne-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: var(--radius-md);
    margin: 20px auto;
    display: block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
    cursor: pointer;
}

.konzultace-intro img:hover,
.konzultace-process img:hover,
.konzultace-benefits img:hover,
.konzultace-examples img:hover,
.konzultace-cta img:hover,
.konzultace-cta .omne-image img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-hover);
    filter: brightness(1.05);
}

.konzultace-cta .omne-image {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    display: block;
}

/* Process steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.process-step {
    background: var(--color-bg-alt);
    padding: 20px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-primary);
}

.process-step h3 {
    color: var(--color-primary);
    margin-bottom: 10px;
}

/* Benefits grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.benefit-item {
    background: var(--color-bg-alt);
    padding: 20px;
    border-radius: var(--radius-md);
    transition: transform var(--transition), box-shadow var(--transition);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
}

.benefit-item h3 {
    color: var(--color-primary);
    margin-bottom: 10px;
}

/* Examples section */
.example-item {
    background: var(--color-bg-alt);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.example-item h3 {
    color: var(--color-primary);
    margin-bottom: 10px;
}

/* CTA section */
.konzultace-cta {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    text-align: center;
}

.konzultace-cta h2 {
    color: white;
}

.konzultace-cta p {
    color: rgba(255, 255, 255, 0.9);
}

/* ---------------------------------------------------
   13) O MNE (ABOUT ME) PAGE
------------------------------------------------------ */
.omne-main {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.omne-main h1 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: 30px;
    color: var(--color-text);
    text-align: center;
}

.omne-main h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 20px;
    color: var(--color-primary);
}

.omne-main h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 10px;
    color: var(--color-text);
}

.omne-main p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 15px;
}

.omne-main ul {
    margin: 20px 0;
    padding-left: 25px;
}

.omne-main ul li {
    margin-bottom: 10px;
    line-height: 1.8;
    color: var(--color-text-light);
}

/* Intro section with photo */
.omne-intro {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.omne-intro .omne-image {
    flex: 0 0 300px;
    max-width: 300px;
    width: 100%;
}

.omne-intro .omne-image img,
.omne-journey .omne-image img,
.omne-mission .omne-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
    cursor: pointer;
}

.omne-journey .omne-image img,
.omne-mission .omne-image img {
    max-width: 800px;
    margin: 20px auto;
    border-radius: var(--radius-md);
}

.omne-intro .omne-image img:hover,
.omne-journey .omne-image img:hover,
.omne-mission .omne-image img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-hover);
    filter: brightness(1.05);
}

.omne-intro .omne-text {
    flex: 1;
    min-width: 280px;
}

/* Journey, mission sections */
.omne-journey,
.omne-mission {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-lg);
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

/* ============================================
   Expertise section
   NAHRADIT kompletně stávající sekci v style.css
   ============================================ */

.omne-expertise {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-lg);
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.expertise-item {
    background: var(--color-bg-alt);
    padding: 25px;
    border-radius: var(--radius-md);
    transition: transform var(--transition), box-shadow var(--transition);
    border-left: 4px solid var(--color-primary);
}

.expertise-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.expertise-item h3 {
    color: var(--color-primary);
    margin-bottom: 15px;
}

.expertise-item p {
    margin-bottom: 10px;
}

/* Daruj křídla - featured karta přes celou šířku */
.expertise-featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, #e8f5e9 100%);
    padding: 30px 35px;
    border-left-width: 5px;
}

.expertise-featured h3 {
    font-size: 1.3em;
    margin-bottom: 18px;
}

.expertise-featured .featured-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 30px;
}

.expertise-featured .featured-text p {
    margin-bottom: 0;
}

/* Třetí odstavec přes celou šířku */
.expertise-featured .featured-text p:last-child {
    grid-column: 1 / -1;
}



*/
/* CTA section */
.omne-cta {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-top: 40px;
}

.omne-cta h2 {
    color: white;
    margin-bottom: 20px;
}

.omne-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.secondary-button {
    background: white;
    color: var(--color-primary);
    padding: 12px 25px;
    border-radius: var(--radius-sm);
    font-weight: bold;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition);
    cursor: pointer;
    display: inline-block;
    margin-top: 15px;
    text-decoration: none;
    border: 2px solid var(--color-primary);
}

.secondary-button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

/* ---------------------------------------------------
   14) KONTAKT (CONTACT) PAGE
------------------------------------------------------ */
.kontakt-content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.kontakt-info-card,
.kontakt-form-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    flex: 1;
    min-width: 280px;
}

.kontakt-intro {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 30px;
    text-align: center;
}

.info-header,
.form-header {
    margin-bottom: 20px;
}

.info-header h2,
.form-header h2 {
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    color: var(--color-primary);
    margin-bottom: 10px;
}

.info-header p,
.form-header p {
    color: var(--color-text-faint);
    font-size: 0.95rem;
}

.info-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.info-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.95rem;
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list a {
    color: var(--color-primary);
    text-decoration: none;
}

.info-list a:hover {
    text-decoration: underline;
}

address {
    font-style: normal;
    line-height: 1.6;
    color: var(--color-text-light);
}

.social-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    flex: 1 1 auto;
    min-width: 120px;
}

.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.facebook {
    background: #3b5998;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Form styles */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1 1 100%;
    min-width: 0;
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #252525;
}

/* Form controls */
.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-sm);
    font-size: 15px;
    transition: all 0.2s;
    -webkit-appearance: none;
}

.form-control:focus {
    border-color: var(--color-primary-light);
    box-shadow: 0 0 0 3px rgba(27, 162, 246, 0.15);
    outline: none;
}

.form-control::placeholder {
    color: #2e2e2e;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Konzultace form overrides */
.konzultace-cta .form-control {
    border: 2px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.konzultace-cta .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.konzultace-cta .form-control:focus {
    border-color: white;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

/* Select styling */
select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232e2e2e'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
    padding-right: 40px;
}

.konzultace-cta select.form-control {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
}

select.form-control option {
    color: var(--color-text);
    background-color: white;
}

/* Checkbox styling */
.gdpr-group {
    margin: 20px 0;
}

.gdpr-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
}

.gdpr-label input {
    margin-top: 3px;
    margin-right: 10px;
    flex-shrink: 0;
}

.gdpr-label span {
    font-size: 14px;
    color: #353535;
}

.form-group input[type="checkbox"] {
    margin-right: 10px;
    vertical-align: middle;
}

.form-group input[type="checkbox"] + label {
    display: inline;
    font-weight: normal;
    vertical-align: middle;
}

/* Button styling */
.cta-button,
.submit-button {
    display: inline-block;
    background: white;
    color: var(--color-primary);
    padding: 12px 25px;
    border-radius: var(--radius-sm);
    font-weight: bold;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition);
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
    border: 2px solid var(--color-primary);
}

.submit-button {
    background: var(--color-primary-light);
    color: white;
}

.cta-button:hover,
.submit-button:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.submit-button:hover {
    background: #0d8edf;
}

.form-submit {
    text-align: center;
    margin-top: 20px;
}

.form-privacy,
.form-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--color-text-faint);
    text-align: center;
}

.konzultace-cta .form-note {
    color: rgba(255, 255, 255, 0.8);
}

/* Map section */
.kontakt-map-section {
    margin-top: 60px;
}

.kontakt-map-section h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: var(--color-text);
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 400px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ---------------------------------------------------
   15) BREADCRUMBS
------------------------------------------------------ */
.breadcrumbs {
    background-color: transparent;
    padding: 10px 0;
    border-bottom: none;
    font-size: 12px;
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    opacity: 0.6;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
}

.breadcrumbs li:not(:last-child)::after {
    content: "›";
    margin: 0 8px;
    color: rgba(196, 195, 195, 0.51);
    font-size: 13px;
}

.breadcrumbs a {
    color: rgba(102, 102, 102, 0.45);
    text-decoration: none;
    font-size: 12px;
    transition: color var(--transition);
}

.breadcrumbs a:hover {
    color: rgba(0, 120, 190, 0.51);
    text-decoration: underline;
}

.breadcrumbs li:last-child {
    color: rgba(153, 153, 153, 0.55);
    font-size: 12px;
}

/* ---------------------------------------------------
   16) PROJEKTY / BLOG PAGE
------------------------------------------------------ */
.projekty-main {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Page Header */
.projekty-header {
    text-align: center;
    margin-bottom: 60px;
}

.projekty-header h1 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: var(--color-text);
    margin-bottom: 20px;
}

.projekty-intro {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Sections */
.projekty-aktualni,
.projekty-dokoncene,
.blog-section {
    margin-bottom: 80px;
}

.projekty-aktualni h2,
.projekty-dokoncene h2,
.blog-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    color: var(--color-primary);
    margin-bottom: 15px;
}

.projekty-aktualni > p,
.projekty-dokoncene > p,
.blog-section > p {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

/* Grid */
.projekty-grid,
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* Projekt item (card) */
.projekt-item,
.blog-item {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}

.projekt-item:hover,
.blog-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Projekt image - 16:9 */
.projekt-image,
.blog-image {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
    background-color: #f0f0f0;
}

.projekt-image:has(.video-responsive),
.blog-image:has(.video-responsive) {
    padding-bottom: 0;
}

.projekt-image img,
.blog-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.projekt-item:hover .projekt-image img,
.blog-item:hover .blog-image img {
    transform: scale(1.05);
}

/* Projekt content */
.projekt-content,
.blog-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.projekt-content p {
    margin-bottom: 12px;
}

.projekt-content p:last-of-type {
    margin-bottom: 15px;
}

.projekt-content strong {
    color: var(--color-primary);
    font-weight: 600;
}

/* Status badges */
.projekt-status,
.blog-kategorie {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-probiha {
    background: var(--color-success);
    color: white;
}

.status-planovani {
    background: var(--color-warning);
    color: white;
}

.status-dokonceno {
    background: var(--color-indigo);
    color: white;
}

.status-oceneni {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.status-news {
    background: var(--color-danger);
    color: white;
}

.status-probihajici {
    background: #f97316;
    color: white;
}

.status-tip {
    background: #3b82f6;
    color: white;
}

.status-navod {
    background: #8b5cf6;
    color: white;
}

.status-poznatek {
    background: #06b6d4;
    color: white;
}

.blog-kategorie {
    background: #e0f2fe;
    color: var(--color-primary);
}

/* Projekt title */
.projekt-content h3,
.blog-content h3 {
    font-size: 1.4rem;
    color: var(--color-text);
    margin-bottom: 12px;
    line-height: 1.3;
}

/* Meta information */
.projekt-meta,
.blog-meta {
    font-size: 0.9rem;
    color: var(--color-text-pale);
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--color-border);
}

.projekt-datum,
.projekt-lokace,
.blog-datum,
.blog-autor {
    display: inline-block;
}

/* Projekt description */
.projekt-content > p,
.blog-content > p {
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Projekt highlights */
.projekt-highlights {
    list-style: none;
    padding: 15px 20px;
    margin: 15px 0;
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
}

.projekt-highlights li {
    color: var(--color-text-light);
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.projekt-highlights li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: bold;
}

/* Projekt link */
.projekt-link,
.blog-link {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
    padding-top: 15px;
    display: inline-block;
    transition: color var(--transition);
}

.projekt-link:hover,
.blog-link:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

/* Dokončený projekt */
.projekt-dokoncen {
    border-left: 4px solid var(--color-indigo);
}

/* Newsletter / CTA */
.projekty-newsletter {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    padding: 50px 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 60px;
}

.projekty-newsletter h2 {
    color: white;
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    margin-bottom: 15px;
}

.projekty-newsletter p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.projekty-newsletter .social-buttons {
    justify-content: center;
    margin-bottom: 20px;
}

.projekty-newsletter .cta-button {
    margin-top: 10px;
}

/* Video responsive container */
.video-responsive {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ---------------------------------------------------
   17) GALERIE PAGE
------------------------------------------------------ */
.galerie-main {
    padding: 60px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition), box-shadow var(--transition);
    aspect-ratio: 4 / 3;
    background: #f4f4f4;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.2);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color var(--transition);
}

.close-lightbox:hover {
    color: #bbb;
}

body.lightbox-open {
    overflow: hidden;
}

/* ---------------------------------------------------
   18) REASONS SECTION (6 důvodů)
------------------------------------------------------ */
.reasons-section {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

.reasons-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--color-text);
    margin-bottom: 15px;
}

.reasons-section > p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 800px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.reason-card {
    background: linear-gradient(145deg, #ffffff 0%, #a7ffb0 100%);
    padding: 40px 30px;
    border-radius: var(--radius-xl);
    border-bottom: 4px solid var(--color-primary);
    box-shadow: 0 5px 15px rgba(0, 119, 190, 0.08);
    transition: transform var(--transition), box-shadow var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reason-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 119, 190, 0.15);
}

.reason-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 8px 15px rgba(0, 119, 190, 0.2);
}

.reason-icon svg {
    width: 38px;
    height: 38px;
    fill: currentColor;
}

.reason-card h3 {
    font-size: 1.3rem;
    color: var(--color-text);
    margin-bottom: 15px;
    font-weight: bold;
}

.reason-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ---------------------------------------------------
   19) FAQ ACCORDION
------------------------------------------------------ */
.faq-section {
    padding: 60px 0;
    background-color: #f7f9fb;
    border-radius: 12px;
    margin: 40px auto;
    max-width: 1200px;
}

.faq-section h2 {
    text-align: center;
    color: var(--color-text);
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    margin-bottom: 10px;
}

.faq-intro {
    text-align: center;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-item {
    background: #ffffff;
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 20px 25px;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--color-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background var(--transition);
}

.faq-question:hover {
    background: #fdfdfd;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: normal;
    transition: transform var(--transition);
    color: var(--color-primary-light);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}

.faq-answer p {
    padding: 0 25px 25px 25px;
    margin: 0;
    color: var(--color-text-light);
    line-height: 1.6;
    border-top: 1px solid transparent;
}

/* Active FAQ state (toggled via JS) */
.faq-item.active .faq-question {
    color: var(--color-primary-dark);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* ---------------------------------------------------
   20) UTILITY CLASSES
------------------------------------------------------ */

/* Accessible focus styles */
:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Smooth scrolling */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ---------------------------------------------------
   21) MEDIA QUERIES (CONSOLIDATED)
------------------------------------------------------ */

/* ---- Tablet (max-width: 900px) ---- */
@media (max-width: 900px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .kontakt-content {
        flex-direction: column;
    }

    .kontakt-info-card,
    .kontakt-form-card {
        width: 100%;
        min-width: 0;
    }

    .header-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .main-nav {
        width: 100%;
        margin-left: 0;
    }

    .main-nav ul {
        justify-content: flex-start;
    }

    .projekty-grid,
    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
    }
}

/* ---- Mobile (max-width: 768px) ---- */
@media (max-width: 768px) {
    /* Base */
    body {
        font-size: 16px;
    }

    .container {
        width: 95%;
        padding: 0 10px;
    }

    /* Header & Navigation */
    .header-container {
        padding: 0 10px;
    }

    .main-nav ul {
        gap: 10px;
        flex-wrap: wrap;
    }

    .main-nav ul li a {
        font-size: 0.9rem;
        padding: 10px 5px;
    }

    /* Logo */
    .logo-link img {
        max-height: 35px;
    }

    /* Hero section */
    .hero-overlay {
        padding: 15px;
    }

    .hero-overlay h1 {
        font-size: 1.8rem;
    }

    .hero-overlay p {
        font-size: 1rem;
    }

    /* Info blocks */
    .info-block {
        flex-direction: column;
        padding: 30px 15px;
        gap: 20px;
    }

    .info-text,
    .info-image {
        flex: 1 1 100%;
    }

    .info-text {
        padding: 15px;
    }

    /* Slideshow */
    .slide {
        width: 200px;
        height: 130px;
    }

    @keyframes slideshow {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-17 * 200px - 16 * 20px)); }
    }

    /* Contact page */
    .kontakt-main {
        background-attachment: scroll;
        padding: 40px 0;
    }

    .kontakt-title {
        font-size: 2rem;
    }

    .kontakt-intro {
        font-size: 1rem;
        padding: 0 10px;
    }

    .kontakt-photo {
        width: 150px;
        height: 225px;
    }

    .kontakt-info-card,
    .kontakt-form-card {
        padding: 20px;
    }

    .info-header h2,
    .form-header h2 {
        font-size: 1.3rem;
    }

    .social-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .social-btn {
        width: 100%;
        min-width: 0;
    }

    /* Map */
    .map-wrapper {
        height: 300px;
    }

    .kontakt-map-section {
        margin-top: 40px;
    }

    /* Konzultace page */
    .konzultace-main {
        padding: 20px 10px;
    }

    .konzultace-intro,
    .konzultace-process,
    .konzultace-benefits,
    .konzultace-examples,
    .konzultace-cta {
        padding: 25px 20px;
        margin-bottom: 20px;
    }

    .konzultace-intro img,
    .konzultace-process img,
    .konzultace-benefits img,
    .konzultace-examples img {
        max-width: 100%;
        margin: 15px 0;
    }

    .konzultace-main h1 { font-size: 1.8rem; }
    .konzultace-main h2 { font-size: 1.5rem; }
    .konzultace-main h3 { font-size: 1.2rem; }

    .konzultace-main ul {
        padding-left: 20px;
    }

    .process-steps,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* About Me page */
    .omne-main {
        padding: 20px 10px;
    }

    .omne-intro {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .omne-intro .omne-image {
        flex: 0 0 auto;
        max-width: 250px;
        margin: 0 auto;
    }

    .omne-intro .omne-text {
        min-width: 0;
    }

    .omne-journey,
    .omne-mission,
    .omne-expertise {
        padding: 25px 20px;
    }

    .omne-journey .omne-image img,
    .omne-mission .omne-image img {
        max-width: 100%;
        margin: 15px 0;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .expertise-item {
        padding: 20px 15px;
    }

    .omne-cta {
        padding: 30px 20px;
    }

    .secondary-button {
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 10px auto 0;
    }

    /* Breadcrumbs */
    .breadcrumbs {
        font-size: 11px;
        padding: 8px 0;
    }

    .breadcrumbs ol {
        padding: 0 15px;
        opacity: 0.5;
        flex-wrap: wrap;
    }

    .breadcrumbs a,
    .breadcrumbs li:last-child {
        font-size: 11px;
    }

    /* Projekty page */
    .projekty-main {
        padding: 30px 15px;
    }

    .projekty-header {
        margin-bottom: 40px;
    }

    .projekty-intro {
        font-size: 1rem;
    }

    .projekty-aktualni,
    .projekty-dokoncene,
    .blog-section {
        margin-bottom: 50px;
    }

    .projekty-grid,
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .projekt-image,
    .blog-image {
        height: 200px;
    }

    .projekt-content,
    .blog-content {
        padding: 20px;
    }

    .projekt-content h3,
    .blog-content h3 {
        font-size: 1.2rem;
    }

    .projekt-status {
        font-size: 0.8rem;
        padding: 4px 10px;
    }

    .projekty-newsletter {
        padding: 40px 25px;
    }

    .projekty-newsletter .social-buttons {
        flex-direction: column;
    }

    .projekty-newsletter .social-btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto 10px;
    }

    /* Buttons */
    .cta-button,
    .submit-button {
        width: 100%;
        max-width: 300px;
    }

    /* Touch targets */
    a,
    button,
    .social-btn,
    .form-control,
    input[type="checkbox"] {
        min-height: 44px;
        min-width: 44px;
    }

    /* Reasons */
    .reasons-section {
        padding: 50px 0;
    }

    .reason-card {
        padding: 30px 20px;
    }
}

    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .expertise-item {
        padding: 20px 15px;
    }

    .expertise-featured {
        padding: 20px 15px;
    }

    .expertise-featured .featured-text {
        grid-template-columns: 1fr;
    }

/* ---- Desktop (min-width: 769px) ---- */
@media (min-width: 769px) {
    .info-text,
    .info-image {
        flex: 1 1 400px;
    }

    .form-group {
        flex: 1 1 calc(50% - 10px);
    }

    .cta-button,
    .submit-button {
        width: auto;
    }
}

/* ---- Small mobile (max-width: 600px) ---- */
@media (max-width: 600px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }

    .info-text,
    .info-image {
        padding: 10px;
    }

    .hero-overlay h1 { font-size: 1.5rem; }
    .hero-overlay p { font-size: 0.9rem; }

    .slide {
        width: 150px;
        height: 100px;
    }

    @keyframes slideshow {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-17 * 150px - 16 * 20px)); }
    }

    .kontakt-photo {
        width: 120px;
        height: 180px;
    }

    .form-control {
        font-size: 16px; /* Prevents iOS zoom */
    }

    .cta-button,
    .submit-button {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .projekty-header h1 {
        font-size: 1.8rem;
    }

    .projekt-meta,
    .blog-meta {
        font-size: 0.85rem;
    }

    .projekt-datum,
    .projekt-lokace,
    .blog-datum,
    .blog-autor {
        display: block;
        margin-bottom: 5px;
    }

    .projekt-highlights {
        padding: 12px 15px;
    }
}

/* ---- Landscape on mobile ---- */
@media (max-width: 900px) and (orientation: landscape) {
    .hero-video {
        padding-bottom: 40%;
    }

    .header-container {
        flex-direction: row;
    }

    .main-nav ul {
        flex-direction: row;
    }
}

/* ---------------------------------------------------
   22) PRINT STYLES
------------------------------------------------------ */
@media print {
    .projekty-newsletter,
    .breadcrumbs,
    header,
    footer {
        display: none;
    }

    .projekt-item,
    .blog-item {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

