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

        body {
             font-family: 'Montserrat', sans-serif;
            background-color: #f5f1ed;
            color: #5a5a5a;
            line-height: 1.6;
        }

                 /* Navigace */
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 0rem 0;
            transition: all 0.3s ease;
            background: #535848;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .logo img {
            width: 130px;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .nav {
            width: 100%;
            margin: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-left: 2rem;
            padding-right: 3rem;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-size: 23px;
            transition: color 0.3s ease;
            cursor: pointer;
            position: relative;
        }

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

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background-color: #ffffff;
            margin: 3px 0;
            transition: 0.3s;
        }

        .underline-hover::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px; /* mírně dolů */
            height: 3px;
            width: 0;
            background-color: #f5d6a1; /* jemná světlejší barva */
            border-radius: 2px;
            transition: width 0.3s ease, background-color 0.3s ease;
        }


        .underline-hover:hover a {
            color: #f5d6a1; /* text se jemně zbarví */
            transform: translateY(-3px); /* mírný posun nahoru */
        }


        /* Dropdown styly */
        .dropdown {
            position: relative;
        }

        /* Hlavní obsah dropdownu */
        .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #535848;
            min-width: 200px;
            border-radius: 8px;
            padding: 10px 0;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            z-index: 1000;
            list-style: none;
        }

        /* Zobrazit hlavní dropdown při hoveru */
        .dropdown:hover .dropdown-content {
            display: block;
        }

        /* Submenu (vedle doprava) */
        .dropdown-submenu {
            position: relative;
        }

        .dropdown-submenu .submenu {
            display: none;
            position: absolute;
            top: 0;
            left: 100%;
            background-color: #535848;
            min-width: 180px;
            border-radius: 8px;
            padding: 10px 0;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            list-style: none;
        }

        /* Zobrazit submenu při hoveru */
        .dropdown-submenu:hover .submenu {
            display: block;
        }

        /* Styly položek dropdownu */
        .dropdown-content > li > a,
        .submenu > li > a {
            display: block;
            padding: 10px 15px;
            color: #fff;
            text-decoration: none;
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .dropdown-content > li > a:hover,
        .submenu > li > a:hover {
            background-color: #6e7360;
            transform: none;
        }

        /* Speciální styling pro submenu trigger */
        .dropdown-submenu > a {
            position: relative;
        }

        .dropdown-submenu > a::after {
            content: '▸';
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

         .hero-section {
            padding: 180px 0 80px;
            background: #747352;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 3rem;
            font-weight: 400;
            color: #ffffff;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero-text p {
            font-size: 1.1rem;
            color: #ffffff;
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn {
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 5px;
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        .btn-primary {
            background: #86855f;
            color: white;
        }

        .btn-primary:hover {
            background: #9b9a6b;
        }

        .btn-outline {
            background: transparent;
            color: #ffffff;
            border: 1px solid #86855f;
        }

        .btn-outline:hover {
            background: #86855f;
            color: white;
        }

        .hero-image {
            position: relative;
        }

        .hero-image img {
            width: 100%;
            height: 500px;
            object-position: center+ 90%;
            object-fit: cover;
            border-radius: 10px;
        }

        .services-info-section {
            background: #fff;
            padding: 80px 0;
        }

        .section-title {
            color: #8b7355;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            text-align: left;
            font-weight: 400;
        }

        .services-info-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .services-info-text p {
            color: #666;
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .hero-tags {
            display: flex;
            gap: 15px;
            margin-top: 25px;
            flex-wrap: wrap;
        }

        .tag {
            background-color: rgba(139, 115, 85, 0.1);
            color: #8b7355;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            border: 1px solid rgba(139, 115, 85, 0.2);
        }

        /* Naše dezerty sekce */
.desserts-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 85vh;
    background: #f5efe8;
    overflow: hidden;
}

/* Textová část */
.desserts-text {
    padding: 100px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f5efe8;
}

.desserts-text h2 {
    font-size: 2.8rem;
    font-weight: 300;
    color: #9d9078;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

.desserts-text p {
    font-size: 1.05rem;
    color: #5a5a5a;
    margin-bottom: 2.5rem;
    line-height: 1.9;
    font-weight: 300;
}

.desserts-list {
    list-style: none;
    margin-bottom: 20px;
}

.desserts-list li {
    padding: 14px 0;
    color: #5a5a5a;
    font-size: 1.05rem;
    position: relative;
    padding-left: 30px;
    font-weight: 300;
}

.desserts-list li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #c4a882;
    font-size: 0.8rem;
}

/* Slider část */
.desserts-slider {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
    background-color: #f5efe8; /* stejné jako zbytek sekce */
}

.desserts-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.desserts-slider .slide.active {
    opacity: 1;
}

        .services-info-images {
            display: flex;
            gap: 15px;
        }

        .services-info-images img {
            width: 48%;
            height: 250px;
            object-fit: cover;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .intro-section {
            text-align: center;
            max-width: 1200px;
            margin: 80px auto 40px;
            padding: 0 20px;
        }

        .intro-section h2 {
            color: #8b7355;
            font-size: 1.8rem;
            margin-bottom: 20px;
        }

        .intro-section p {
            color: #6b6b6b;
            max-width: 700px;
            margin: 0 auto;
        }

        .services-grid {
            max-width: 1200px;
            margin: 60px auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }

        .service-card {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 16px rgba(0,0,0,0.12);
        }

        .service-icon img {
            width: 80px;
            height: 80px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }

        .service-card h3 {
            color: #8b7355;
            font-size: 1.1rem;
            margin-bottom: 8px;
        }

        .service-card p {
            color: #888;
            font-size: 0.95rem;
            margin-bottom: 5px;
        }

        .service-card .meta {
            color: #aaa;
            font-size: 0.85rem;
        }

        .special-project {
            max-width: 1200px;
            margin: 40px auto;
            padding: 30px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        .special-project h3 {
            color: #8b7355;
            font-size: 1.1rem;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .special-project p {
            color: #6b6b6b;
            line-height: 1.7;
        }

        .cta-section {
            max-width: 1200px;
            margin: 80px auto 60px;
            padding: 60px 40px;
            background: linear-gradient(135deg, #8b7355 0%, #9d8567 100%);
            border-radius: 16px;
            text-align: center;
            color: white;
        }

        .cta-section h2 {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        .cta-section p {
            margin-bottom: 30px;
            opacity: 0.95;
        }

        .cta-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 14px 32px;
            border-radius: 8px;
            border: none;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background: white;
            color: #8b7355;
        }

        .btn-primary:hover {
            background: #f5f1ed;
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background: rgba(255,255,255,0.1);
        }

        /* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #86855e;
    color: #ffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
footer {
    background-color: #000000;
    color: #ffff;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-logo {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #ffff;
}

.footer-text {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.instagram-icon {
    width: 37px;
    height: auto;
    vertical-align: middle;
    transition: opacity 0.3s ease;
}

.instagram-icon:hover {
    opacity: 0.8;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.2rem;
    transition: all 0.4s ease;
}

.social-icon:hover {
    background-color: #ffffff;
    color: #222;
    transform: translateY(-5px);
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffff;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-light);
    opacity: 0.8;
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ============================================
   RESPONZIVNÍ STYLY - HLAVNÍ STRÁNKA
   ============================================ */

/* Tablet - 768px a níže */
@media (max-width: 768px) {
    
    /* Container */
    .container {
        padding: 0 1.5rem;
    }
    
    /* Hero sekce */
    .hero-section {
        padding: 140px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        gap: 0.8rem;
    }
    
    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-image img {
        height: 600px;
    }
    
    .hero-tags {
        gap: 10px;
        margin-top: 20px;
    }
    
    .tag {
        font-size: 0.85rem;
        padding: 6px 14px;
    }
    
    /* Services Info Section */
    .services-info-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .services-info-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .services-info-text p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .services-info-images {
        flex-direction: column;
        gap: 12px;
    }
    
    .services-info-images img {
        width: 100%;
        height: 220px;
    }
    
    /* Naše dezerty sekce */
    .desserts-section {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .desserts-text {
        padding: 60px 35px;
        order: 2;
    }
    
    .desserts-text h2 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .desserts-text p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .desserts-list li {
        font-size: 1rem;
        padding: 12px 0;
    }
    
    .desserts-slider {
        order: 1;
        min-height: 400px;
    }
    
    /* Intro Section */
    .intro-section {
        margin: 60px auto 30px;
        padding: 0 20px;
    }
    
    .intro-section h2 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .intro-section p {
        font-size: 0.95rem;
    }
    
    /* Services Grid */
    .services-grid {
        margin: 40px auto;
        padding: 0 20px;
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-card {
        padding: 25px;
    }
    
    .service-icon img {
        width: 70px;
        height: 70px;
    }
    
    .service-card h3 {
        font-size: 1.05rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    /* Special Project */
    .special-project {
        margin: 30px 20px;
        padding: 25px;
    }
    
    .special-project h3 {
        font-size: 1.05rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .special-project p {
        font-size: 0.95rem;
    }
    
    /* CTA Section */
    .cta-section {
        margin: 60px 20px 40px;
        padding: 40px 30px;
    }
    
    .cta-section h2 {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }
    
    .cta-section p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    /* Back to top */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Mobilní telefony - 480px a níže */
@media (max-width: 480px) {
    
    /* Container */
    .container {
        padding: 0 1rem;
    }
    
    /* Hero sekce */
    .hero-section {
        padding: 120px 0 40px;
    }
    
    .hero-content {
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-text p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.7rem;
    }
    
    .btn {
        width: 100%;
        padding: 0.65rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .hero-image img {
        height: 300px;
    }
    
    .hero-tags {
        gap: 8px;
        margin-top: 15px;
    }
    
    .tag {
        font-size: 0.8rem;
        padding: 5px 12px;
    }
    
    /* Services Info Section */
    .services-info-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.7rem;
        margin-bottom: 1.5rem;
    }
    
    .services-info-content {
        gap: 2rem;
    }
    
    .services-info-text p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .services-info-images img {
        height: 200px;
    }
    
    /* Naše dezerty sekce */
    .desserts-text {
        padding: 40px 25px;
    }
    
    .desserts-text h2 {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }
    
    .desserts-text p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .desserts-list li {
        font-size: 0.95rem;
        padding: 10px 0;
        padding-left: 25px;
    }
    
    .desserts-list li::before {
        font-size: 0.7rem;
    }
    
    .desserts-slider {
        min-height: 300px;
    }
    
    /* Intro Section */
    .intro-section {
        margin: 40px auto 20px;
        padding: 0 15px;
    }
    
    .intro-section h2 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }
    
    .intro-section p {
        font-size: 0.9rem;
    }
    
    /* Services Grid */
    .services-grid {
        margin: 30px auto;
        padding: 0 15px;
        gap: 12px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-icon img {
        width: 60px;
        height: 60px;
        margin-bottom: 12px;
    }
    
    .service-card h3 {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .service-card p {
        font-size: 0.85rem;
        margin-bottom: 4px;
    }
    
    .service-card .meta {
        font-size: 0.8rem;
    }
    
    /* Special Project */
    .special-project {
        margin: 25px 15px;
        padding: 20px;
    }
    
    .special-project h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .special-project p {
        font-size: 0.9rem;
    }
    
    /* CTA Section */
    .cta-section {
        margin: 40px 15px 30px;
        padding: 35px 25px;
    }
    
    .cta-section h2 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    
    .cta-section p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .cta-buttons .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
     /* Footer */
    footer {
        padding: 50px 20px 25px;
    }
    
    .footer-logo {
        font-size: 1.5rem;
    }
    
    .footer-text {
        font-size: 0.9rem;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .copyright {
        font-size: 0.85rem;
    }
    
    /* Back to top */
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Velmi malé telefony - 360px a níže */
@media (max-width: 360px) {
    
    /* Hero */
    .hero-text h1 {
        font-size: 1.6rem;
    }
    
    .hero-image img {
        height: 250px;
    }
    
    /* Section Title */
    .section-title,
    .desserts-text h2 {
        font-size: 1.5rem;
    }
    
    /* Dezerty text */
    .desserts-text {
        padding: 30px 20px;
    }
    
    .desserts-slider {
        min-height: 250px;
    }
    
    /* Services */
    .service-card {
        padding: 18px;
    }
    
    .service-icon img {
        width: 55px;
        height: 55px;
    }
    
    /* CTA */
    .cta-section {
        padding: 30px 20px;
    }
    
    .cta-section h2 {
        font-size: 1.3rem;
    }
}