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

        :root {
            --primary-white: #ffffff;
            --text-dark: #2c2c2c;
            --accent-gold: #d4a373;
            --light-gray: #f8f8f8;
            --medium-gray: #e0e0e0;
            --section-spacing: 60px;
            --section-spacing-bottom: 40px;
        }

        html {
            scroll-behavior: smooth;
        }

        /* Jemné scroll-margin pro anchory kvůli fixed navbar */
        [id] {
            scroll-margin-top: 80px;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            background: var(--primary-white);
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(0,0,0,0.1);
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        nav.scrolled {
            background: rgba(255, 255, 255, 1);
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            
        }
        nav.scrolled .nav-menu a {
            color: var(--text-dark);
        }

        nav.scrolled .logo {
            color: var(--text-dark);
        }

        nav.scrolled .menu-toggle span {
            background: var(--text-dark);
        }
        nav.scrolled .nav-menu a:hover {
        color: var(--accent-gold);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1.2rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Raleway', sans-serif;
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary-white);
            text-decoration: none;
            letter-spacing: 1px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--primary-white);
            font-size: 0.95rem;
            font-weight: 400;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-menu a:hover {
            color: var(--accent-gold);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .menu-toggle span {
            width: 25px;
            height: 2px;
            background: var(--text-dark);
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            position: relative;
        }

        .hero-content {
            max-width: 800px;
            padding: 2rem;
            animation: fadeInUp 1s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-family: 'Raleway', sans-serif;
            font-size: 3.5rem;
            font-weight: 300;
            margin-bottom: 1rem;
            letter-spacing: 3px;
            text-transform: uppercase;
        }

        .hero h1 span {
            font-weight: 700;
            display: block;
            margin-top: 0.5rem;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            font-weight: 300;
            line-height: 1.8;
        }

        .btn-primary {
            display: inline-block;
            padding: 1rem 3rem;
            background: var(--accent-gold);
            border-radius: 4px;
            color: white;
            text-decoration: none;
            font-weight: 500;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: 2px solid var(--accent-gold);
        }

        .btn-primary:hover {
            background: transparent;
            border-color: white;
        }

        .scroll-down {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 2rem;
            animation: bounce 2s infinite;
            cursor: pointer;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-10px);
            }
            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }

        /* About Section */
        .about-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 3rem 2rem 1rem 2rem;
            text-align: center;
        }

        .about-section h2 {
            font-family: 'Raleway', sans-serif;
            font-size: 2.5rem;
            font-weight: 400;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
        }

        .about-section p {
            font-size: 1.1rem;
            line-height: 1.9;
            max-width: 900px;
            margin: 0 auto 1rem;
            color: #555;
        }

        /* Services Section */
        .services {
            background: var(--light-gray);
            padding: 6rem 2rem;
        }

        .services-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
        }

        .service-card {
            background: white;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }

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

        .service-image {
            width: 100%;
            height: 400px;
            overflow: hidden;
            position: relative;
        }

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

        .service-card:hover .service-image img {
            transform: scale(1.1);
        }

        .service-content {
            padding: 2rem;
            text-align: center;
        }

        .service-content h3 {
            font-family: 'Raleway', sans-serif;
            font-size: 1.8rem;
            font-weight: 500;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .service-content p {
            font-size: 1rem;
            color: #666;
            line-height: 1.7;
        }

        /* Portfolio Preview */
        .portfolio-preview {
            padding: 6rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            font-family: 'Raleway', sans-serif;
            font-size: 2.5rem;
            font-weight: 400;
            text-align: center;
            margin-bottom: 3rem;
            color: var(--text-dark);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 1.5rem;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            height: 400px;
            cursor: pointer;
        }

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

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay i {
            color: white;
            font-size: 3rem;
        }

        /* Contact Section - sjednocené pro všechny stránky */
        .contact-section {
            background-color: #c8a97e;
            padding: var(--section-spacing) 20px;
            text-align: center;
            color: #fff;
            border-radius: 24px 24px 0 0;
        }

        .contact-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .contact-container h2 {
            font-family: 'Raleway', sans-serif;
            font-size: 2.5rem;
            font-weight: 400;
            margin-bottom: 1rem;
        }

        .contact-info {
            margin: 2rem 0;
            font-size: 1.1rem;
            line-height: 2;
        }

        .contact-info p {
            margin: 0.5rem 0;
        }

        .contact-info a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-info a:hover {
            color: var(--text-dark);
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-top: 2rem;
        }

        .btn-secondary {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: transparent;
            border-radius: 4px;
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: 2px solid var(--text-dark);
        }

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

        /* Footer - sjednocená výška a padding pro všechny stránky */
        footer {
            background: var(--text-dark);
            color: white;
            padding: 48px 20px 32px;
            text-align: center;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 1.5rem;
        }

        .social-links a {
            color: white;
            font-size: 1.5rem;
            transition: color 0.3s ease;
        }

        .social-links a:hover {
            color: var(--accent-gold);
        }

        .footer-text {
            font-size: 0.9rem;
            opacity: 0.7;
        }
        .single-pkg-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid #e8e4dc;
    border-radius: 8px;
    padding: 40px 36px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.single-pkg-card .pkg-features {
    text-align: left;
    display: inline-block;
}
        /* Responsive */
        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                flex-direction: column;
                background: white;
                width: 100%;
                padding: 2rem;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
                transition: left 0.3s ease;
            }

            .nav-menu.active {
                left: 0;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .services-container {
                grid-template-columns: 1fr;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .cta-buttons {
                flex-direction: column;
            }
        }

        /* Fade in animation for sections */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        /* Service Card Button */
        .btn-service {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            margin-top: 1.5rem;
            background: var(--accent-gold);
            color: var(--primary-white);
            text-decoration: none;
            border-radius: 4px;
            font-weight: 500;
            font-size: 0.85rem;
            transition: all 0.3s ease;
            border: 2px solid var(--accent-gold);
        }

        .btn-service:hover {
            background: transparent;
            color: var(--accent-gold);
            transform: translateY(-2px);
        }

            
        .btn-contact {
            display: inline-block;
            padding: 1rem 3rem;
            background: var(--accent-gold);
            border-radius: 4px;
            color: white;
            text-decoration: none;
            font-weight: 500;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: 2px solid var(--accent-gold);
        }

        .btn-contact:hover {
            background: transparent;
            color: var(--accent-gold);
            transform: translateY(-2px);
        }
       .service-card-link {
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .service-card-link .btn-service {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            margin-top: 1.5rem;
            background: var(--accent-gold);
            color: var(--primary-white);
            border-radius: 4px;
            font-weight: 500;
            font-size: 0.85rem;
            transition: all 0.3s ease;
            border: 2px solid var(--accent-gold);
        }

                /* Gallery Header */
        .gallery-header {
            padding: 7rem 2rem 4rem;
            text-align: center;
            background: var(--primary-white);
        }

        .gallery-header h1 {
            font-family: 'Raleway', sans-serif;
            font-size: 3rem;
            font-weight: 400;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .gallery-header p {
            font-size: 1.2rem;
            color: #666;
        }

        /* Wedding Gallery */
        .wedding-gallery {
            padding: 4rem 2rem 6rem;
            background: var(--primary-white);
        }

        .wedding-gallery-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
        }

        .wedding-card-link {
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .wedding-card {
            background: white;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

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

        .wedding-image {
            width: 100%;
            height: 400px;
            overflow: hidden;
            position: relative;
        }

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

        .wedding-card:hover .wedding-image img {
            transform: scale(1.1);
        }

        .wedding-content {
            padding: 1.5rem 2rem;
            text-align: center;
        }

        .wedding-content h3 {
            font-family: 'Raleway', sans-serif;
            font-size: 1.5rem;
            font-weight: 500;
            color: var(--text-dark);
        }

        /* Responsive for Gallery */
        @media (max-width: 1024px) {
            .wedding-gallery-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            .gallery-header {
                padding: 8rem 2rem 3rem;
            }
            
            .gallery-header h1 {
                font-size: 2rem;
            }
            
            .gallery-header p {
                font-size: 1rem;
            }
            
            .wedding-gallery-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .wedding-image {
                height: 300px;
            }
        }
        /* Gallery Page Navbar - always white */
            #navbar {
                background: white;
                box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            }

            #navbar .nav-menu a {
                color: var(--text-dark);
            }

            #navbar .logo {
                color: var(--text-dark);
            }

            #navbar .menu-toggle span {
                background: var(--text-dark);
            }

            #navbar .nav-menu a:hover {
                color: var(--accent-gold);
            }


            /* Carousel Section - sjednocený padding pro index i akce */
            .carousel-section {
                padding: var(--section-spacing) 0;
                background: #fff;
            }

            .carousel-viewport { width: 100%; position: relative; overflow: hidden; padding: 0 0 10px; cursor: grab; user-select: none; }
            .carousel-viewport.grabbing { cursor: grabbing; }
            .carousel-stage { position: relative; width: 100%; height: 620px; }
            .card { position: absolute; border-radius: 8px; overflow: hidden; transition: transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94), width 0.55s cubic-bezier(0.25,0.46,0.45,0.94), height 0.55s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.55s ease, opacity 0.55s ease; top: 50%; left: 50%; }
            .card img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; transition: filter 0.55s ease; }
            .card.state-center { width: 420px; height: 560px; transform: translate(-50%,-50%); z-index: 3; box-shadow: 0 16px 60px rgba(0,0,0,0.25); }
            .card.state-center img { filter: brightness(1); }
            .card.state-left, .card.state-right { width: 280px; height: 380px; z-index: 2; box-shadow: 0 6px 24px rgba(0,0,0,0.14); }
            .card.state-left img, .card.state-right img { filter: brightness(0.75) saturate(0.8); }
            .card.state-left  { transform: translate(calc(-50% - 340px), -50%); }
            .card.state-right { transform: translate(calc(-50% + 340px), -50%); }
            .card.state-far-left, .card.state-far-right { width: 220px; height: 300px; z-index: 1; opacity: 0; box-shadow: none; }
            .card.state-far-left  { transform: translate(calc(-50% - 560px), -50%); }
            .card.state-far-right { transform: translate(calc(-50% + 560px), -50%); }
            .carousel-dots { display: flex; gap: 8px; justify-content: center; margin-top: 8px; }
            .carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: #c8b89a; cursor: pointer; transition: background 0.3s, transform 0.3s; border: none; padding: 0; }
            .carousel-dot.active { background: #adb58d; transform: scale(1.3); }
            .carousel-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; background: rgba(255,255,255,0.9); border: none; width: 44px; height: 44px; border-radius: 50%; font-size: 18px; cursor: pointer; box-shadow: 0 2px 12px rgba(0,0,0,0.15); display: flex; align-items: center; justify-content: center; color: #3a3a3a; transition: box-shadow 0.2s; }
            .carousel-arrow:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
            .carousel-arrow-left  { left: 0; }
            .carousel-arrow-right { right: 0; }

            .carousel-section .carousel-cta {
                margin-top: 40px;
                text-align: center;
            }

             /* Photographer Section - sjednocená mezera pod karuselem */
            .photographer-section {
                background-color: #ede9e1;
                padding: var(--section-spacing) 30px;
                position: relative;
                border-radius: 60px 60px 60px 60px;
                margin-top: -40px;
            }

            .photographer-container {
                max-width: 1000px;
                margin: 0 auto;
                display: flex;
                align-items: center;
                gap: 60px;
            }

            .photographer-image {
                flex: 0 0 360px;
                border-radius: 12px;
                overflow: hidden;
                margin-left: -20px;
            }

            .photographer-image img {
                width: 100%;
                height: 480px;
                object-fit: cover;
                object-position: top;
                display: block;
            }

            .photographer-text {
                flex: 1;
            }

            .photographer-text p {
                font-size: 1.05rem;
                line-height: 1.85;
                color: #444;
                margin-bottom: 20px;
            }

            .photographer-text p:last-child {
                margin-bottom: 0;
            }

            @media (max-width: 768px) {
                .photographer-section {
                    border-radius: 30px 30px 0 0;
                    padding: 50px 24px;
                }

                .photographer-container {
                    flex-direction: column;
                    gap: 32px;
                }

                .photographer-image {
                    flex: none;
                    width: 100%;
                    margin-left: 0;
                }

                .photographer-image img {
                    height: 360px;
                }
            }
                .photographer-heading {
                    text-align: center;
                    font-family: 'Raleway', sans-serif;
                    font-size: 2.2rem;
                    font-weight: 400;
                    color: #333;
                    margin-bottom: 28px;
                }
                /* Packages Section - sjednocený padding pro index (carousel) i akce (single card) */
                .packages-section {
                    padding: var(--section-spacing) 20px var(--section-spacing-bottom);
                    background: #fff;
                    text-align: center;
                }

                .packages-section-single .single-pkg-card {
                    margin: 0 auto;
                }

                /* Packages Carousel */
                .pkg-viewport { width: 100%; position: relative; overflow: hidden; padding: 40px 0 40px; user-select: none; cursor: grab; }
                .pkg-viewport.grabbing { cursor: grabbing; }
                .pkg-stage { position: relative; width: 100%; height: 480px; }

                .pkg-card {
                    position: absolute; top: 50%; left: 50%;
                    background: #fff; border-radius: 8px; border: 1px solid #e8e4dc;
                    padding: 40px 36px; text-align: left;
                    transition: transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94),
                                width 0.55s cubic-bezier(0.25,0.46,0.45,0.94),
                                height 0.55s cubic-bezier(0.25,0.46,0.45,0.94),
                                box-shadow 0.55s ease, opacity 0.55s ease;
                    overflow: hidden;
                }

                .pkg-card.pkg-center {
                    width: 480px; height: 420px;
                    transform: translate(-50%, -50%);
                    z-index: 3; box-shadow: 0 16px 60px rgba(0,0,0,0.15);
                    opacity: 1;
                }
                .pkg-card.pkg-left {
                    width: 360px; height: 340px;
                    transform: translate(calc(-50% - 400px), -50%);
                    z-index: 2; box-shadow: 0 4px 20px rgba(0,0,0,0.08);
                    opacity: 0.7;
                }
                .pkg-card.pkg-right {
                    width: 360px; height: 340px;
                    transform: translate(calc(-50% + 400px), -50%);
                    z-index: 2; box-shadow: 0 4px 20px rgba(0,0,0,0.08);
                    opacity: 0.7;
                }
                .pkg-card.pkg-far-left  { width: 300px; height: 300px; transform: translate(calc(-50% - 700px), -50%); z-index: 1; opacity: 0; }
                .pkg-card.pkg-far-right { width: 300px; height: 300px; transform: translate(calc(-50% + 700px), -50%); z-index: 1; opacity: 0; }

                .pkg-name  { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.6rem; margin-bottom: 8px; color: #333; }
                .pkg-price { font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; color: #c4a55a; text-transform: uppercase; margin-bottom: 16px; }
                .pkg-desc  { font-size: 0.95rem; color: #666; line-height: 1.7; margin-bottom: 20px; }
                .pkg-features { list-style: none; margin-bottom: 28px; padding: 0; }
                .pkg-features li { font-size: 0.9rem; color: #555; padding: 5px 0; display: flex; align-items: center; gap: 10px; }
                .pkg-features li::before { content: '✓'; color: #adb58d; font-weight: 700; }
                .pkg-inquire {
                    display: block; width: 100%; padding: 14px;
                    border: 1.5px solid #333; background: transparent;
                    font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase;
                    font-family: 'Raleway', sans-serif; font-weight: 600;
                    cursor: pointer; transition: all 0.2s; color: #333;
                    text-align: center;
                
                }
                .pkg-inquire:hover { background: #333; color: #fff; }

                .pkg-dots { display: flex; gap: 8px; justify-content: center; margin-top: 12px; }
                .pkg-dot { width: 8px; height: 8px; border-radius: 50%; background: #c8b89a; cursor: pointer; transition: background 0.3s, transform 0.3s; border: none; padding: 0; }
                .pkg-dot.active { background: #adb58d; transform: scale(1.3); }
                    .pkg-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; background: rgba(255,255,255,0.9); border: none; width: 44px; height: 44px; border-radius: 50%; font-size: 18px; cursor: pointer; box-shadow: 0 2px 12px rgba(0,0,0,0.15); display: flex; align-items: center; justify-content: center; color: #3a3a3a; transition: box-shadow 0.2s; }
                .pkg-arrow:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
                .pkg-arrow-left  { left: 0; }
                .pkg-arrow-right { right: 0; }

                .btn-reserve {
                    display: inline-block; padding: 18px 60px;
                    background: #adb58d; color: #fff; text-decoration: none;
                    font-family: 'Raleway', sans-serif; font-size: 1rem;
                    font-weight: 600; letter-spacing: 1px; border-radius: 6px;
                    transition: background 0.2s;
                }
                .btn-reserve:hover { background: #8f9870; }
                .pkg-card.pkg-left .pkg-inquire,
                .pkg-card.pkg-right .pkg-inquire {
                    opacity: 0;
                    transition: opacity 0.55s ease;
                }

                .pkg-card.pkg-center .pkg-inquire {
                    opacity: 1;
                    transition: opacity 0.55s ease;
                }

                    .footer-inner {
                        max-width: 600px;
                        margin: 0 auto;
                    }

                    .footer-title {
                        font-family: 'Raleway', sans-serif;
                        font-size: 2.4rem;
                        font-weight: 700;
                        color: #fff;
                        margin-bottom: 24px;
                    }

                    .footer-desc {
                        font-size: 1rem;
                        line-height: 1.8;
                        color: #fff;
                        opacity: 0.92;
                        margin-bottom: 28px;
                    }

                    .footer-contacts {
                        display: flex;
                        flex-direction: column;
                        gap: 12px;
                        margin-bottom: 0;
                        text-align: left;
                        display: inline-flex;
                    }

                    .footer-contact-item {
                        display: row;
                        gap: 8px;
                        align-items: baseline;
                        font-size: 1rem;
                    }

                    .footer-label {
                        font-weight: 700;
                        color: #fff;
                        min-width: 130px;
                    }

                    .footer-contact-item a {
                        color: #fff;
                        text-decoration: none;
                        opacity: 0.92;
                        transition: opacity 0.2s;
                    }

                    .footer-contact-item a:hover {
                        opacity: 1;
                        text-decoration: underline;
                    }

                    .footer-social {
                        display: flex;
                        justify-content: center;
                        gap: 24px;
                        margin-bottom: 32px;
                    }

                    .footer-social a {
                        color: #fff;
                        font-size: 1.3rem;
                        opacity: 0.85;
                        transition: opacity 0.2s;
                    }

                    .footer-social a:hover {
                        opacity: 1;
                    }

                    .footer-copy {
                        font-size: 0.8rem;
                        opacity: 0.6;
                        color: #fff;
                    }
    @media (max-width: 768px) {

    /* GALERIE - zobrazit 3 fotky */
    .carousel-stage { height: 320px; }
    .card.state-center { width: 200px; height: 280px; }
    .card.state-left  { width: 120px; height: 180px; transform: translate(calc(-50% - 160px), -50%); }
    .card.state-right { width: 120px; height: 180px; transform: translate(calc(-50% + 160px), -50%); }
    .card.state-far-left  { transform: translate(calc(-50% - 320px), -50%); }
    .card.state-far-right { transform: translate(calc(-50% + 320px), -50%); }

    /* FOTOGRAF - centrovat text, zmenšit mezeru */
    .photographer-heading {
        text-align: center;
        margin-bottom: 16px;
    }
    .photographer-text {
        text-align: center;
    }

    /* KONTAKT - jemnější border-radius na mobilu */
    .contact-section {
        border-radius: 16px 16px 0 0;
    }
    /* KONTAKT - zarovnat email */
    .footer-contacts {
        width: 100%;
        text-align: left;
        padding: 0 20px;
    }
    .footer-contact-item {
        flex-direction: column;
        gap: 2px;
    }
    .footer-label {
        min-width: unset;
    }

    /* BALÍČKY - zobrazit jako na počítači */
    .pkg-stage { height: 420px; }
    .pkg-card.pkg-center { width: 260px; height: 380px; padding: 24px 20px; }
    .pkg-card.pkg-left  { width: 90px; height: 300px; transform: translate(calc(-50% - 180px), -50%); padding: 24px 12px; }
    .pkg-card.pkg-right { width: 90px; height: 300px; transform: translate(calc(-50% + 180px), -50%); padding: 24px 12px; }
    .pkg-card.pkg-far-left  { transform: translate(calc(-50% - 400px), -50%); }
    .pkg-card.pkg-far-right { transform: translate(calc(-50% + 400px), -50%); }
    .pkg-name { font-size: 1.2rem; }
    .pkg-desc { font-size: 0.85rem; }
    .pkg-card.pkg-left .pkg-price,
.pkg-card.pkg-left .pkg-desc,
.pkg-card.pkg-left .pkg-features,
.pkg-card.pkg-right .pkg-price,
.pkg-card.pkg-right .pkg-desc,
.pkg-card.pkg-right .pkg-features {
    display: none;
}

.pkg-card.pkg-left .pkg-name,
.pkg-card.pkg-right .pkg-name {
    font-size: 0.85rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/* Nadpisy - stejná velikost jako hero */
.about-section h2        { font-size: 1.6rem; }
.photographer-heading    { font-size: 1.6rem; }
.contact-section h2      { font-size: 1.6rem; }
.footer-title            { font-size: 1.6rem; }

/* Běžný text - stejná velikost jako hero */
.about-section p         { font-size: 1rem; }
.photographer-text p     { font-size: 1rem; }
.footer-desc             { font-size: 1rem; }
.contact-info            { font-size: 1rem; }
}
