/* =========================================================
   VERONICA VISAGE - CSS STYLES
   Modern Web Design, Glassmorphism, Responsive Mobile-First
   ========================================================= */

:root {
    /* Brand Colors */
    --clr-primary: #e7D7C8;   /* Light Beige */
    --clr-secondary: #a68750; /* Golden/Brown */
    --clr-button: #CAB2A3;    /* Sand/Gold button -> Beige */
    --clr-bg: #ffffff;
    --clr-bg-light: #F9F9F9;
    --clr-primary: #333333;
    --clr-secondary: #CAB2A3; /* Replaced Gold */
    --clr-text: #555555;
    --clr-text-light: #555555;
    --clr-white: #FFFFFF;   
    
    /* Glassmorphism Variables */
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    
    /* Typography */
    --ff-body: 'Outfit', sans-serif;
    --ff-heading: 'Outfit', sans-serif; /* Changed heading font based on new modern design */
    --fs-base: 1rem; /* 16px */
    
    /* Spacing & Layout */
    --container-width: 85%;
    --section-padding: 5rem 0;
    --radius: 16px;
    --radius-pill: 50px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --ff-script: 'WindSong', cursive;
    --ff-serif: 'Cormorant Garamond', serif;
}

/* =========================================================
   RESET & BASE STYLES
   ========================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--ff-body);
    font-size: var(--fs-base);
    color: var(--clr-text);
    background-color: var(--clr-bg);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

input, textarea, button {
    font-family: inherit;
    font-size: inherit;
}

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
h1, h4, h5, h6, .h1, .h4 {
    font-family: var(--ff-heading);
    color: var(--clr-text);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h3, .h3 {
    font-family: var(--ff-serif);
    color: var(--clr-text);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

h2, .h2 {
    font-family: var(--ff-heading);
    color: var(--clr-text);
    font-weight: normal;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(3rem, 5vw, 4.4rem);
    font-weight: 400;
}

/* clamp(min, preferred, max) */
.h1 { font-size: clamp(2rem, 4vw, 3rem); }
.h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
.h4 { font-size: 1.1rem; }

p {
    margin-bottom: 1.25rem;
    color: var(--clr-text-light);
    line-height: 1.7;
}

.text-center { text-align: center; }
.text-container {
    max-width: 70vw;
    margin-inline: auto;
}
@media (max-width: 768px) {
    .text-container { max-width: 100%; }
}

.large-text {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.7;
}

.label-text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-secondary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* =========================================================
   UTILITIES & LAYOUT
   ========================================================= */
.container {
    width: 90%; 
    max-width: 1400px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .container { width: var(--container-width); }
}

.section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.section-padding .container > *:last-child {
    margin-bottom: 0 !important;
}
.bg-light { background-color: var(--clr-bg-light); }

.bg-beige {
    background-color: #CAB2A3;
    background-image: url('../Obr%C3%A1zky/Design/pozadif.jpg');
    background-size: cover;
    background-position: center;
}
.bg-beige .section-heading .h2-styled {
    color: rgba(255, 255, 255, 0.6);
}
.bg-beige .section-heading .h3-styled {
    color: rgba(255, 255, 255, 0.95);
}
.bg-beige .section-heading .h3-styled::after {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.65), transparent);
}
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.w-100 { width: 100%; }

/* Glassmorphism Classes */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: var(--radius);
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    border-radius: var(--radius-pill);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--clr-button);
    color: #333333;
}

.btn-primary:hover {
    background-color: #333333;
    border-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

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

.btn-outline:hover {
    background-color: #333333;
    border-color: #333333;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    border-color: rgba(255,255,255,0.6);
    color: #fff;
    font-weight: 400;
}
.btn-outline-white:hover {
    background-color: #fff;
    color: var(--clr-text);
}

.btn-white {
    background-color: #ffffff;
    color: #333333;
    border-color: #ffffff;
}
.btn-white:hover {
    background-color: #333333;
    color: #ffffff;
    border-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
/* Button Arrow Circle */
.btn-arrow-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-left: 0.2rem;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    font-size: 0.75rem;
    background-color: var(--clr-button); /* Default: Beige background */
    color: #ffffff; /* Default: White arrow icon */
}
.btn:hover .btn-arrow-circle {
    transform: translateX(4px);
}

/* Static state: beige/primary buttons — white circle with beige arrow */
.btn-primary .btn-arrow-circle {
    background-color: #ffffff;
    color: var(--clr-button);
}

/* On dark hover (all buttons turn black) — white circle with dark arrow */
.btn-primary:hover .btn-arrow-circle,
.btn-white:hover .btn-arrow-circle,
.btn-v2-primary:hover .btn-arrow-circle {
    background-color: #ffffff;
    color: #333333;
}

/* White buttons (and others that are light) use the default beige circle */
/* Outline white buttons use white circle on hover */
.btn-outline-white:hover .btn-arrow-circle {
    background-color: var(--clr-button);
    color: #ffffff;
}
.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--clr-secondary);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-link i {
    transition: transform 0.3s;
}

.btn-link:hover i {
    transform: translateX(5px);
}

.icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: var(--transition);
}
.icon-btn:hover {
    background: rgba(255,255,255,0.3);
}

/* =========================================================
   HEADER & NAVIGATION
   ========================================================= */
.header {
    background-color: transparent;
    padding: 1.5rem 0;
    position: absolute; /* Replaced fixed / sticky */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.home-header {
    position: relative;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 0.6rem 0;
}
.home-header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.home-header .logo {
    margin-right: auto;
}
.home-header .logo img {
    filter: brightness(0) saturate(100%);
    height: 85px;
}
.home-header .nav {
    margin-left: 2rem;
}
.home-header .nav-list {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}
.home-header .nav-list a {
    color: #333 !important;
    font-weight: 400;
}
.home-header .nav-list a::after {
    background-color: var(--clr-secondary);
}
.home-header .nav-list a:hover::after,
.home-header .nav-list a.active::after {
    width: 100%;
}
.home-header .nav-list li {
    display: flex;
    align-items: center;
}
.home-header .nav-list .btn {
    min-height: 40px;
    padding: 0.55rem 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #333 !important;
    background-color: var(--clr-button) !important;
    border-color: transparent !important;
}
.home-header .nav-list .btn:hover {
    background-color: #333 !important;
    color: #fff !important;
}
.home-header .nav-list .btn::after {
    display: none;
}
.home-header .btn {
    line-height: 1.2;
}

/* Active solid state via JS */
.header.scrolled {
    padding: 1rem 0;
    background-color: rgba(51, 51, 51, 0.4); /* optional scrolled state backg, leaving transparent with dark tint */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Swapping colours on scroll */
.header.scrolled .logo-name,
.header.scrolled .nav-list a,
.header.scrolled .phone-number {
    color: var(--clr-text);
}
.header.scrolled .phone-icon-wrapper,
.header.scrolled .icon-btn {
    background: rgba(0,0,0,0.05);
    border-color: rgba(0,0,0,0.1);
    color: var(--clr-text);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-radius: var(--radius);
}
.logo img {
    height: 120px;
    max-width: 100%;
    transition: var(--transition);
}
.header.scrolled .logo img {
    height: 85px;
}
.logo-name {
    display: none; /* Removed logo name */
}

.nav {
    display: none; 
}

/* Phone & Right Side */
.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Hamburger */
.hamburger {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 3px;
    position: relative;
    width: 44px;
    height: 44px;
    transition: var(--transition);
    color: #333333;
}
.hamburger.active {
    background: rgba(255,255,255,0.9) !important;
    color: #000 !important;
    z-index: 300;
}
.hamburger i { font-size: 14px; color: #333333; }

@media (min-width: 1100px) {
    .hamburger { display: none; }
    .nav { display: block; }

    .nav-list {
        display: flex;
        gap: 2rem;
        align-items: center;
    }

    .nav-list a {
        font-weight: 400;
        color: #fff;
        font-size: 0.95rem;
        position: relative;
        padding-bottom: 3px;
        display: flex;
        align-items: center;
        gap: 0.4rem;
    }

    .nav-list a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: #CAB2A3;
        transition: width 0.3s ease;
    }

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

    .nav-list a i { font-size: 0.7rem; opacity: 0.7; }

    /* Dropdown */
    .dropdown { position: relative; }
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--clr-bg);
        border: 1px solid rgba(0,0,0,0.05);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border-radius: var(--radius);
        padding: 1rem 0;
        min-width: 220px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: var(--transition);
    }
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .dropdown-menu li a {
        display: block;
        padding: 0.6rem 1.5rem;
        color: var(--clr-text);
        font-weight: 400;
    }
    .dropdown-menu li a:hover {
        background: var(--clr-bg-light);
        color: var(--clr-secondary);
        text-decoration: underline;
        text-decoration-color: #CAB2A3;
        text-underline-offset: 3px;
    }
    .dropdown-menu li a::after { display: none; }
}

/* Mobile Menu Active State */
.nav.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 2rem 0;
    box-shadow: 0 10px 10px rgba(0,0,0,0.05);
}
.nav.active .nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
.nav.active .nav-list a {
    color: var(--clr-text);
}

/* Mobile dropdown: collapsed by default, expands on click */
.nav.active .dropdown-menu {
    display: none;
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #f9f9f9;
    border-radius: 8px;
    padding: 0.4rem 0;
    margin-top: 0.5rem;
    min-width: 180px;
}
.nav.active .dropdown.open .dropdown-menu {
    display: block;
}
.nav.active .dropdown-menu li a {
    padding: 0.5rem 1.2rem;
    color: var(--clr-text);
}

/* =========================================================
   HERO SECTION (Recreated Perfectly)
   ========================================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end; /* Align content to bottom */
    padding-bottom: 5vh;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; /* Adjust based on image focus */
}

/* Semi-transparent dark overlay to make white text pop completely */
.hero-gradient-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(51,51,51,0.45) 0%, rgba(51,51,51,0.15) 50%, rgba(51,51,51,0.3) 100%);
}

/* Additional flat color tint with #333333 for better text readability */
.hero-color-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(51, 51, 51, 0.30);
    pointer-events: none;
}

.hero-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    z-index: 2;
    padding-top: 30vh;
    padding-bottom: 15vh;
    max-width: 100%;
}

.hero-content {
    flex: 1;
    color: #fff;
}

.hero-badge {
    display: block;
    font-family: var(--ff-body);
    font-weight: 500;
    font-size: clamp(0.65rem, 1vw, 0.78rem);
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.7rem;
    line-height: 1;
    white-space: nowrap;
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    background-color: var(--clr-button);
    border-radius: 50%;
    display: inline-block;
}

.section-heading {
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}
.section-heading .h2-styled {
    font-family: var(--ff-body);
    font-weight: 500;
    font-size: clamp(0.65rem, 1vw, 0.78rem);
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #CAB2A3;
    margin-bottom: 0.7rem;
    line-height: 1;
    display: block;
}
.section-heading .h3-styled {
    font-family: var(--ff-serif);
    font-weight: 500;
    font-size: clamp(1.9rem, 3.6vw, 2.6rem);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-text);
    line-height: 1.2;
    margin: 0;
    position: relative;
    display: inline-block;
}


.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem); 
    text-transform: uppercase;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    font-weight: 500;
    max-width: 800px;
}

.hero-desc {
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    color: rgba(255,255,255,0.9);
    max-width: 500px;
    margin-bottom: 2.5rem;
}

.hero-btn-arrow {
    background: var(--clr-button);
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: none;
    font-size: 0.8rem;
    margin-left: 10px;
    color: #fff;
    transition: var(--transition);
}

/* Hero Social Proof - bubbles + text */
.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-bubbles {
    display: flex;
}

.hero-bubbles img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    margin-left: -14px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    position: relative;
}
.hero-bubbles img:first-child { margin-left: 0; z-index: 3; }
.hero-bubbles img:nth-child(2) { z-index: 2; }
.hero-bubbles img:nth-child(3) { z-index: 1; }

.hero-social-text {
    color: rgba(255,255,255,0.9);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.3px;
}


.scroll-down-wrapper { display: none; }

/* Hero Mini Testimonial */
.hero-mini-testimonial {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    max-width: 450px;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1rem 1.2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
    margin-top: 2rem;
}
.testimonial-avatar-mini {
    flex-shrink: 0;
}
.testimonial-avatar-mini img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
}
.testimonial-content-mini p {
    font-size: 0.85rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 0.4rem;
    color: #333;
}
.testimonial-author-mini {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--clr-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =========================================================
   HERO V2 - Light variant with carousel
   ========================================================= */
.hero-v2 {
    position: relative;
    background-color: #CAB2A3;
    background-image: url('../Obr%C3%A1zky/Design/pozadif.jpg');
    background-size: cover;
    background-position: center;
    min-height: 80vh; /* Reduced height from bottom */
    overflow: hidden;
}

/* V2 Header bar */
.hero-v2-header {
    padding: 1.2rem 0;
    background: rgba(51, 51, 51, 0.04);
    border-bottom: 1px solid rgba(51,51,51,0.08);
}
.hero-v2-header .nav-list a {
    color: #333333 !important;
    font-weight: 600;
}
.hero-v2-header .nav-list a::after {
    background-color: #CAB2A3;
}
.hero-v2-header .nav { display: none; }
@media (min-width: 1100px) {
    .hero-v2-header .nav { display: block; }
}
.hero-v2-header .dropdown-menu li a {
    color: #555 !important;
}

/* V2 Layout */
.hero-v2-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding-top: 10rem;
    padding-bottom: 8rem;
}
@media (min-width: 992px) {
    .hero-v2-container {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
    }
}

/* V2 Text column */
.hero-v2-text {
    flex: 1;
    min-width: 0;
}
.hero-v2-badge {
    color: rgba(255, 255, 255, 0.6) !important;
}
.hero-v2-title {
    color: #333333 !important;
    font-size: clamp(1.2rem, 2.2vw, 1.7rem) !important; /* Synced with Homepage */
}
.hero-v2-desc {
    color: #333333 !important;
    font-size: clamp(0.85rem, 1vw, 0.95rem) !important; /* Synced with Homepage */
}

/* V2 Buttons */
.btn-v2-primary {
    display: inline-flex; /* Changed to flex for arrow alignment */
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-pill);
    font-weight: 500;
    font-size: 0.95rem;
    background: #fff;
    color: #333333;
    border: 2px solid #fff;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.btn-v2-primary:hover {
    background: #333333;
    border-color: #333333;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-v2-outline {
    display: inline-flex;
    align-items: center;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-pill);
    font-weight: 500;
    font-size: 0.95rem;
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.6);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-v2-outline:hover {
    border-color: #CAB2A3;
    color: #fff;
    transform: translateY(-2px);
}

/* Arrow circle in v2 outline button */
.arrow-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    margin-left: 8px;
    flex-shrink: 0;
}
.arrow-circle i {
    font-size: 0.75rem;
    color: #CAB2A3;
}

/* V2 Social proof override */
.hero-v2-social .hero-bubbles img {
    border-color: rgba(255,255,255,0.7);
}

/* V2 Carousel */
.hero-v2-carousel-wrap {
    flex: 1;
    min-width: 0;
    max-width: 550px;
    perspective: 1200px;
}

.hero-v2-swiper {
    overflow: visible !important;
    padding: 2rem 0;
}

.hero-v2-swiper .swiper-slide {
    width: 320px;
    transition: transform 0.5s ease, opacity 0.5s ease;
    transform-origin: center center;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.hero-v2-swiper .swiper-slide img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

/* Side slides rotated */
.hero-v2-swiper .swiper-slide-prev {
    transform: rotateY(15deg) scale(0.88);
    opacity: 0.7;
}
.hero-v2-swiper .swiper-slide-next {
    transform: rotateY(-15deg) scale(0.88);
    opacity: 0.7;
}
/* Center slide straight */
.hero-v2-swiper .swiper-slide-active {
    transform: rotateY(0deg) scale(1);
    opacity: 1;
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}
/* Further slides hidden */
.hero-v2-swiper .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-prev):not(.swiper-slide-next) {
    opacity: 0;
    transform: scale(0.8);
}

@media (max-width: 991px) {
    .hero-v2-carousel-wrap {
        max-width: 100%;
    }
    .hero-v2-swiper .swiper-slide {
        width: 200px;
    }
    .hero-v2-swiper .swiper-slide img {
        height: 280px;
    }
}

/* =========================================================
   SERVICES
   ========================================================= */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 450px;
    transition: var(--transition);
    background-size: cover;
    background-position: center;
    border-radius: var(--radius);
    padding: 1rem;
    overflow: hidden;
    position: relative;
    border: 5px solid #ffffff;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(51, 51, 51, 0.65); /* Even darker tint */
    pointer-events: none;
    z-index: 0;
}

.service-card .card-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.section-bg-title {
    position: absolute;
    font-size: clamp(5rem, 15vw, 15rem);
    font-weight: 800;
    color: var(--clr-secondary);
    opacity: 0.05;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    white-space: nowrap;
    pointer-events: none;
    line-height: 1;
    text-transform: uppercase;
}

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

.service-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem !important;
    text-transform: uppercase;
    color: #fff !important;
}

.service-card-text {
    flex-grow: 1;
    color: rgba(255,255,255,0.9) !important;
}

.service-btn {
    margin-top: auto;
    align-self: flex-start;
    font-size: 0.85rem;
    padding: 0.5rem 1.2rem;
}

/* =========================================================
   ABOUT SECTION
   ========================================================= */
.about-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: stretch; /* Enlarge to fill height */
}

@media (min-width: 992px) {
    .about-container {
        grid-template-columns: 1.1fr 0.9fr; /* Reduced photo by approx 1/4 */
    }
}
.about-text-col p, .about-wedding-text p {
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}
.img-collage {
    position: relative;
    height: 100%;
    min-height: 500px; /* Reduced height */
    width: 100%;
}

.collage-main {
    position: absolute;
    top: 0; left: 0;
    width: 75%;
    height: 350px;
    object-fit: cover;
    z-index: 1;
    border-radius: var(--radius);
}

.collage-sub1 {
    position: absolute;
    top: 220px; right: 0;
    width: 55%;
    height: 260px;
    object-fit: cover;
    z-index: 2;
    border-radius: var(--radius);
    border: 5px solid var(--clr-bg);
}

.collage-sub2 {
    position: absolute;
    top: 40px; right: -5%;
    width: 40%;
    height: 180px;
    object-fit: cover;
    z-index: 3;
    border-radius: var(--radius);
    border: 5px solid var(--clr-bg);
}

.stats-row {
    display: flex;
    gap: 0;
    margin: 2rem 0;
    flex-wrap: wrap;
    background: transparent;
    border: none;
    padding: 0;
    border-radius: 0;
    justify-content: space-between;
    text-align: center;
    box-shadow: none;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
    padding: 1rem;
}

.stat-item:not(:last-child) {
    border-right: 1px solid rgba(0,0,0,0.1);
}

.stat-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--clr-secondary);
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--clr-text-light);
    margin-top: 5px;
}

/* Instagram Swiper */
.instagram-swiper {
    padding-top: 1rem;
    padding-bottom: 3rem; 
    width: 100%;
}

.instagram-swiper .swiper-slide {
    width: auto;
}

.instagram-swiper .swiper-slide img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius);
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
    background-color: #CAB2A3;
    background-image: url('../Obr%C3%A1zky/Design/pozadif.jpg');
    background-size: cover;
    background-position: center;
    color: #333333;
    padding: 4rem 0 2rem;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    border-bottom: 1px solid rgba(51,51,51,0.2);
    padding-bottom: 3rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .brand-col {
        margin-top: -15px;
    }
}

@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 2fr;
    }
    .brand-col {
        margin-top: -25px;
    }
}

.footer .h4 {
    color: #333333;
    margin-bottom: 1.5rem;
}

.footer-logo {
    filter: none;
    height: 120px;
    margin-bottom: 0;
}

.footer-contact-details p {
    margin-bottom: 0.5rem;
    color: #333333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-details .contact-icon {
    color: #333333;
}

.highlight-socials a {
    background: #fff !important;
    color: #333333 !important;
}

.highlight-socials a:hover {
    background: #333333 !important;
    color: #fff !important;
}

.footer ul li {
    margin-bottom: 0.8rem;
}

.footer ul li a {
    color: rgba(51,51,51,0.8);
}

.footer ul li a:hover {
    color: #000000;
    text-decoration: underline;
    text-decoration-color: #000000;
    text-underline-offset: 3px;
    padding-left: 0; /* No shift on hover */
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    color: #333333;
}

.social-links a:hover {
    background: #333333;
    color: #fff;
    transform: translateY(-3px);
}

.footer p { color: #333333; }
.company-details { font-size: 0.85rem; margin-top: 1rem; }
.footer-bottom { text-align: center; font-size: 0.9rem; color: rgba(51,51,51,0.6); }

/* Swiper pagination dots */
.swiper-pagination {
    position: static !important;
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--clr-secondary);
    opacity: 0.4;
    border-radius: 50%;
    transition: var(--transition);
    cursor: pointer;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--clr-secondary);
    width: 24px;
    border-radius: 4px;
}

/* =========================================================
   ANIMATIONS & EFFECTS
   ========================================================= */
.slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 1s ease-out;
}
.fade-in.visible {
    opacity: 1;
}

/* Cookie */
.cookie-banner {
    position: fixed !important;
    bottom: 24px !important;
    left: 24px !important;
    right: 24px !important;
    max-width: 400px !important;
    z-index: 9999 !important;
    padding: 1.6rem !important;
    background: #ffffff !important;
    border-radius: 16px !important;
    border: 1.5px solid rgba(202, 178, 163, 0.35) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 4px 20px rgba(176, 139, 122, 0.15) !important;
    display: flex;
    flex-direction: column !important;
    gap: 1.2rem !important;
}
@media (min-width: 768px) {
    .cookie-banner {
        right: auto;
    }
}
.cookie-text strong {
    font-family: var(--ff-serif);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #333333;
    display: block;
    margin-bottom: 0.45rem;
}
.cookie-text p {
    font-size: 0.82rem;
    color: #555555;
    margin: 0;
    line-height: 1.6;
}
.cookie-text a {
    color: #CAB2A3;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.cookie-text a:hover {
    color: #a8917f;
}
.cookie-buttons {
    display: flex;
    gap: 0.6rem;
}
.cookie-btn {
    flex: 1;
    padding: 0.68rem 1rem;
    border-radius: var(--radius-pill);
    font-family: var(--ff-body);
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
    letter-spacing: 0.2px;
    border: 1.5px solid #CAB2A3;
}
.cookie-btn-primary {
    background: #CAB2A3;
    color: #fff;
    border-color: #CAB2A3;
}
.cookie-btn-primary:hover {
    background: #b89e8e;
    border-color: #b89e8e;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}
.cookie-btn-outline {
    background: transparent;
    color: #CAB2A3;
}
.cookie-btn-outline:hover {
    background: rgba(202, 178, 163, 0.1);
    transform: translateY(-1px);
}
.instagram-icon-wrapper { 
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(204, 165, 102, 0.25);
    margin-bottom: 1rem;
}
.instagram-icon-wrapper i {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.8rem;
}


/* =========================================================
   SVATEBNÄ‚â€žĂ˘â‚¬ĹˇĂ„Ä…Ă‚Â¤ LÄ‚â€žĂ˘â‚¬ĹˇĂ„Ä…Ă‚Â¤Ă„â€šĂ˘â‚¬ĹľĂ„Ä…ÄąË‡ENÄ‚â€žĂ˘â‚¬ĹˇĂ„Ä…Ă‚Â¤ PAGE Ă„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚ËĂ˘â€šÂ¬Äąâ€ş HERO WEDDING PHOTO (edge-to-edge)
   ========================================================= */
.hero-wedding {
    position: relative;
    overflow: hidden;
}
@media (min-width: 992px) {
    .hero-wedding .hero-v2-container {
        min-height: calc(100vh - 80px);
        display: flex;
        align-items: center;
    }
}



/* Hero Testimonial Overlay */
.hero-testimonial {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    padding: 1.5rem 2rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--radius);
    color: #fff;
    z-index: 2;
}
.hero-testimonial .quote-icon {
    color: rgba(255,255,255,0.6);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    display: block;
}
.hero-testimonial p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    color: #fff;
}
.hero-testimonial cite {
    font-style: normal;
    font-weight: 600;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
}
@media (max-width: 991px) {
    .hero-testimonial {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        padding: 1rem 1.2rem;
    }
    .hero-testimonial p { font-size: 0.9rem; }
}

/* =========================================================
   SVATEBNÄ‚â€žĂ˘â‚¬ĹˇĂ„Ä…Ă‚Â¤ LÄ‚â€žĂ˘â‚¬ĹˇĂ„Ä…Ă‚Â¤Ă„â€šĂ˘â‚¬ĹľĂ„Ä…ÄąË‡ENÄ‚â€žĂ˘â‚¬ĹˇĂ„Ä…Ă‚Â¤ PAGE Ă„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚ËĂ˘â€šÂ¬Äąâ€ş PAIN POINTS
   ========================================================= */
.pain-points-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}
@media (min-width: 600px) {
    .pain-points-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 900px) {
    .pain-points-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pain-point-card {
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
}
.pain-point-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.pain-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(202, 178, 163, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--clr-secondary);
    font-size: 1.2rem;
}
.pain-point-card p {
    font-style: italic;
    color: var(--clr-text);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* =========================================================
   SVATEBNÄ‚â€žĂ˘â‚¬ĹˇĂ„Ä…Ă‚Â¤ Ă„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚ËĂ˘â€šÂ¬Äąâ€ş SOLUTION SECTION V2 (Centered benefit cards)
   ========================================================= */
.solution-benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}
@media (min-width: 600px) {
    .solution-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 992px) {
    .solution-benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.solution-benefit-card {
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
}
.solution-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.solution-benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(202, 178, 163, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    color: var(--clr-secondary);
    font-size: 1.4rem;
}
.solution-benefit-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--clr-primary);
    margin-bottom: 0.6rem;
    line-height: 1.2;
}
.solution-benefit-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--clr-text-light);
}

/* =========================================================
   SVATEBNÄ‚â€žĂ˘â‚¬ĹˇĂ„Ä…Ă‚Â¤ Ă„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚ËĂ˘â€šÂ¬Äąâ€ş STEPS SECTION (with elegant handwritten arrows)
   ========================================================= */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}
.step-arrow {
    display: none;
}
@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr auto 1fr auto 1fr;
        gap: 1rem;
    }
    .step-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
.step-arrow-text {
    font-family: 'WindSong', cursive;
    font-size: 2.5rem;
    color: var(--clr-secondary);
    opacity: 0.5;
    line-height: 1;
}

.step-card {
    text-align: center;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
}
.step-bg-icon {
    position: absolute;
    bottom: 1rem;
    right: 1.5rem;
    font-size: 7rem;
    color: var(--clr-secondary);
    opacity: 0.07;
    z-index: 0;
    pointer-events: none;
    line-height: 1;
}
.step-card > *:not(.step-bg-icon) {
    position: relative;
    z-index: 1;
}
.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--clr-secondary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0 auto 1.5rem;
}
.step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-primary);
    margin-bottom: 1rem;
}
.step-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* =========================================================
   SVATEBNÄ‚â€žĂ˘â‚¬ĹˇĂ„Ä…Ă‚Â¤ Ă„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚ËĂ˘â€šÂ¬Äąâ€ş BENTO GALLERY
   ========================================================= */
.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}
.gallery-header-left .h2-styled {
    margin-bottom: 0;
}
.gallery-header-right .h3-styled {
    margin-bottom: 0;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: var(--clr-text-light);
}

.bento-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
}
@media (min-width: 768px) {
    .bento-gallery {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 1rem;
        height: 600px;
    }
}

.bento-item {
    display: block;
    overflow: hidden;
    border-radius: var(--radius);
    position: relative;
    cursor: pointer;
    border: 5px solid #ffffff; /* Editorial white border matching homepage cards */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}
.bento-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.bento-item:hover img {
    transform: scale(1.05);
}

.bento-large {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
}
.bento-medium-1 { grid-row: 1; grid-column: 2 / 4; }
.bento-medium-2 { grid-row: 1; grid-column: 4; }
.bento-small-1 { grid-row: 2; grid-column: 2; }
.bento-small-2,
.bento-small-3 { display: none; }

@media (min-width: 768px) {
    .bento-small-2 { display: block; grid-row: 2; grid-column: 3; }
    .bento-small-3 { display: block; grid-row: 2; grid-column: 4; }
}

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.92);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    cursor: zoom-out;
}
.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10001;
    line-height: 1;
    transition: var(--transition);
}
.lightbox-close:hover {
    color: var(--clr-secondary);
    transform: scale(1.2);
}
.lightbox-img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* =========================================================
   SVATEBNÄ‚â€žĂ˘â‚¬ĹˇĂ„Ä…Ă‚Â¤ Ă„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚ËĂ˘â€šÂ¬Äąâ€ş PRICING
   ========================================================= */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pricing-card {
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
}
.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.pricing-badge {
    display: inline-block;
    background: rgba(202, 178, 163, 0.15);
    color: var(--clr-secondary);
    padding: 0.3rem 1rem;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}
.pricing-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-primary);
    margin-bottom: 1rem;
}
.pricing-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--clr-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    text-align: left;
}
.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin-bottom: 0.8rem;
    color: var(--clr-text);
    font-size: 0.95rem;
    line-height: 1.7;
}
.pricing-features li i {
    color: var(--clr-secondary);
    margin-top: 4px;
    flex-shrink: 0;
}
.pricing-featured {
    border: 2px solid var(--clr-secondary);
    position: relative;
}

.pricelist-accordion-wrap {
    max-width: 800px;
    margin: 3rem auto 0;
}
.pricelist-accordion-toggle {
    width: 100%;
    background: var(--clr-bg-light);
    border: 1px solid rgba(202, 178, 163, 0.3);
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-primary);
    border-radius: var(--radius);
    transition: var(--transition);
}
.pricelist-accordion-toggle:hover {
    background: #fff;
    border-color: var(--clr-secondary);
}
.pricelist-accordion-toggle i {
    font-size: 0.9rem;
    transition: transform 0.4s ease;
    color: var(--clr-secondary);
}
.pricelist-accordion-toggle.active i {
    transform: rotate(180deg);
}
.pricelist-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}
.pricelist-accordion-content .full-pricelist {
    margin-top: 1rem;
}
.pricelist-table { background: var(--clr-bg-light); border-radius: var(--radius); padding: 2rem; }
.pricelist-group { margin-bottom: 1.5rem; }
.pricelist-group:last-child { margin-bottom: 0; }
.pricelist-group-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1px;
    color: var(--clr-secondary);
    margin-bottom: 0.8rem; padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(202, 178, 163, 0.3);
}
.pricelist-group-title small { font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--clr-text-light); font-size: 0.8rem; }
.pricelist-row { display: flex; justify-content: space-between; align-items: center; padding: 0.6rem 0; border-bottom: 1px solid rgba(0,0,0,0.05); color: var(--clr-text); font-size: 0.95rem; gap: 1rem; }
.pricelist-row:last-child { border-bottom: none; }
.pricelist-price { font-weight: 600; color: var(--clr-primary); white-space: nowrap; }

/* =========================================================
   SVATEBNÄ‚â€žĂ˘â‚¬ĹˇĂ„Ä…Ă‚Â¤ Ă„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚ËĂ˘â€šÂ¬Äąâ€ş ABOUT / MEDAILONEK
   ========================================================= */
.about-wedding-layout { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: stretch; }
@media (min-width: 992px) { .about-wedding-layout { grid-template-columns: 1.1fr 0.9fr; } }
.about-portrait { 
    width: 100%; 
    height: 100%; 
    min-height: 500px; /* Reduced height */
    object-fit: cover; 
    border-radius: 20px;
}
.google-reviews-inline { margin-top: 2rem; }

/* Brands Ă„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚ËĂ˘â€šÂ¬Äąâ€ş Full Width Logo Marquee */
.brands-fullwidth { margin-top: 3rem; padding: 2rem 0; border-top: 1px solid rgba(202, 178, 163, 0.2); }
.brands-fullwidth .brands-label { font-weight: 600; color: var(--clr-primary); margin-bottom: 1.5rem; }
.brands-marquee-wrap { overflow: hidden; width: 100%; }
.brands-marquee {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.brands-marquee-track {
    display: flex;
    gap: 3rem;
    animation: marquee-scroll 30s linear infinite;
    width: max-content;
}
.brand-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: var(--transition);
}

/* Inline Brands Section */
.brands-inline {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(202, 178, 163, 0.2);
}
.brands-inline .brands-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.brands-inline .brands-marquee-track {
    animation: none; /* Removed animation */
    display: flex;
    gap: 3rem;
    width: auto;
}
.brands-inline .brands-marquee {
    mask-image: none;
    -webkit-mask-image: none;
    overflow: visible;
}
.brands-inline .brand-logo {
    height: 32px;
}
.brand-logo:hover { opacity: 1; filter: grayscale(0%); }
@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =========================================================
   SVATEBNÄ‚â€žĂ˘â‚¬ĹˇĂ„Ä…Ă‚Â¤ Ă„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚ËĂ˘â€šÂ¬Äąâ€ş CONTACT FORM
   ========================================================= */
.contact-layout { display: grid; grid-template-columns: 1fr; gap: 3rem; max-width: 1000px; margin: 0 auto; }
@media (min-width: 768px) { .contact-layout { grid-template-columns: 1fr 1.5fr; } }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; }
.contact-detail .contact-icon { font-size: 1.2rem; color: var(--clr-secondary); margin-top: 4px; }
.contact-detail strong { display: block; margin-bottom: 0.2rem; color: var(--clr-primary); }
.contact-detail p { margin-bottom: 0; }
.contact-form { padding: 2.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.4rem; font-weight: 500; color: var(--clr-primary); font-size: 0.9rem; }
.form-group input, .form-group textarea { width: 100%; padding: 0.8rem 1rem; border: 1px solid rgba(0,0,0,0.1); border-radius: 8px; background: rgba(255,255,255,0.7); transition: var(--transition); font-size: 0.95rem; color: var(--clr-text); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--clr-secondary); box-shadow: 0 0 0 3px rgba(202, 178, 163, 0.15); }
.form-group textarea { resize: vertical; }
.contact-section .social-links a { background: #fff; color: #333333; }
.contact-section .social-links a:hover { background: #333333; color: #fff; }

/* =========================================================
   SVATEBNÄ‚â€žĂ˘â‚¬ĹˇĂ„Ä…Ă‚Â¤ Ă„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚ËĂ˘â€šÂ¬Äąâ€ş FAQ (Two-column layout)
   ========================================================= */
.faq-layout { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
@media (min-width: 992px) { .faq-layout { grid-template-columns: 1fr 2fr; } }
.faq-heading-col { position: sticky; top: 6rem; }
.faq-heading-col p { margin-bottom: 1.5rem; }
.faq-items-col .faq-list { max-width: 100%; }
.faq-list { display: flex; flex-direction: column; gap: 1rem; }
.faq-item { overflow: hidden; transition: var(--transition); }
.faq-question { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 1.2rem 1.5rem; background: transparent; border: none; cursor: pointer; text-align: left; font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 500; color: var(--clr-primary); gap: 1rem; }
.faq-question span { flex: 1; }
.faq-icon { color: var(--clr-secondary); font-size: 0.8rem; transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; padding: 0 1.5rem; }
.faq-item.active .faq-answer { max-height: 300px; padding: 0 1.5rem 1.5rem; }
.faq-answer p { margin-bottom: 0; color: var(--clr-text-light); line-height: 1.7; }

/* =========================================================
   CALENDAR SECTION
   ========================================================= */
.calendar-section .large-text { color: var(--clr-text-light); }

/* =========================================================
   HERO WEDDING Ä‚ËĂ˘â€šÂ¬Ă˘â‚¬Ĺ› Photo Below Header (full width)
   ========================================================= */
.hero-wedding-photo-below {
    position: relative;
    width: 100%;
    max-height: 600px;
    overflow: hidden;
}
.hero-wedding-photo-below img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}
@media (max-width: 767px) {
    .hero-wedding-photo-below img {
        height: 350px;
    }
}

/* =========================================================
   GALLERY Ä‚ËĂ˘â€šÂ¬Ă˘â‚¬Ĺ› Header Fonts
   ========================================================= */
.gallery-title-handwritten {
    font-family: 'WindSong', cursive;
    font-weight: 400;
    font-size: clamp(3rem, 6vw, 4.5rem);
    color: rgba(202, 178, 163, 0.65);
    margin-bottom: 0;
    line-height: 1;
}
.gallery-title-serif {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--clr-text-light);
    margin-bottom: 0;
}

/* =========================================================
   PRICING Ä‚ËĂ˘â€šÂ¬Ă˘â‚¬Ĺ› 3-column grid variant
   ========================================================= */
.pricing-grid-3 {
    max-width: 1100px;
}
@media (min-width: 992px) {
    .pricing-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =========================================================
   PRICELIST Ä‚ËĂ˘â€šÂ¬Ă˘â‚¬Ĺ› Note/footnote row
   ========================================================= */
.pricelist-note {
    border-bottom: none !important;
}
.pricelist-note span {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--clr-text-light);
    opacity: 0.8;
}

/* =========================================================
   PAIN POINTS Ä‚ËĂ˘â€šÂ¬Ă˘â‚¬Ĺ› Two-column layout (photo + cards)
   ========================================================= */
.pain-two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}
@media (min-width: 992px) {
    .pain-two-col {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}
.pain-col-photo {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}
.pain-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; /* Default for desktop */
    border-radius: var(--radius);
}
.pain-col-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* =========================================================
   HERO WEDDING PHOTO BELOW (under menu/text)
   ========================================================= */
.hero-wedding-photo-below {
    position: relative;
    width: 100%;
    overflow: hidden;
    max-height: 500px;
}
.hero-wedding-photo-below img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (min-width: 992px) {
    .hero-wedding-photo-below {
        max-height: 550px;
    }
}

/* =========================================================
   PAIN POINTS Ä‚ËĂ˘â€šÂ¬Ă˘â‚¬Ĺ› Two-column (photo left, cards right)
   ========================================================= */
.pain-two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}
@media (min-width: 992px) {
    .pain-two-col {
        grid-template-columns: 1fr 1.2fr;
        gap: 3rem;
    }
}
.pain-col-photo {
    position: relative;
}
.pain-photo {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
@media (max-width: 991px) {
    .pain-photo {
        max-height: 350px;
    }
}
.pain-col-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.pain-col-cards .pain-point-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    padding: 1.2rem 1.5rem;
}
.pain-col-cards .pain-icon {
    margin: 0;
    flex-shrink: 0;
}

/* =========================================================
   GALLERY TITLE FONTS
   ========================================================= */
.gallery-title-handwritten {
    font-family: 'Windsong', cursive;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--clr-primary);
    margin-bottom: 0;
    line-height: 1.2;
}
.gallery-title-serif {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 400;
    color: var(--clr-text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0;
}

/* FAQ heading col Ä‚ËĂ˘â€šÂ¬Ă˘â‚¬Ĺ› tighter spacing */
.faq-heading-col .section-heading {
    margin-bottom: 0.5rem;
}

/* =========================================================
   HERO PHOTO â€“ SMALL HALF (replaces third)
   ========================================================= */
.hero-wedding-photo-split-narrow {
    position: relative;
    overflow: hidden;
    max-height: 450px;
}
.hero-wedding-photo-split-narrow::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(51, 51, 51, 0.3);
    z-index: 1;
    pointer-events: none;
}
.hero-wedding-photo-split-narrow img.hero-main-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center; /* Ensures head is not cut off */
    display: block;
}
@media (min-width: 992px) {
    .hero-wedding .hero-v2-text {
        max-width: 40%; /* Reduced to increase space before photo */
    }
    .hero-wedding-photo-split-narrow {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 55%; /* Synced with Homepage photo size */
        max-height: none;
    }
    .hero-wedding-photo-split-narrow img.hero-main-photo {
        height: 100%;
    }
}

/* =========================================================
   HERO TESTIMONIAL V2 â€“ More engaging design
   ========================================================= */
.hero-testimonial-v2 {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 360px;
    padding: 1.2rem 1.5rem;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: var(--radius);
    color: #fff;
    z-index: 2;
}
.hero-testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 0.6rem;
}
.hero-testimonial-stars i {
    color: #f5c518;
    font-size: 0.75rem;
}
.hero-testimonial-v2 p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 0.8rem;
    color: #fff;
}
.hero-testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.hero-testimonial-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--clr-secondary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
    overflow: hidden;
}
.hero-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-testimonial-author strong {
    display: block;
    font-size: 0.8rem;
    color: #fff;
}
.hero-testimonial-author span {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
}

/* =========================================================
   PRICING V2 â€“ Premium card design
   ========================================================= */
.pricing-grid-v2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 850px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .pricing-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Kurzy Specific Split Layout */
.personal-course-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .personal-course-split {
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
    }
    .personal-course-photo {
        height: auto;
    }
    .personal-course-photo img {
        height: 100%;
        min-height: 500px;
    }
}

.personal-course-photo img {
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

@media (min-width: 768px) {
    .pricing-grid-3-col {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px;
    }
}
.pricing-card-v2 {
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.pricing-card-v2:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.12);
}
.pricing-card-bg-icon {
    position: absolute;
    bottom: 1rem;
    right: 1.5rem;
    font-size: 7rem;
    color: var(--clr-secondary);
    opacity: 0.06;
    z-index: 0;
    pointer-events: none;
    line-height: 1;
}
.pricing-card-v2 > *:not(.pricing-card-bg-icon):not(.pricing-ribbon) {
    position: relative;
    z-index: 1;
}
.pricing-card-header {
    margin-bottom: 0;
}
.pricing-badge-v2 {
    display: inline-block;
    background: rgba(202, 178, 163, 0.15);
    color: var(--clr-secondary);
    padding: 0.25rem 0.9rem;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
.pricing-title-v2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-primary);
    margin-bottom: 0.8rem;
    font-weight: 600;
}
.pricing-price-v2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--clr-secondary);
    line-height: 1;
    margin-bottom: 0;
}
.pricing-price-v2 span {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.7;
}
.pricing-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--clr-secondary), rgba(202,178,163,0.2));
    border-radius: 3px;
    margin: 1.5rem auto;
}
.pricing-features-v2 {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    text-align: left;
    flex-grow: 1;
}
.pricing-features-v2 li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin-bottom: 0.9rem;
    color: var(--clr-text);
    font-size: 0.95rem;
    line-height: 1.7;
}
.pricing-features-v2 li i {
    color: var(--clr-secondary);
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 0.9rem;
}
/* Featured card */
.pricing-card-featured {
    border: 2px solid var(--clr-secondary);
}
.pricing-ribbon {
    position: absolute;
    top: 25px;
    right: -55px;
    width: 200px;
    text-align: center;
    background: var(--clr-secondary);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.4rem 0;
    transform: rotate(45deg);
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* =========================================================
   CUSTOM GOOGLE REVIEWS WIDGET
   ========================================================= */
.google-review-premium-card {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background: linear-gradient(135deg, #CAB2A3, #Bca08d);
    border-radius: 20px;
    margin-top: 1.5rem;
    box-shadow: 0 10px 40px rgba(202, 178, 163, 0.3);
    color: #fff;
    font-family: 'Outfit', sans-serif;
}
.gr-premium-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}
.gr-premium-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.gr-premium-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
    letter-spacing: 0.5px;
}
.gr-premium-rating {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.gr-premium-rating strong {
    font-size: 1.2rem;
    line-height: 1;
}
.gr-premium-stars i {
    color: #fff;
    font-size: 0.8rem;
}
.gr-premium-quote-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 12px;
    position: relative;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,0.2);
}
.gr-premium-quote-icon {
    position: absolute;
    top: -10px;
    left: 1.5rem;
    font-size: 1.5rem;
    color: rgba(255,255,255,0.4);
    background: transparent;
}
.gr-premium-desc {
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #fff;
}
.gr-premium-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1rem;
}
.gr-premium-avatar {
    width: 30px;
    height: 30px;
    background: #fff;
    color: #CAB2A3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}
.gr-premium-author strong {
    font-size: 0.85rem;
    font-weight: 600;
}
.btn-gr-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    background: #fff;
    color: #CAB2A3;
    font-weight: 700;
    border-radius: 50px;
    text-align: center;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}
.btn-gr-premium:hover {
    background: #fdfaf7;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.custom-google-reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 992px) {
    .custom-google-reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Modern Testimonial Card V2 */
.testimonial-card-v2 {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    text-align: left;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.testimonial-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

.testimonial-card-v2 .quote-icon {
    color: #CAB2A3;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.testimonial-card-v2 .quote-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 2rem;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-card-v2 .author-info {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(0,0,0,0.08);
    padding-top: 1.5rem;
}

.testimonial-card-v2 .author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.2rem;
}

.testimonial-card-v2 .author-role {
    font-size: 0.75rem;
    color: #CAB2A3;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.google-review-white-card {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    color: #333333;
    font-family: 'Outfit', sans-serif;
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
}
.google-review-white-card .gr-premium-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}
.google-review-white-card .gr-premium-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.google-review-white-card .gr-premium-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
    color: #333333;
    letter-spacing: 0.5px;
}
.google-review-white-card .gr-premium-rating {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.google-review-white-card .gr-premium-rating strong {
    font-size: 1.2rem;
    line-height: 1;
}
.google-review-white-card .gr-premium-stars i {
    color: #fbbc04;
    font-size: 0.8rem;
}
.google-review-white-card .gr-premium-quote-box {
    background: #F9F9F9;
    padding: 1.5rem;
    border-radius: 12px;
    position: relative;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0,0,0,0.05);
    flex-grow: 1; 
}
.google-review-white-card .gr-premium-quote-icon {
    position: absolute;
    top: -10px;
    left: 1.5rem;
    font-size: 1.5rem;
    color: #CAB2A3;
    background: transparent;
}
.google-review-white-card .gr-premium-desc {
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #555555;
}
.google-review-white-card .gr-premium-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: auto;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 1rem;
}
.google-review-white-card .gr-premium-avatar {
    width: 30px;
    height: 30px;
    background: #CAB2A3;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

/* =========================================================
   CENÍK PAGE – Expandable Pricing Accordion Cards
   ========================================================= */
.cenik-accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cenik-card {
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}
.cenik-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.cenik-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    cursor: pointer;
    gap: 1rem;
    transition: background 0.3s ease;
    user-select: none;
}
.cenik-card-header:hover {
    background: rgba(202, 178, 163, 0.08);
}

.cenik-card-header-left {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex: 1;
    min-width: 0;
}

.cenik-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(202, 178, 163, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-secondary);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: var(--transition);
}
.cenik-card.active .cenik-card-icon {
    background: var(--clr-secondary);
    color: #fff;
}

.cenik-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.1rem, 1.8vw, 1.3rem); /* Slightly smaller for elegance */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--clr-primary);
    margin: 0;
    line-height: 1.3;
    font-weight: 600;
}

.cenik-card-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(202, 178, 163, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}
.cenik-card-toggle i {
    font-size: 0.75rem;
    color: var(--clr-secondary);
    transition: transform 0.4s ease;
}
.cenik-card.active .cenik-card-toggle {
    background: var(--clr-secondary);
}
.cenik-card.active .cenik-card-toggle i {
    color: #fff;
    transform: rotate(180deg);
}

.cenik-card-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.4s ease;
    padding: 0 2rem;
}
.cenik-card.active .cenik-card-body {
    max-height: 1200px;
    padding: 0 2rem 2rem;
}

.cenik-card-body-inner {
    border-top: 1px solid rgba(202, 178, 163, 0.2);
    padding-top: 1.5rem;
}

/* Pricelist rows inside accordion */
.cenik-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    color: var(--clr-text);
    font-size: 0.95rem;
    gap: 1rem;
    line-height: 1.7;
}
.cenik-row:last-child {
    border-bottom: none;
}
.cenik-price {
    font-weight: 600;
    color: var(--clr-primary);
    white-space: nowrap;
    flex-shrink: 0;
}

.cenik-note {
    border-bottom: none !important;
    padding-top: 0.8rem;
}
.cenik-note span {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--clr-text-light);
    opacity: 0.8;
    line-height: 1.7;
}

.cenik-subheading {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-secondary);
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid rgba(202, 178, 163, 0.25);
}
.cenik-subheading:first-child {
    margin-top: 0;
}

.cenik-includes {
    padding: 0;
    margin: 0.3rem 0 0.8rem;
    list-style: none;
}
.cenik-includes li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.4rem;
    color: var(--clr-text);
    font-size: 0.93rem;
    line-height: 1.7;
}
.cenik-includes li i {
    color: var(--clr-secondary);
    margin-top: 4px;
    flex-shrink: 0;
    font-size: 0.8rem;
}

/* Discount table inside accordion */
.cenik-discount-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0.5rem 0;
    font-size: 0.93rem;
}
.cenik-discount-table td {
    padding: 0.45rem 0.8rem;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    color: var(--clr-text);
}
.cenik-discount-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--clr-primary);
    white-space: nowrap;
}
.cenik-discount-table tr:last-child td {
    border-bottom: none;
}

/* Hero Ceník adjustments */
.hero-cenik .hero-v2-container {
    padding-top: 10rem;
    padding-bottom: 8rem;
}
@media (min-width: 992px) {
    .hero-cenik .hero-v2-container {
        padding-top: 10rem;
        padding-bottom: 8rem;
        min-height: auto;
    }
    .hero-cenik .hero-v2-text {
        max-width: 65%;
    }
}

/* Two-column accordion layout for desktop */
@media (min-width: 992px) {
    .cenik-accordion-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        max-width: 1100px;
        margin: 0 auto;
    }
}

/* Ceník page footer note */
.cenik-footer-notes {
    max-width: 900px;
    margin: 2rem auto 0;
    padding: 1.5rem 2rem;
    background: var(--clr-bg-light);
    border-radius: var(--radius);
    border-left: 3px solid var(--clr-secondary);
}
.cenik-footer-notes p {
    font-size: 0.88rem;
    font-style: italic;
    color: var(--clr-text-light);
    margin-bottom: 0.5rem;
    line-height: 1.7;
}
.cenik-footer-notes p:last-child {
    margin-bottom: 0;
}

/* Responsive tweaks */
@media (max-width: 600px) {
    .cenik-card-header {
        padding: 1.2rem 1.2rem;
    }
    .cenik-card-body {
        padding: 0 1.2rem;
    }
    .cenik-card.active .cenik-card-body {
        padding: 0 1.2rem 1.5rem;
    }
    .cenik-card-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .cenik-row {
        flex-direction: column;
        gap: 0.2rem;
        padding: 0.7rem 0;
    }
    .cenik-price {
        align-self: flex-end;
    }
}

/* =========================================================
   KONTAKT PAGE – Hero Info Details
   ========================================================= */
.hero-kontakt .hero-v2-container {
    padding-top: 10rem;
    padding-bottom: 8rem;
}
@media (min-width: 992px) {
    .hero-kontakt .hero-v2-container {
        padding-top: 10rem;
        padding-bottom: 8rem;
        min-height: auto;
    }
    .hero-kontakt .hero-v2-text {
        max-width: 65%;
    }
}

.kontakt-hero-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-top: 1.5rem;
}
@media (min-width: 600px) {
    .kontakt-hero-info {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 450px; /* Optional: limit width for better look in single col */
    }
}

.kontakt-hero-detail {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    transition: var(--transition);
}
.kontakt-hero-detail:hover {
    background: rgba(255, 255, 255, 0.55);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
.kontakt-hero-detail > i {
    font-size: 1.1rem;
    color: var(--clr-secondary);
    margin-top: 3px;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: rgba(202, 178, 163, 0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.kontakt-hero-detail strong {
    display: block;
    margin-bottom: 0.15rem;
    color: #333;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Outfit', sans-serif;
}
.kontakt-hero-detail p {
    margin-bottom: 0;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.7;
}
.kontakt-hero-detail a {
    color: #333;
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: rgba(202, 178, 163, 0.6);
    text-underline-offset: 3px;
}
.kontakt-hero-detail a:hover {
    color: var(--clr-secondary);
}
.kontakt-hero-detail small {
    font-size: 0.8rem;
    color: #555;
    opacity: 0.8;
}

/* Contact Social Links in Hero */
.kontakt-socials a {
    background: rgba(255, 255, 255, 0.4) !important;
    color: #333 !important;
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.kontakt-socials a:hover {
    background: #333333 !important;
    color: #fff !important;
    border-color: #333333;
}

/* =========================================================
   KONTAKT PAGE – Maps Section
   ========================================================= */
.kontakt-maps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .kontakt-maps-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.kontakt-map-card {
    overflow: hidden;
    transition: var(--transition);
}
.kontakt-map-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.kontakt-map-frame {
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius) var(--radius) 0 0;
}
.kontakt-map-frame iframe {
    display: block;
    border-radius: var(--radius) var(--radius) 0 0;
}

.kontakt-map-info {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 1.8rem;
}
.kontakt-map-info > i {
    font-size: 1.2rem;
    color: var(--clr-secondary);
    margin-top: 3px;
    flex-shrink: 0;
}
.kontakt-map-info strong {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--clr-primary);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.kontakt-map-info p {
    margin-bottom: 0;
    color: var(--clr-text);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Form select focus */
.contact-form select:focus {
    outline: none;
    border-color: var(--clr-secondary);
    box-shadow: 0 0 0 3px rgba(202, 178, 163, 0.15);
}

/* =========================================================
   HERO - Embedded Photo Layout (Homepage v3)
   ========================================================= */
.hero-photo {
    position: relative;
    background-color: var(--clr-bg-light);
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    padding: 0;
    overflow: visible; /* allow beige panel to overflow into next section */
}

/* Logo – absolute top-left */
.hero-photo-logo {
    position: absolute;
    top: 2rem;
    left: 2.5rem;
    z-index: 100;
    display: block;
}
.hero-photo-logo img {
    height: 120px;
    transition: var(--transition);
}

/* Hamburger – mobile only, top-right */
.hero-photo-hamburger {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 300;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    gap: 3px;
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.25);
    color: #333;
    transition: var(--transition);
}

/* Vertical navigation on right edge */
.hero-photo-nav {
    display: none;
}
@media (min-width: 1100px) {
    .hero-photo-hamburger {
        display: none;
    }
    .hero-photo-nav {
        position: fixed; /* Sticky on scroll */
        right: 0;
        top: 0;
        bottom: 0;
        width: 52px;
        background: #CAB2A3;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2000; /* Above everything */
        height: 100vh;
        overflow: visible;
    }
    .hero-photo-nav > ul {
        display: flex;
        flex-direction: column;
        gap: 2.2rem;
        align-items: center;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .hero-photo-nav > ul > li {
        position: relative;
    }
    .hero-photo-nav > ul > li > a {
        writing-mode: vertical-rl;
        text-orientation: mixed;
        font-family: 'Outfit', sans-serif;
        font-weight: 600;
        font-size: 0.75rem; /* Slightly smaller for density */
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: #333;
        transition: color 0.3s ease;
        display: flex;
        align-items: center;
        gap: 0.3rem;
        padding: 0.5rem 0;
    }
    .hero-photo-nav > ul > li > a:hover,
    .hero-photo-nav > ul > li > a.active {
        color: #fff;
    }
    .hero-photo-nav > ul > li > a i {
        font-size: 0.6rem;
        opacity: 0.7;
    }

    /* Highlighted Reservation Button in vertical nav */
    .btn-vertical-booking {
        background: #fff !important;
        padding: 1.2rem 0.5rem !important;
        border-radius: 30px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        color: var(--clr-secondary) !important;
    }
    .btn-vertical-booking:hover {
        background: #333 !important;
        color: #fff !important;
    }

    /* Dropdown for vertical nav */
    .hero-photo-nav .dropdown-menu {
        position: absolute;
        left: auto;
        right: calc(100% + 8px); /* open to the left of the nav */
        top: 50%;
        background: #fff;
        border: 1px solid rgba(0,0,0,0.05);
        box-shadow: 0 10px 30px rgba(0,0,0,0.12);
        border-radius: var(--radius);
        padding: 0.8rem 0;
        min-width: 200px;
        opacity: 0;
        visibility: hidden;
        transform: translate(0, -50%);
        transition: var(--transition);
        writing-mode: horizontal-tb;
        text-orientation: initial;
        z-index: 1000;
    }
    .hero-photo-nav .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translate(0, -50%);
    }
    .hero-photo-nav .dropdown-menu li a {
        display: block;
        padding: 0.5rem 1.2rem;
        color: #555;
        font-weight: 400;
        font-size: 0.9rem;
        writing-mode: horizontal-tb;
        text-transform: none;
        letter-spacing: 0;
    }
    .hero-photo-nav .dropdown-menu li a:hover {
        background: var(--clr-bg-light);
        color: var(--clr-secondary);
    }
}

/* The embedded photo "frame" - full screen */
.hero-photo-frame {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    min-height: 80vh; /* Reduced height from bottom */
    overflow: visible; /* allow dropdown to overlay photo */
    box-shadow: none;
    position: relative;
    z-index: 2;
}
@media (min-width: 992px) {
    .hero-photo-frame {
        flex-direction: row;
        min-height: 80vh;
        margin-right: 0;
        align-items: stretch;
    }
}

/* Beige text panel (left) */
.hero-photo-text {
    background-color: #CAB2A3;
    background-image: url('../Obr%C3%A1zky/Design/pozadif.jpg');
    background-size: cover;
    background-position: center;
    padding: 10rem 3rem; /* Increased top and bottom padding */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    flex: 1;
    min-width: 0;
}
@media (min-width: 992px) {
    .hero-photo-text {
        flex: 0 0 45%;
        padding: 10rem 4rem; /* Increased padding */
        min-height: 80vh;
        position: relative;
        z-index: 3;
    }
}

.hero-photo-text .hero-badge {
    color: rgba(255, 255, 255, 0.6);
}

.hero-photo-title {
    color: #333333 !important;
    font-size: clamp(1.2rem, 2.2vw, 1.7rem) !important;
    line-height: 1.2 !important;
    margin-bottom: 0.4rem !important;
    padding-top: 0;
}

.hero-photo-desc {
    color: #333333 !important;
    font-size: clamp(0.85rem, 1vw, 0.95rem);
    max-width: 380px;
    line-height: 1.7;
    margin-left: 0;
    margin-right: auto;
    margin-bottom: 0.8rem;
}

.hero-photo-buttons {
    margin-top: 0.5rem;
}
.hero-photo-buttons .btn {
    font-size: 0.85rem;
    padding: 0.7rem 1.8rem;
    border-width: 2px;
    background: #fff;
    border-color: #fff;
    color: #333;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.hero-photo-buttons .btn:hover {
    background: #333333;
    border-color: #333333;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Photo (right) */
.hero-photo-image {
    flex: 1;
    min-height: 350px;
    position: relative;
    overflow: hidden;
}
.hero-photo-image::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(51, 51, 51, 0.3);
    z-index: 1;
    pointer-events: none;
}
@media (min-width: 992px) {
    .hero-photo-image {
        flex: 0 0 55%;
    }
}
.hero-photo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center; /* Ensures head is not cut off */
    display: block;
}

/* =========================================================
   "Možná to znáte..." Section
   ========================================================= */
.mozna-to-znate {
    background-color: #ffffff;
    border-top: none;
    position: relative;
}

.mozna-to-znate-inner {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: flex-start;
}
@media (min-width: 992px) {
    .mozna-to-znate-inner {
        flex-direction: row;
        gap: 4rem;
        align-items: flex-start;
    }
}

/* Left - Heading */
.mozna-to-znate-heading {
    flex-shrink: 0;
    position: relative;
}
@media (min-width: 992px) {
    .mozna-to-znate-heading {
        flex: 0 0 35%;
        max-width: 35%;
    }
}

.mozna-to-znate-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem); /* Reduced for consistency */
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #333333;
    line-height: 1.2;
    margin-bottom: 0;
}

/* Right - Text */
.mozna-to-znate-text {
    flex: 1;
    min-width: 0;
}
.mozna-to-znate-text p {
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    line-height: 1.8;
    color: var(--clr-text);
    margin-bottom: 1rem;
}
.mozna-to-znate-text p:last-child {
    margin-bottom: 0;
}
.mozna-to-znate-text strong {
    color: #333333;
    font-weight: 600;
}

/* Mobile nav styles for hero-photo */
.hero-photo-nav.active {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    width: 100%;
    background: #fff;
    z-index: 200;
    padding: 5rem 2rem 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.hero-photo-nav.active > ul {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}
.hero-photo-nav.active > ul > li > a {
    writing-mode: horizontal-tb;
    text-orientation: initial;
    font-size: 1rem;
    color: #333;
}
.hero-photo-nav.active .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0.5rem 0 0 1rem;
    writing-mode: horizontal-tb;
}
@media (min-width: 1100px) {
    .hero-photo-nav.active {
        /* Reset to vertical on desktop even if JS adds active */
        display: flex;
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        left: auto;
        width: 52px;
        padding: 0;
        background: rgba(202, 178, 163, 0.45);
        box-shadow: none;
    }
}

/* =========================================================
   CTA BANNER (Full width background)
   ========================================================= */
.cta-banner-full {
    position: relative;
    background-image: url('../Obr%C3%A1zky/Kurzy/osobni_kurz_liceni_ceske_budejovice_veronica_visage%20(5).jpg');
    background-size: cover;
    background-position: center 20%;
    background-attachment: scroll;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 4rem 0; /* Equal padding top and bottom */
}

.cta-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.cta-banner-content-full {
    position: relative;
    z-index: 2;
    padding: 0 1.5rem; /* Removed vertical padding here */
}

.white-text {
    color: #ffffff !important;
}

.cta-banner-full .h2-styled {
    font-family: var(--ff-serif);
    font-weight: 500;
    font-size: clamp(1.9rem, 3.6vw, 2.6rem);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 0.7rem;
}

.cta-banner-full .cta-banner-desc {
    color: rgba(255, 255, 255, 0.95);
    font-family: var(--ff-body);
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .cta-banner-full {
        min-height: 400px;
        background-position: center;
    }
}

.cta-wedding {
    background-image: url('../Obr%C3%A1zky/Svatby/svatebni_liceni_ceske_budejovice_veronica_visage%20(8).jpg');
    background-position: center 30%;
}

.cta-plesy {
    background-image: url('../Obr%C3%A1zky/Plesy/maturitni_ples_plesove_liceni_ceske_budejovice_veronica_visage%20(2).jpg');
    background-position: center 30%;
}

.cta-oboci {
    background-image: url('../Obr%C3%A1zky/Oboci/uprava_oboci_veronica_visage_ceske_budejovice%20(3).jpg');
    background-position: center center;
}

.cta-kurzy {
    background-image: url('../Obr%C3%A1zky/Kurzy/osobni_kurz_liceni_ceske_budejovice_veronica_visage%20(6).jpg');
    background-position: center 20%;
}

.cta-cenik {
    background-image: url('../Obr%C3%A1zky/Plesy/maturitni_ples_plesove_liceni_ceske_budejovice_veronica_visage%20(7).jpg');
    background-position: center 40%;
}

.cta-kontakt {
    background-image: url('../Obr%C3%A1zky/Svatby/svatebni_liceni_ceske_budejovice_veronica_visage%20(4).jpg');
    background-position: center 30%;
}

/* =========================================================
   MOBILE-ONLY OPTIMIZATIONS (max-width: 991px)
   ========================================================= */
@media (max-width: 991px) {
    /* Mobile: allow wrapping for small uppercase badge */
    .hero-badge,
    .hero-v2-badge,
    .hero-photo-text .hero-badge {
        white-space: normal !important;
    }

    /* Task 1: Balanced Hero Padding (Accounting for absolute logo) */
    .hero-v2-container, 
    .hero-photo-text,
    .hero-cenik .hero-v2-container,
    .hero-kontakt .hero-v2-container {
        padding-top: 9.5rem !important;   /* Approx 5rem space after logo (2rem top + ~2.5rem logo) */
        padding-bottom: 5.5rem !important; /* Balanced bottom space */
    }

    /* Task 3 & 4: Homepage About and Problem Section Layout */
    .about-container {
        gap: 2rem !important; /* Reduced from 4rem to match mt-2 below */
    }

    .pain-two-col {
        display: flex !important;
        flex-direction: column !important;
    }
    .pain-col-photo {
        order: 2 !important;
        margin-top: 2rem;
        width: 100% !important;
    }
    .pain-photo {
        width: 100% !important;
        height: auto !important;
        min-height: 350px !important;
        max-width: none !important;
        object-position: center 15% !important; /* Move photo down to show the head/top */
    }
    .pain-col-cards {
        order: 1 !important;
    }

    /* Task 6: Remove Sticky effect from FAQ on mobile */
    .faq-heading-col {
        position: static !important;
    }

    /* Task 5: Convert Gallery into Carousel on Mobile (CSS Scroll Snap) */
    .bento-gallery {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 1.2rem !important;
        padding-top: 1rem !important;
        padding-bottom: 2rem !important;
        -webkit-overflow-scrolling: touch !important;
        height: auto !important;
        scrollbar-width: none; /* Hide scrollbar for cleaner look */
    }
    .bento-gallery::-webkit-scrollbar {
        display: none;
    }
    .bento-item {
        flex: 0 0 85% !important;
        scroll-snap-align: center !important;
        aspect-ratio: 4/5 !important;
        height: auto !important;
        grid-column: auto !important;
        grid-row: auto !important;
        border-width: 3px !important; /* Slimmer border on mobile */
    }
    .bento-small-2, .bento-small-3 {
        display: block !important;
    }

    /* Fix mobile alignment of Galerie and Ukázka mé práce */
    .gallery-header {
        align-items: center !important;
    }

    /* Allow second hero title to span edge to edge naturally without hard line breaks */
    .hero-title br, .hero-v2-title br {
        display: none;
    }

    /* Remove dark color overlays from hero photos on mobile */
    .hero-photo-image::after,
    .hero-wedding-photo-split-narrow::before {
        display: none;
    }
    .hero-gradient-overlay,
    .hero-color-overlay {
        display: none;
    }
}

/* =========================================================
   FULLCALENDAR STYLES
   ========================================================= */
.fc-daygrid-day {
  background-color: #eee; /* volné */
}



.fc-event {
  border-radius: 6px;
  font-size: 12px;
}
