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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo .logo-text {
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    color: #d4a574;
    font-weight: 600;
    margin: 0 !important;
    line-height: normal;
}

.nav-logo {
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-logo:hover {
    transform: scale(1.02);
}

.nav-logo:hover .logo-text {
    color: #c19660;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    height: 100%;
    margin: 0;
    padding: 0;
    transform: translateY(0.1cm);
}

.nav-item {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    margin: 0;
    padding: 0;
    top: -0.08cm;
}

.nav-link:hover {
    color: #d4a574;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 22px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4a574;
    transition: width 0.3s ease;
}

/* Speciální pozice podtržení pro mobilní menu */
@media (max-width: 768px) {
    .nav-menu.active .nav-link::after {
        bottom: 5px !important;
    }
}

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

.dark-mode-toggle {
    background: none;
    border: 2px solid #d4a574;
    color: #d4a574;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1rem;
    margin: 0;
    position: relative;
    top: -0.1cm;
}

.dark-mode-toggle:hover {
    background: #d4a574;
    color: white;
    transform: scale(1.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

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

.background-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 40%; /* Změněno z center na center 40% */
    transition: opacity 1s ease-in-out;
    opacity: 0;
    z-index: -3;
    will-change: opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* Specifické nastavení pro větší obrazovky (2K+) */
@media (min-width: 1920px) {
    .background-layer {
        background-position: center 35%; /* Na 2K monitorech zobrazí více z horní části */
    }
}

.background-layer.active {
    opacity: 1;
}

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

.hero-content {
    z-index: 1;
    width: 100%;
    max-width: 1440px;
    padding: 0 20px;
    margin: 0 auto;
}

/* Desktop positioning - blok zarovnaný s logem */
@media (min-width: 1440px) {
    .hero-content {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        max-width: 1440px;
        width: 100%;
        padding: 0 20px;
    }

    .hero-text {
        display: block; /* Změna z flex na block */
        margin-left: 0;
        max-width: 600px;
        width: 100%;
        margin-top: 2cm; /* Posunutí bloku o 2cm dolů */
    }

    .hero-title {
        text-align: left;
        width: 100%;
        margin-bottom: 1rem;
        white-space: nowrap;
    }

    .hero-subtitle {
        text-align: center;
        width: 100%;
        margin: 0 auto 2rem auto; /* Vycentrování pomocí margin auto */
    }

    .cta-button {
        display: block;
        margin: 0 auto; /* Vycentrování pomocí margin auto */
        width: fit-content; /* Tlačítko bude jen tak široké, jak potřebuje */
    }
}

/* Center everything on smaller screens */
@media (max-width: 1439px) {
    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-title,
    .hero-subtitle {
        text-align: center;
    }

    .cta-button {
        align-self: center;
    }
}

.hero-title {
    font-family: "Playfair Display", serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 1.95px 1.95px 3.9px rgba(0, 0, 0, 0.33);
}

.hero-subtitle {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 500;
    text-shadow: 1.04px 1.04px 1.95px rgba(0, 0, 0, 0.46);
    -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.3);
    text-stroke: 0.5px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #d4a574;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.cta-button:hover {
    background: #c19660;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

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

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s both;
}

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

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 2.25rem;
}

.section-title {
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #d4a574;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 40px 0 60px 0;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #ffe4cc;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    background: #ffd4b3;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #ff8c42;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

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

.service-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

.service-hover-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 165, 116, 0.1),
        transparent
    );
    transition: left 0.5s ease;
}

.service-card:hover .service-hover-effect {
    left: 100%;
}

/* Hero Section Additions */
.hero-description {
    max-width: 700px;
    margin: 2rem auto;
    text-align: center;
}

.hero-description p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat-number {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    font-weight: 700;
    color: #d4a574;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about {
    padding: 40px 0 60px 0;
    background: #f8f9fa;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-signature {
    margin-top: 1rem !important;
    text-align: justify !important;
    text-align-last: center !important;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
    text-align: left;
    hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
}

/* Speciální pravidlo pro poslední odstavec před podpisem */
.about-description:nth-last-of-type(2) {
    text-align: left;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.about-stat {
    text-align: center;
    background: linear-gradient(
        135deg,
        #8b6914 0%,
        #b8860b 25%,
        #daa520 50%,
        #b8860b 75%,
        #8b6914 100%
    );
    box-shadow:
        0 5px 20px rgba(212, 165, 116, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    color: white;
    transition: all 0.3s ease;
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.about-stat::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.6s ease;
}

.about-stat:hover {
    transform: translateY(-5px);
    box-shadow:
        0 10px 30px rgba(212, 165, 116, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    background: linear-gradient(
        135deg,
        #b8860b 0%,
        #daa520 25%,
        #ffd700 50%,
        #daa520 75%,
        #8b6914 100%
    );
}

.about-stat:hover::before {
    left: 100%;
}

.stat-number {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 3.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.17rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    font-weight: 700;
}

/* Brands Section */
.brands {
    padding: 40px 0 60px 0;
    background: #f0ebe3;
}

#brands .container {
    max-width: 1700px;
    padding-bottom: 5em;
    overflow-x: hidden;
}

/* Mobile brands system */
.mobile-brands {
    display: none;
    max-width: 300px;
    margin: 0 auto;
    position: relative;
    height: 400px;
}

.mobile-brand-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.mobile-brand-item h3,
.mobile-brand-item p {
    position: static !important;
    transform: none !important;
    transition: none !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.2 !important;
    height: auto !important;
    min-height: unset !important;
    max-height: unset !important;
    animation: none !important;
}

.mobile-brand-item.active {
    opacity: 1;
}

.mobile-brand-item .brand-logo {
    width: 200px;
    height: 160px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-brand-item .brand-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.mobile-brand-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #d4a574;
    font-weight: 600;
}

.mobile-brand-item p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

/* Mobile brands navigation */
.mobile-brands-nav {
    position: absolute !important;
    top: 50% !important;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none !important;
    z-index: 10 !important;
    padding: 0 !important;
}

.mobile-nav-btn {
    pointer-events: all;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(212, 165, 116, 0.8);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

#mobile-prev {
    left: -20px;
}

#mobile-next {
    right: -20px;
}

.mobile-nav-btn:hover {
    background: rgba(193, 150, 96, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.mobile-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

/* Desktop swiper system */
.swiper-container {
    position: relative;
    max-width: 660px;
    margin: 0 auto;
    padding: 3rem 0;
    overflow: visible !important;
}

.swiper-wrapper {
    align-items: center;
    overflow: visible !important;
}

.swiper {
    overflow: visible !important;
}

.swiper-slide {
    width: 380px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.brand-item {
    width: 100%;
    height: 100%;
    max-width: 454px;
    max-height: 454px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    margin: 0 auto;
}

.swiper-slide-active .brand-item {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.3);
}

.brand-item:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 20px 50px rgba(212, 165, 116, 0.4) !important;
}

.brand-logo {
    width: 100%;
    max-width: 286px;
    height: 233px;
    margin: 0 auto 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 0.5rem;
}

.brand-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
}

.brand-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.15rem;
    color: #d4a574;
    font-weight: 600;
}

.brand-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.2;
    margin: 0;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: #d4a574 !important;
    background: rgba(255, 255, 255, 0.9);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.swiper-button-next {
    right: 10px !important;
}

.swiper-button-prev {
    left: 10px !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(212, 165, 116, 0.9) !important;
    color: white !important;
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px !important;
    font-weight: bold;
}

/* Swiper Pagination */
.swiper-pagination {
    bottom: 0 !important;
}

.swiper-pagination-bullet {
    background: rgba(212, 165, 116, 0.3) !important;
    width: 12px !important;
    height: 12px !important;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #d4a574 !important;
    transform: scale(1.2);
}

/* Contact Section */
.contact {
    padding: 40px 0 60px 0;
    background: #f0ebe3;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4a574, #f4e4d1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.2rem;
    color: white;
}

.contact-details h4 {
    font-family: "Playfair Display", serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-details a {
    color: #d4a574;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #c19660;
}

.contact-details p {
    color: #666;
    margin: 0;
}

.map-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
    height: 100%;
}

.contact-map {
    height: 100%;
}

.map-container iframe {
    display: block;
    border: none;
    outline: none;
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.map-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.map-link {
    background: rgba(212, 165, 116, 0.9);
    color: white;
    padding: 10px 15px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.map-link:hover {
    background: rgba(212, 165, 116, 1);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    text-align: center;
    margin-bottom: 20px;
}

.footer-logo h3 {
    font-family: "Playfair Display", serif;
    color: #d4a574;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: #d4a574;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #c19660;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    color: #999;
}

/* Responsive Design */
@media (min-width: 769px) {
    .nav-link {
        background: none !important;
        /* Zachovat původní pozicování bez změny paddingu */
    }

    .dark-mode .nav-link {
        background: none !important;
    }

    .dark-mode .nav-item {
        background: none !important;
    }

    .dark-mode .nav-menu {
        background: none !important;
    }
}

@media (max-width: 1023px) {
    .swiper-slide {
        width: 100% !important;
        max-width: 350px !important;
        margin: 0 auto !important;
    }

    .brand-item {
        width: 100% !important;
        max-width: 320px !important;
        margin: 0 auto !important;
    }
}

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

    .mobile-brands {
        display: block;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        right: -65%;
        top: 66px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 65%;
        height: calc(100vh - 66px);
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        padding: 2rem 0 4rem 0;
        z-index: 999;
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

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

    .nav-menu li {
        margin: 0 !important;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    /* Mobilní navigace - podbarvení položek */
    .nav-menu.active .nav-link {
        background: #f8f9fa;
        padding: 0.6rem 2rem !important;
        margin: 0 1rem !important;
        border-radius: 8px;
        transition: all 0.3s ease;
        width: auto;
        display: inline-block;
    }

    /* Explicitní reset pro mobilní menu položky */
    @media (max-width: 768px) {
        .navbar .nav-menu.active {
            display: flex !important;
            flex-direction: column !important;
            justify-content: flex-start !important;
            align-items: center !important;
            gap: 0.5rem !important;
        }

        .navbar .nav-menu.active li {
            margin: 0.5rem 0 !important;
            padding: 0 !important;
            height: auto !important;
        }

        .navbar .nav-menu.active .nav-link {
            margin: 0 !important;
            padding: 0.8rem 0 !important;
            position: relative !important;
            background: none !important;
            background-color: transparent !important;
            display: inline !important;
        }

        /* Odstranění všech pozadí */
        .nav-menu.active .nav-link,
        .nav-menu.active .nav-link:hover,
        .nav-menu.active .nav-link.active,
        .nav-menu.active .nav-link:focus,
        .nav-menu.active .nav-link:visited {
            background: none !important;
            background-color: transparent !important;
            color: #333 !important;
        }

        /* Hover efekt - pouze změna barvy */
        .nav-menu.active .nav-link:hover {
            color: #d4a574 !important;
        }
    }

    .nav-menu.active .nav-link:hover {
        background: #e9ecef;
        transform: translateX(5px);
    }

    /* Aktivní položka v mobilní navigaci */
    .nav-menu.active .nav-link.active {
        background: #d4a574;
        color: white;
    }

    .dark-mode-toggle {
        margin-top: 0.3rem !important;
        position: relative;
        top: 0;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    /* Posunutí hero obsahu níže na mobilu */
    .hero-content {
        transform: translateY(55%);
    }

    .section-title {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-stats {
        justify-content: center;
        gap: 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-logo .logo-text {
        font-size: 1.15rem;
        line-height: 1.2;
        max-width: 180px;
        word-break: break-word;
        hyphens: manual;
    }

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

    .hero-description p {
        font-size: 0.9rem;
    }

    .brands-track {
        justify-content: center;
    }

    .brand-item {
        flex: 0 0 250px;
        width: 250px;
        height: 300px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }

    .brand-logo {
        width: 120px;
        height: 80px;
    }

    .brand-item h3 {
        font-size: 1rem;
    }

    .brand-item p {
        font-size: 0.8rem;
    }

    .swiper-container {
        padding: 1rem 0;
        max-width: 100%;
    }

    .swiper-slide {
        width: 280px !important;
        display: flex;
        justify-content: center;
    }

    .brand-item {
        width: 250px;
        height: 320px;
        margin: 0 auto;
    }

    /* Mobilní zarovnání textu v About sekci */
    .about-description {
        text-align: left;
        text-align-last: left;
        hyphens: none;
        -webkit-hyphens: none;
        -moz-hyphens: none;
        -ms-hyphens: none;
    }

    .about-signature {
        text-align: center !important;
        text-align-last: center !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .section-title {
        font-size: 2rem;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .hero-stat {
        width: 200px;
    }

    /* Disable parallax on mobile for better performance */
    .hero-background::before {
        background-attachment: scroll;
    }
}

/* AOS Animation Styles */
[data-aos] {
    opacity: 0;
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

/* Dark Mode Styles */
body.dark-mode {
    background: #1a1a1a;
    color: #e0e0e0;
}

.dark-mode .navbar {
    background: rgba(26, 26, 26, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-mode .navbar.scrolled {
    background: rgba(26, 26, 26, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.dark-mode .nav-link {
    color: #e0e0e0;
    background: none !important; /* Odstranění černého pozadí */
}

.dark-mode .nav-link:hover {
    color: #d4a574;
    background: none !important; /* Odstranění černého pozadí při hoveru */
}

.dark-mode .dark-mode-toggle i::before {
    content: "\f185"; /* sun icon */
}

.dark-mode .services {
    background: #2d2d2d;
}

.dark-mode .service-card {
    background: #3a3a3a;
    color: #e0e0e0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.dark-mode .service-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.dark-mode .service-card h3 {
    color: #e0e0e0;
}

.dark-mode .service-card p {
    color: #b0b0b0;
}

.dark-mode .brands {
    background: #1a1a1a;
}

.dark-mode .brand-item {
    background: #3a3a3a;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.dark-mode .mobile-brand-item {
    background: #3a3a3a !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3) !important;
}

.dark-mode .brand-item:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.dark-mode .mobile-brand-item h3 {
    color: #d4a574 !important;
}

.dark-mode .mobile-brand-item p {
    color: #b0b0b0 !important;
}

.dark-mode .brand-logo {
    /* No background needed */
}

.dark-mode .brand-item p {
    color: #b0b0b0;
}

.dark-mode .about {
    background: #2d2d2d;
}

.dark-mode .about-description {
    color: #b0b0b0;
}

.dark-mode .contact {
    background: #1a1a1a;
}

.dark-mode .contact-item {
    background: #3a3a3a;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.dark-mode .contact-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.dark-mode .contact-details h4 {
    color: #e0e0e0;
}

.dark-mode .contact-details p {
    color: #b0b0b0;
}

.dark-mode .section-title {
    color: #e0e0e0;
}

.dark-mode .section-subtitle {
    color: #b0b0b0;
}

.dark-mode .footer {
    background: #0d0d0d;
}

.dark-mode .scroll-to-top {
    background: #d4a574 !important;
}

.dark-mode .scroll-to-top:hover {
    background: #c19660 !important;
}

/* Dark mode hamburger menu */
.dark-mode .bar {
    background: #d4a574;
}

.dark-mode .nav-menu {
    background-color: rgba(26, 26, 26, 0.98);
}

.dark-mode .nav-menu.active {
    background-color: rgba(26, 26, 26, 0.98);
}

/* Dark mode - mobilní navigace položky */
@media (max-width: 768px) {
    .dark-mode .nav-menu.active .nav-link {
        background: transparent !important;
        color: #d4a574 !important;
    }

    .dark-mode .nav-menu.active .nav-link:hover {
        background: transparent !important;
        color: #e8c4a0 !important;
    }

    .dark-mode .nav-menu.active .nav-link.active {
        background: transparent !important;
        color: #d4a574 !important;
    }

    /* Přepsání světlého módu pro dark mode */
    .dark-mode .nav-menu.active .nav-link:focus,
    .dark-mode .nav-menu.active .nav-link:visited {
        background: transparent !important;
        color: #d4a574 !important;
    }
}

/* Explicitní reset pozadí pro desktop dark mode */
@media (min-width: 769px) {
    .dark-mode .nav-link,
    .dark-mode .nav-item,
    .dark-mode .nav-menu li {
        background: transparent !important;
        background-color: transparent !important;
    }
}

@media (max-width: 768px) {
    .mobile-brand-item {
        transition: none !important;
    }
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: translateY(25px) scale(0.93);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 768px) {
    .mobile-brand-item {
        opacity: 0;
        transform: translateY(25px) scale(0.93);
        pointer-events: none;
    }
    .mobile-brand-item.active {
        pointer-events: auto;
        animation: popIn 0.35s ease-out forwards;
    }
}
