 :root {
            /* Barvy extrahované z vašich podkladů */
            --primary-green: #749c7f; /* Šalvějová zelená z vizitky */
            --dark-green: #5a7a63;
            --bg-cream: #f4f1ea;      /* Krémová z pozadí prezentace */
            --text-dark: #4a4a4a;     /* Tmavě šedá pro text */
            --text-light: #ffffff;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background-color: var(--bg-cream);
            color: var(--text-dark);
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5, .navbar-brand {
            font-family: 'Playfair Display', serif;
        }

        /* Navigace */
        .navbar {
            background-color: var(--bg-cream);
            padding-top: 1rem;
            padding-bottom: 1rem;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-size: 1.5rem;
            color: var(--text-dark);
            font-weight: 600;
        }

        .nav-link {
            color: var(--text-dark);
            font-weight: 400;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 1px;
            margin-left: 1rem;
        }

        .nav-link:hover, .nav-link.active {
            color: var(--primary-green);
        }

        /* Hero Sekce */
        /* --- NOVÉ STYLY PRO CAROUSEL HERO --- */
        .hero-carousel-item {
            height: 100vh; /* Roztáhne se na celou výšku okna */
            min-height: 600px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        /* Tmavý filtr přes fotku, aby byl text čitelný */
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3); /* Průhledná černá */
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-content {
            text-align: center;
            color: #fff; /* Bílý text na fotkách */
            z-index: 2;
            padding: 0 20px;
        }

        .hero-title {
            font-size: 4rem; /* Větší nadpis */
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero-subtitle {
            font-size: 1.5rem;
            font-style: italic;
            margin-bottom: 2rem;
            letter-spacing: 2px;
            font-weight: 300;
        }

        /* Upravené tlačítko pro carousel (bílé ohraničení) */
        .btn-hero {
            background-color: transparent;
            color: #fff;
            border: 2px solid #fff;
            border-radius: 30px;
            padding: 12px 35px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-hero:hover {
            background-color: #fff;
            color: var(--primary-green);
        }

        /* Indikátory (tečky dole) */
        .carousel-indicators [data-bs-target] {
            background-color: #fff;
            height: 10px;
            width: 10px;
            border-radius: 50%;
            margin: 0 5px;
        }

        /* Tlačítka */
        .btn-custom {
            background-color: var(--primary-green);
            color: white;
            border-radius: 30px;
            padding: 10px 30px;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: 1px solid var(--primary-green);
            transition: all 0.3s;
        }

        .btn-custom:hover {
            background-color: transparent;
            color: var(--primary-green);
        }

        /* Sekce */
        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
            font-size: 2.5rem;
            color: var(--primary-green);
            position: relative;
        }

        .section-title::after {
            content: "";
            display: block;
            width: 60px;
            height: 2px;
            background-color: var(--primary-green);
            margin: 20px auto 0;
        }

        /* Služby */
        .service-card {
            background: white;
            border: none;
            padding: 40px;
            text-align: center;
            height: 100%;
            transition: transform 0.3s;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .service-card:hover {
            transform: translateY(-10px);
        }

        .service-icon {
            font-size: 3rem;
            color: var(--primary-green);
            margin-bottom: 20px;
        }

        /* Ceník */
        .price-item {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            margin-bottom: 15px;
            border-bottom: 1px dotted #ccc;
            padding-bottom: 10px;
        }

        .price-val {
            font-weight: bold;
            color: var(--primary-green);
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
        }

        /* Kontakt */
        .contact-info-box {
            background-color: var(--primary-green);
            color: white;
            padding: 40px;
            height: 100%;
        }
        
        .contact-info-box h3 {
            color: white;
            margin-bottom: 30px;
        }

        .contact-link {
            color: white;
            text-decoration: none;
            display: block;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        
        .contact-link:hover {
            color: var(--bg-cream);
        }

        footer {
            background-color: var(--dark-green);
            color: white;
            padding: 20px 0;
            text-align: center;
            font-size: 0.9rem;
        }

        /* Line art dekorace */
        .line-art-decoration {
            max-width: 100%;
            height: auto;
            opacity: 0.8;
        }

        /* --- NOVÉ STYLY PRO DETAILNÍ SLUŽBY --- */
        .service-detail-icon {
            font-size: 2.5rem;
            color: var(--primary-green);
            margin-bottom: 1rem;
            display: inline-block;
            background: #fff;
            width: 80px;
            height: 80px;
            line-height: 80px;
            border-radius: 50%;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .service-block {
            padding: 40px 0;
            border-bottom: 1px solid rgba(116, 156, 127, 0.2);
        }

        .service-block:last-child {
            border-bottom: none;
        }

        /* Styl pro seznam výhod (fajfky/lístky) */
        .custom-list {
            list-style: none;
            padding-left: 0;
        }

        .custom-list li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 10px;
        }

        .custom-list li::before {
            content: "\f00c"; /* FontAwesome fajfka */
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 0;
            color: var(--primary-green);
        }

        /* Upravený akordeon pro Green Peel */
        .accordion-button:not(.collapsed) {
            color: var(--dark-green);
            background-color: rgba(116, 156, 127, 0.1);
            box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
        }
        
        .accordion-button:focus {
            border-color: var(--primary-green);
            box-shadow: 0 0 0 0.25rem rgba(116, 156, 127, 0.25);
        }
        
        .accordion-button {
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
        }