/* style.css - Wedding Duo */

:root {
    /* Colors */
    --clr-primary: #9D6269;
    --clr-primary-light: #d7b9bc;
    --clr-primary-dark: #7e4e54;
    --clr-text: #333333;
    --clr-heading: #1a1a1a;
    --clr-bg-main: #ffffff;
    --clr-bg-light: #fdfcfc;
    --clr-bg-alt: #FBFAFA;
    --clr-overlay: rgba(0, 0, 0, 0.4);
    --clr-accent: #c1a376;
    /* Přidaná nová doplňková barva z původních tlačítek */

    /* Typography */
    --font-heading: 'Lora', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Spacing System (8px based) */
    --space-1: 0.5rem;
    /* 8px */
    --space-2: 1rem;
    /* 16px */
    --space-3: 1.5rem;
    /* 24px */
    --space-4: 2rem;
    /* 32px */
    --space-6: 3rem;
    /* 48px */
    --space-8: 4rem;
    /* 64px */
    --space-12: 6rem;
    /* 96px */

    /* Borders & Shadows & Glass */
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 15px 40px rgba(157, 98, 105, 0.2);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: 1px solid rgba(255, 255, 255, 0.5);

    /* Transitions */
    --transition-fast: 0.2s ease-out;
    --transition-normal: 0.3s ease-in-out;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--clr-text);
    background-color: var(--clr-bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--clr-heading);
    font-weight: 600;
    /* Slightly bolder headings for better contrast */
    line-height: 1.2;
}

/* Fluid Typography */
h1 {
    font-size: clamp(2rem, 5vw + 1rem, 4rem);
}

/* 32px to 64px */
h2 {
    font-size: clamp(1.75rem, 3vw + 1rem, 2.5rem);
    margin-bottom: var(--space-4);
}

/* 28px to 40px */
h3 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: clamp(1.25rem, 2vw + 1rem, 1.5rem);
    margin-bottom: var(--space-2);
}

h4 {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 1.5vw + 1rem, 1.25rem);
    color: var(--clr-primary);
    margin-bottom: var(--space-1);
}

p {
    margin-bottom: var(--space-2);
    font-size: 1rem;
}

/* 16px */
p:last-child {
    margin-bottom: 0;
}

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

ul {
    list-style: none;
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

i {
    color: var(--clr-accent);
}

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

.text-primary {
    color: var(--clr-primary);
}

.bg-light {
    background-color: var(--clr-bg-light);
}

.section-alt {
    background-color: var(--clr-bg-alt);
    position: relative;
    overflow: hidden;
}

.section-alt .container {
    position: relative;
    z-index: 2;
}

.bg-gradient {
    background: linear-gradient(135deg, var(--clr-bg-light) 0%, var(--clr-bg-alt) 100%);
}

.mt-2 {
    margin-top: var(--space-2);
}

.mt-3 {
    margin-top: var(--space-3);
}

.mt-4 {
    margin-top: var(--space-4);
}

.pt-3 {
    padding-top: var(--space-3);
}

.pt-4 {
    padding-top: var(--space-4);
}

.pt-5 {
    padding-top: var(--space-6);
}

.mt-6 {
    margin-top: var(--space-6);
}

.cta-link {
    color: var(--clr-primary);
    font-weight: 600;
    text-decoration: underline;
}

.cta-link:hover {
    color: var(--clr-primary-dark);
}

/* Layout Base */
.container {
    width: 85%;
    /* Podle zadání šířka webu 85% */
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .container {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .container {
        width: 92%;
    }
}

.section {
    padding: var(--space-12) 0;
}

.style-section {
    padding: 9rem 0;
}

.section-header {
    margin-bottom: var(--space-6);
    max-width: 700px;
    margin-inline: auto;
}

.grid {
    display: grid;
    gap: var(--space-4);
}

.align-center {
    align-items: center;
}

.layout-2-col {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .layout-2-col {
        grid-template-columns: 1fr 1fr;
    }

    .cards-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Specific Layouts */
.request-song-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

@media (min-width: 850px) {
    .request-song-layout {
        grid-template-columns: 0.85fr 1.15fr;
        /* Makes image slightly smaller than text */
        gap: var(--space-12);
    }
}

/* Navigace */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    border-bottom: 1px solid transparent;
    z-index: 1000;
    padding: var(--space-2) 0;
    transition: all var(--transition-normal);
}

.header.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: var(--glass-border);
    padding: var(--space-1) 0;
    box-shadow: var(--shadow-sm);
}

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

.logo img {
    height: 200px;
    width: auto;
    margin-top: -65px;
    margin-bottom: -65px;
    display: block;
    /* Přizpůsobit dle loga */
    transition: all var(--transition-fast);
}

.header.scrolled .logo img {
    height: 140px;
    margin-top: -45px;
    margin-bottom: -45px;
    filter: brightness(0);
}

@media (max-width: 768px) {
    .logo img {
        height: 140px;
        margin-top: -45px;
        margin-bottom: -45px;
    }

    .header.scrolled .logo img {
        height: 100px;
        margin-top: -30px;
        margin-bottom: -30px;
    }
}

.header:not(.scrolled) .logo img {
    filter: brightness(0) invert(1);
}

.main-nav {
    display: none;
}

@media (min-width: 992px) {
    .main-nav {
        display: block;
    }

    /* Skrýt na desktopu první odkaz DOMŮ, ponechat jej jen v mobilním menu */
    .main-nav .nav-list li:first-child {
        display: none;
    }

    .menu-toggle {
        display: none;
    }
}

.nav-list {
    display: flex;
    gap: var(--space-4);
}

.nav-list a {
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding-bottom: 4px;
}

.header:not(.scrolled) .nav-list a {
    color: white;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--clr-primary);
    transition: var(--transition-normal);
}

.header:not(.scrolled) .nav-list a::after {
    background-color: white;
}

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

.menu-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--clr-primary);
    transition: color var(--transition-fast);
}

.menu-toggle i {
    color: inherit;
}

.header:not(.scrolled) .menu-toggle {
    color: white;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
    padding-top: 80px;
    /* Offset for header */
}

.desktop-br {
    display: none;
}

@media (min-width: 992px) {
    .desktop-br {
        display: block;
    }
}

.hero-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    .hero {
        height: 75vh;
        /* Omezení na výšku, ať fotka nezabere celý displej */
        min-height: 480px;
    }

    .hero-media {
        object-position: 80% 20%;
        /* Posunutí záběru více k hornímu okraji = uříznutí spodku mola */
    }

    video.hero-media {
        object-position: center;
    }
}

.atmosphere-banner {
    position: relative;
    padding: var(--space-12) 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    min-height: 500px;
}

@media (max-width: 768px) {
    .atmosphere-banner {
        min-height: 300px;
        padding: var(--space-4) 0;
        /* Menší padding celkově */
        align-items: flex-start;
        /* Presunuto ke vrchní hraně na přání */
    }

    .atmosphere-banner h2 {
        font-size: 1rem;
        /* Výraznější zmenšení textu */
        font-weight: 400;
        /* Zjemnění písma */
        margin-bottom: var(--space-2);
    }
}

.mobile-text {
    display: none;
}

@media (max-width: 768px) {
    .desktop-text {
        display: none;
    }

    .mobile-text {
        display: inline;
    }
}

.atmosphere-banner .hero-media {
    z-index: -2;
}

.atmosphere-banner .hero-overlay {
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.atmosphere-banner h2 {
    color: white;
    font-size: clamp(1.5rem, 3vw + 1rem, 2.5rem);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--clr-overlay);
    z-index: -1;
}

.hero-content {
    animation: fadeIn 1s ease-out;
    text-align: left;
}

.hero-content h1,
.hero-content p {
    max-width: 650px;
    /* Omezí šířku textu, aby byly postavy na pravé straně dobře vidět */
}

.hero h1 {
    color: white;
    margin-bottom: var(--space-3);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-size: clamp(1.8rem, 4vw + 1rem, 3.2rem);
    /* Zmenšení nadpisu (původní globální h1 je do 4rem) */
}

.hero h1 i {
    color: var(--clr-primary);
    font-style: italic;
}

.hero p {
    font-size: clamp(1rem, 1vw + 1rem, 1.25rem);
    margin-bottom: var(--space-4);
    opacity: 0.9;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 22px;
    line-height: 1.2;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    /* Less rounded shape for a more modern sharp look */
    cursor: pointer;
    text-align: center;
    letter-spacing: 0.5px;
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--clr-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(157, 98, 105, 0.4);
}

.btn-primary:hover {
    background-color: var(--clr-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(157, 98, 105, 0.6);
}

.btn-secondary {
    background-color: white;
    color: var(--clr-text);
}

.btn-secondary:hover {
    background-color: var(--clr-primary-light);
    color: var(--clr-heading);
}

.btn-outline {
    background: transparent;
    border-color: var(--clr-primary);
    color: var(--clr-primary);
}

.btn-outline:hover {
    background: var(--clr-primary);
    color: white;
}

.btn-tan {
    background-color: var(--clr-primary);
    color: white;
    border-radius: 4px;
    padding: 10px 22px;
    line-height: 1.2;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(157, 98, 105, 0.4);
}

.btn-tan:hover {
    background-color: var(--clr-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(157, 98, 105, 0.6);
}

.center-btn {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

/* Glassmorphism Cards */
.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: var(--glass-border);
    box-shadow: var(--shadow-sm);
    border-radius: var(--border-radius-lg);
}

.glass-card {
    background: var(--glass-bg);
    border: var(--glass-border);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.card-image {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.glass-card:hover .card-image img {
    transform: scale(1.05);
}

.card-body {
    padding: var(--space-3);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-badge {
    position: absolute;
    top: 1rem;
    right: -2rem;
    background-color: var(--clr-primary);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 40px;
    transform: rotate(45deg);
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.feature-bullets {
    margin-top: auto;
    padding-top: var(--space-2);
}

.feature-bullets li {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.highlight-text {
    font-weight: 500;
    color: var(--clr-primary-dark);
    margin-top: auto;
    font-style: italic;
    font-family: var(--font-heading);
}

/* Specific Sections */

/* Tailored Section (Custom Design) */
.tailored-section {
    padding: var(--space-12) 0;
    position: relative;
    overflow: hidden;
}

.tailored-bg-line {
    display: none;
}

.tailored-section .container {
    position: relative;
    z-index: 2;
}

.tailored-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-8);
    gap: var(--space-6);
}

.tailored-header-left {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.tailored-subtitle {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--clr-primary-dark);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: var(--space-2);
}

.tailored-title {
    font-size: clamp(1.75rem, 3vw + 1rem, 2.5rem);
    line-height: 1.1;
    margin-bottom: 0;
    font-family: var(--font-heading);
    color: var(--clr-heading);
}

.tailored-header-right {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: var(--space-4);
    /* Align visually with title baseline */
}

.tailored-header-right p {
    color: #666;
    margin-bottom: var(--space-4);
    font-size: 0.95rem;
    line-height: 1.7;
}


.tailored-action {
    display: flex;
    justify-content: center;
    margin-top: var(--space-8);
}

.tailored-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
    align-items: start;
}

.tailored-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
    align-items: stretch;
}

.tailored-card.featured {
    z-index: 5;
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.card-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--clr-primary-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-2);
    background: var(--clr-primary-light);
    padding: 4px 12px;
    border-radius: 20px;
}

.tailored-card-icon {
    text-align: center;
    padding: var(--space-4) var(--space-3);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.tailored-card-icon:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: var(--clr-bg-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-3);
    box-shadow: var(--shadow-sm);
    color: var(--clr-accent);
    font-size: 2rem;
    border: var(--glass-border);
}

.tailored-card-icon h3 {
    font-family: var(--font-heading);
    color: var(--clr-heading);
    font-size: 1.35rem;
    margin-bottom: var(--space-2);
}

.tailored-card-icon p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.tailored-card {
    text-align: left;
    background: #FFFFFF;
    border: 1px solid rgba(157, 98, 105, 0.1);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    padding: 0;
    border-radius: var(--border-radius-lg);
    transition: var(--transition-normal);
    overflow: hidden;
}

.tailored-card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tailored-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.tailored-card:nth-child(even) {
    margin-top: 0;
    /* Removed stagger for consistency with inspiration */
}

.tailored-img-wrapper {
    width: 100%;
    margin-bottom: 0;
    overflow: hidden;
    background-color: var(--clr-bg-light);
    aspect-ratio: 16/10;
    border: none;
    box-shadow: none;
}

.tailored-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.img-pos-bottom {
    object-position: bottom;
}

.tailored-card:hover .tailored-img-wrapper img {
    transform: scale(1.05);
}

.tailored-card h3 {
    font-family: var(--font-heading);
    color: var(--clr-heading);
    font-size: 1.35rem;
    margin-bottom: var(--space-2);
}

.tailored-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Problem Section (Simplified Grid Layout) */
.problem-section {
    position: relative;
    padding: var(--space-12) 0;
    overflow: hidden;
}



.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
    position: relative;
    z-index: 1;
    margin-bottom: var(--space-6);
}

.problem-section .step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-4) var(--space-3);
    gap: var(--space-2);
    border-radius: var(--border-radius-lg);
    background: #ffffff;
    border: 1px solid rgba(157, 98, 105, 0.12);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05), 0 1px 4px rgba(157, 98, 105, 0.08);
    cursor: default;
    height: 100%;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.problem-section .step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(157, 98, 105, 0.15);
}

.problem-section .step-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background-color: var(--clr-bg-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-accent);
    font-size: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: var(--glass-border);
    margin-bottom: var(--space-1);
}

.step-content h3 {
    margin-bottom: 4px;
    font-size: 1.25rem;
    font-family: var(--font-heading);
    color: var(--clr-heading);
}

.step-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 0;
}

.problem-bottom-text {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.problem-bottom-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
}

.problem-bottom-text strong {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 600;
}

.problem-bottom-text a:hover strong {
    color: var(--clr-primary-dark);
    text-decoration: underline;
}

@media (max-width: 992px) {
    .problem-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .tailored-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6) var(--space-4);
    }

    .tailored-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .tailored-card.featured {
        grid-column: span 2;
    }

    .tailored-card:nth-child(even) {
        margin-top: 0;
    }

    .tailored-card:nth-child(2),
    .tailored-card:nth-child(4) {
        margin-top: var(--space-6);
    }
}

@media (max-width: 768px) {
    .tailored-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-4);
    }

    .tailored-header-right {
        padding-top: 0;
    }

    .tailored-grid,
    .tailored-grid-3 {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .tailored-card.featured {
        grid-column: span 1;
    }

    .tailored-card:nth-child(even),
    .tailored-card:nth-child(2),
    .tailored-card:nth-child(4) {
        margin-top: 0;
        /* Remove stagger */
    }

    .tailored-card:nth-child(odd) .tailored-img-wrapper,
    .tailored-card:nth-child(even) .tailored-img-wrapper {
        aspect-ratio: 4/3;
        /* Uniform horizontal ratio for mobile */
    }
}

.subtitle {
    font-size: 1.25rem;
    color: var(--clr-primary);
    margin-bottom: var(--space-4);
}

.strong-text {
    font-weight: 600;
    font-size: 1.1rem;
}

.features-list {
    text-align: left;
    max-width: fit-content;
    margin: 0 auto var(--space-4);
    font-size: 1.1rem;
}

.features-list li {
    margin-bottom: var(--space-2);
}

.features-list i {
    margin-right: 12px;
}

.icon-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
}

.icon-list i {
    width: 24px;
    margin-right: 8px;
    flex-shrink: 0;
    margin-top: 6px;
    /* Zarovnání ikonky s prvním řádkem textu */
}

/* Video Section */
.video-container {
    padding: var(--space-2);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.video-container iframe {
    width: 100%;
    border-radius: var(--border-radius);
    display: block;
}

/* Square video modifier */
.video-container.video-square {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    aspect-ratio: 1 / 1;
    display: flex;
}

.video-container.video-square iframe {
    width: 100%;
    height: 100%;
}

/* Wide video modifier (853×480, 16:9) */
.video-container.video-wide {
    max-width: 853px;
    margin-left: auto;
    margin-right: auto;
    aspect-ratio: 853 / 480;
    display: flex;
}

.video-container.video-wide iframe {
    width: 100%;
    height: 100%;
}

/* Testimonials */
.testimonial-card {
    padding: var(--space-4);
    position: relative;
    z-index: 1;
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--clr-accent);
    opacity: 0.4;
    position: absolute;
    top: var(--space-2);
    left: var(--space-2);
    z-index: -1;
}

.testimonial-card .author {
    margin-top: var(--space-2);
    font-weight: 600;
    color: var(--clr-heading);
    font-size: 0.9rem;
}

/* About Us - Premium Two-Column Layout */
.about-us {
    background-color: var(--clr-bg-main);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    align-items: center;
}

/* Photo column – natural proportions, no letterboxing */
.about-images {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img-bg {
    display: none;
    /* hidden when used solo */
}

.about-img-fg {
    width: 100%;
}

.about-img-fg img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.6s ease;
}

.about-images:hover .about-img-fg img {
    transform: scale(1.02);
}

.about-images:hover .about-img-bg img,
.about-images:hover .about-img-fg img {
    transform: scale(1.04);
}

/* Text content */
.about-content {
    padding-left: var(--space-4);
}

.about-title {
    font-size: clamp(1.8rem, 3vw + 1rem, 2.4rem);
    line-height: 1.2;
    margin-top: var(--space-2);
    margin-bottom: var(--space-3);
}

.about-title em {
    font-style: italic;
    color: var(--clr-primary);
    font-family: var(--font-heading);
}

.about-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: var(--space-6);
    max-width: 480px;
}

/* Stats */
.about-stats {
    display: flex;
    gap: var(--space-8);
}

.about-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: #888;
    letter-spacing: 0.5px;
    text-transform: none;
    font-family: var(--font-body);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--clr-heading);
    line-height: 1;
}

/* Responsive */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .about-images {
        height: auto;
    }

    .about-content {
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .about-images {
        height: auto;
        width: 80%;
        /* Menší fotka na mobilu */
        margin: 0 auto;
        /* Vycentrování fotky */
    }

    .about-stats {
        gap: var(--space-2);
        /* Výrazně zmenšené mezery */
        justify-content: space-between;
        /* Rovnoměrné rozprostření na řádku */
        flex-wrap: nowrap;
        /* Zabrání odskakování na nový řádek */
    }

    .stat-number {
        font-size: 1.6rem;
        /* Kompaktnější čísla */
    }

    .stat-label {
        font-size: 0.7rem;
        /* Drobné zmenšení popisků pod čísly */
    }
}

/* Team Grid (legacy, kept for safety) */
.team-grid {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.team-member {
    max-width: 300px;
}

.team-img {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    object-fit: cover;
    margin: 0 auto var(--space-2);
    box-shadow: var(--shadow-md);
    border: 4px solid white;
}

/* CTA Banner Dark */
.cta-banner {
    background-color: var(--clr-heading);
    color: white;
    padding: calc(var(--space-6) * 1.8) 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('Obrazky/cta-music.jpg');
    background-size: cover;
    background-position: center;
}

.cta-banner h2 {
    color: white;
    font-size: clamp(1.4rem, 2.5vw + 0.5rem, 2rem);
    /* Zmenšená velikost pro tento specifický pruh */
    margin-bottom: var(--space-2);
}

.cta-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-4);
}

.cta-text {
    flex: 1;
    min-width: 300px;
}

.cta-action {
    flex-shrink: 0;
}

/* FAQ Accordion */
.accordion {
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.accordion-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: var(--space-3) var(--space-4);
    background: transparent;
    border: none;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--clr-heading);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-fast);
}

.accordion-header:hover,
.accordion-header.active {
    color: var(--clr-primary);
}

.accordion-header i {
    transition: transform var(--transition-fast);
}

.accordion-header.active i {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 var(--space-4);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease;
    opacity: 0;
}

.accordion-item.active .accordion-content {
    padding-top: var(--space-2);
    padding-bottom: var(--space-4);
    max-height: 800px;
    /* Increased to accommodate more content with padding */
    opacity: 1;
}

@media (max-width: 768px) {
    .accordion-header {
        padding: var(--space-2) var(--space-3);
        /* Redukce výšky otázky */
        font-size: 1rem;
        /* Mírné zmenšení textu */
    }

    .accordion-content {
        padding: 0 var(--space-3);
        /* Příslušné zmenšení okrajů i u odpovědi */
    }

    .accordion-item.active .accordion-content {
        padding-top: var(--space-1);
        padding-bottom: var(--space-4);
        /* Větší padding zespodu na přání uživatele */
    }
}

/* Footer */
.footer {
    background-color: #1e1e1e;
    /* Softer dark background */
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-8) 0 0;
    /* No bottom padding here due to sub-footer */
}

.footer h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: var(--space-3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
    padding-bottom: var(--space-8);
}

@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: 1.2fr 1.5fr 1fr 1fr;
    }
}

.footer-logo {
    max-width: 210px;
    /* Zvětšeno z původních 160px */
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.contact-person p {
    margin-bottom: 4px;
    color: white;
    font-weight: 500;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.contact-item i {
    width: 16px;
    color: var(--clr-accent);
    /* Golden color as requested */
    font-size: 0.9rem;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.7);
}

.contact-item a:hover {
    color: var(--clr-primary);
}

.social-legal-col {
    display: flex;
    flex-direction: column;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: var(--space-6);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    display: inline-block;
    transition: all var(--transition-normal);
}

.footer-links a:hover {
    color: var(--clr-primary);
    transform: translateX(5px);
}

.footer-socials {
    display: flex;
    gap: var(--space-2);
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    transition: all var(--transition-normal);
}

.footer-socials a i {
    font-size: 1.2rem;
    transition: color var(--transition-normal);
}

.footer-socials a:hover {
    background: var(--clr-primary);
    /* Pink background hover */
    transform: translateY(-3px);
}

.footer-socials a:hover i {
    color: #ffffff !important;
    /* White icon hover */
}

/* Sub-footer (Bottom line) */
.footer-bottom {
    background-color: #151515;
    /* Slightly darker narrow strip */
    padding: var(--space-2) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-2);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-content p {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .footer {
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto;
    }

    .contact-info {
        align-items: center;
    }

    .footer-links {
        align-items: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-bottom-content {
        justify-content: center;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* Utils */
.border-radius {
    border-radius: var(--border-radius);
}

.p-2 {
    padding: var(--space-2);
}

.img-fluid {
    width: 100%;
    height: auto;
    display: block;
}

/* Mobile Menu Modal */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-normal);
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-close {
    position: absolute;
    top: var(--space-3);
    right: var(--space-3);
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--clr-primary);
}

.mobile-menu-close i {
    color: inherit;
}

.mobile-menu ul {
    text-align: center;
    font-size: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    padding: 0;
}

.mobile-menu li {
    margin-bottom: 0;
}

.mobile-menu .main-nav {
    display: block;
}

.mobile-menu a {
    color: var(--clr-heading);
    transition: var(--transition-fast);
}

.mobile-menu a:hover,
.mobile-menu a:active {
    color: var(--clr-primary);
}

/* FAQ bottom row */
.faq-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    flex-wrap: wrap;
}

.faq-bottom strong {
    font-size: 1rem;
    color: var(--clr-heading);
    white-space: nowrap;
}

/* ==========================================================================
   CookieYes Custom Styling (Free Version Override)
   ========================================================================== */

/* Hlavní kontejner banneru */
.cky-consent-container .cky-banner-base {
    font-family: var(--font-body) !important;
    background-color: var(--clr-bg-main) !important;
    border-radius: var(--border-radius) !important;
    border: 1px solid rgba(157, 98, 105, 0.2) !important;
    box-shadow: var(--shadow-md) !important;
    padding: 20px !important;
}

/* Hlavní tlačítko PŘIJMOUT (Růžová barva CTA) */
.cky-btn-accept {
    background-color: var(--clr-primary) !important;
    color: #ffffff !important;
    border-radius: 4px !important;
    border: none !important;
    font-family: var(--font-body) !important;
    font-weight: 600 !important;
    padding: 10px 24px !important;
    transition: var(--transition-normal) !important;
}

.cky-btn-accept:hover {
    background-color: var(--clr-primary-dark) !important;
    transform: translateY(-1px) !important;
}

/* Sekundární tlačítka (ODMÍTNOUT, NASTAVENÍ) */
.cky-btn-reject,
.cky-btn-customize {
    background-color: transparent !important;
    color: var(--clr-primary) !important;
    border: 1.5px solid var(--clr-primary) !important;
    border-radius: 4px !important;
    font-family: var(--font-body) !important;
    font-weight: 600 !important;
    padding: 10px 24px !important;
    transition: var(--transition-normal) !important;
}

.cky-btn-reject:hover,
.cky-btn-customize:hover {
    background-color: var(--clr-primary-light) !important;
    color: var(--clr-primary-dark) !important;
    border-color: var(--clr-primary-dark) !important;
}

/* Odkazy v textu (Zásady cookies atd.) - agresivnější výběr */
.cky-consent-container a,
.cky-consent-container .cky-banner-base a,
.cky-policy-text a,
.cky-notice-read-more,
[id^="cky"] a {
    color: var(--clr-primary) !important;
    text-decoration: underline !important;
    font-weight: 500 !important;
}

.cky-consent-container a:hover,
[id^="cky"] a:hover {
    color: var(--clr-primary-dark) !important;
}



.cky-title {
    color: var(--clr-heading) !important;
    font-family: var(--font-heading) !important;
    font-weight: 600 !important;
}

/* Plovoucí tlačítko (Revisit Consent) - finální oprava */
.cky-btn-revisit-wrapper,
.cky-revisit-consent .cky-btn-revisit {
    background-color: var(--clr-primary) !important;
    box-shadow: var(--shadow-md) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    transition: var(--transition-normal) !important;
}

.cky-btn-revisit-wrapper:hover,
.cky-revisit-consent .cky-btn-revisit:hover {
    background-color: var(--clr-primary-dark) !important;
    transform: scale(1.1) !important;
}

/* Ikona uvnitř tlačítka (SVG) */
.cky-revisit-consent svg path,
.cky-btn-revisit-wrapper svg path {
    fill: #ffffff !important;
}

/* Tlačítko "Uložit předvolby" v nastavení */
.cky-btn-preferences {
    background-color: var(--clr-primary) !important;
    border-color: var(--clr-primary) !important;
    color: #ffffff !important;
}