* {
            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%);
        }

.hero-content {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    max-width: 50%;
    padding: 2rem;
    border-radius: 15px;
    z-index: 15;
}

.hero-content h1 {
    font-size: 6rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    white-space: nowrap;
}

.hero-content p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-content .cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #3e4233;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.hero-content .cta-button:hover {
    background-color: #86855e;
    color: #ffffff;
    transform: translateY(-2px);
}

.hero-content .cta-button2 {
    display: inline-block;
    margin-left: 10px;
    padding: 15px 45px;
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    text-decoration: none;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.hero-content .cta-button2:hover {
    background-color: #d8baa5;
    color: white;
    transform: translateY(-2px);
}

/* Slider */
.slider {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-size: cover;
  background-position: center 5%;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 80px;
}


.slide.active {
  opacity: 1;
  z-index: 1;
}


/* Tečky */
.dots {
  position: absolute;
  bottom: 30px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 10;
}

.dot {
  height: 12px;
  width: 12px;
  background-color: #86855e6b;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: #86855e;
}

/* Sekce Média */
.media-section {
    padding: 80px 20px;
    background-color: #f5f1ed;
}

.media-container {
    max-width: 1400px;
    margin: 0 auto;
}

.media-title {
    text-align: center;
    font-size: 2rem;
    color: #5a5a5a;
    margin-bottom: 10px;
    font-weight: 400;
}

.media-subtitle {
    text-align: center;
    font-size: 1.8rem;
    color: #3e4233;
    margin-bottom: 60px;
    font-weight: 500;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.media-card {
    background: white;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.media-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #86855e 0%, #3e4233 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon i {
    font-size: 28px;
    color: white;
}

.card-title {
    font-size: 1.3rem;
    color: #3e4233;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 500;
}

.card-description {
    color: #5a5a5a;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.card-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #86855e;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.card-link:hover {
    color: #3e4233;
    gap: 15px;
}

.card-link i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

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

/* Sekce Vladka - Příběh */
.story-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.story-container {
    max-width: 1400px;
    margin: 0 auto;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-text {
    padding-right: 40px;
}

.story-name {
    font-size: 3rem;
    color: #3e4233;
    margin-bottom: 5px;
    font-weight: 400;
}

.story-role {
    font-size: 1.3rem;
    color: #86855e;
    margin-bottom: 40px;
    font-weight: 400;
}

.story-description {
    font-size: 1.1rem;
    color: #5a5a5a;
    line-height: 1.8;
    margin-bottom: 30px;
}

.quote-box {
    background-color: #f5f1ed;
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
    position: relative;
}

.quote-mark {
    font-size: 5rem;
    color: #86855e;
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
}

.quote-text {
    font-size: 1.2rem;
    color: #5a5a5a;
    line-height: 1.7;
    margin-bottom: 15px;
    padding-left: 20px;
}

.quote-text em {
    font-style: italic;
}

.quote-author {
    text-align: right;
    color: #86855e;
    font-weight: 500;
    font-size: 1.1rem;
    padding-right: 20px;
}

.story-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 35px;
}

.tag {
    padding: 10px 20px;
    background-color: #f5f1ed;
    color: #5a5a5a;
    border-radius: 25px;
    font-size: 0.95rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.tag.active {
    background-color: #86855e;
    color: white;
    border-color: #86855e;
}

.tag:hover {
    border-color: #86855e;
}

.story-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.timeline-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(62, 66, 51, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 15px;
    text-align: center;
}

.timeline-years {
    display: block;
    font-size: 2rem;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 2px;
}

.timeline-subtitle {
    display: block;
    font-size: 0.95rem;
    color: #f5d6a1;
    margin-top: 5px;
}

/* Sekce Timeline - Náš příběh */
.timeline-section {
    padding: 0px 20px;
    background-color: #f5f1ed;
}

.timeline-container {
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-main-title {
    text-align: center;
    font-size: 3rem;
    color: #3e4233;
    margin-bottom: 10px;
    font-weight: 400;
}

.timeline-main-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #86855e;
    margin-bottom: 80px;
    font-weight: 400;
}

.timeline {
    position: relative;
}

.timeline-item {
    display: flex;
    margin-bottom: 60px;
    position: relative;
}

.timeline-marker {
    position: relative;
    margin-right: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background-color: #86855e;
    border-radius: 50%;
    border: 4px solid #f5f1ed;
    box-shadow: 0 0 0 3px #86855e;
    z-index: 2;
    flex-shrink: 0;
}

.timeline-line {
    width: 3px;
    flex-grow: 1;
    background-color: #86855e;
    margin-top: 10px;
}

.timeline-item:last-child .timeline-line {
    display: none;
}

.timeline-content {
    flex: 1;
    padding-bottom: 20px;
}

.timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, #86855e 0%, #3e4233 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-title {
    font-size: 1.8rem;
    color: #3e4233;
    margin-bottom: 20px;
    font-weight: 500;
}

.timeline-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: start;
    transition: all 0.3s ease;
}

.timeline-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.timeline-text p {
    color: #5a5a5a;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

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

.timeline-text strong {
    color: #3e4233;
    font-weight: 600;
}

.timeline-closing {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #f5f1ed;
    text-align: center;
    font-size: 1.1rem;
    color: #86855e;
}

.timeline-closing em {
    font-style: italic;
    color: #3e4233;
}

.timeline-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 250px;
}

.partners-section {
      padding: 80px 20px;
      position: relative;
      overflow: hidden;
    }

    .partners-section h2 {
      font-weight: 500;
      font-size: 20px;
      text-align: center;
      margin-bottom: 10px;
    }

    .partners-section p {
      max-width: 800px;
      margin: 0 auto 40px;
      text-align: center;
      font-size: 18px;
      line-height: 1.6;
      color: #6e6a57;
    }

    .carousel {
      display: flex;
      gap: 40px;
      transition: transform 0.6s ease;
    }

    .carousel-wrapper {
      overflow: hidden;
      max-width: 80%;
      margin: 0 auto;
    }

    .partner {
      flex: 0 0 200px;
      opacity: 0.6;
      transition: opacity 0.3s ease;
    }

    .partner:hover {
      opacity: 1;
    }

    .partner img {
      width: 100%;
      height: auto;
      filter: grayscale(100%) brightness(0.8);
      transition: filter 0.3s ease;
    }

    .partner img:hover {
      filter: none;
    }

    .arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: #fff;
      border-radius: 50%;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      width: 40px;
      height: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      transition: background 0.3s;
      z-index: 5;
    }

    .arrow:hover {
      background: #f0f0f0;
    }

    .arrow.left { left: 40px; }
    .arrow.right { right: 40px; }

    /* 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;
}

/* 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);
}

/* ============================================
   RESPONZIVNÍ STYLY - O NÁS STRÁNKA
   ============================================ */

/* Tablet - 768px a níže */
@media (max-width: 768px) {
    
    /* Hero sekce se sliderem */
    .slider,
    .slide {
        height: 100vh;
        min-height: 500px;
    }
    
    .hero-content {
        left: 30px;
        right: 30px;
        max-width: calc(100% - 60px);
        padding: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
        white-space: normal;
        line-height: 1.1;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-content .cta-button,
    .hero-content .cta-button2 {
        font-size: 1rem;
        padding: 12px 24px;
        display: block;
        text-align: center;
        margin: 0 0 10px 0;
        width: 100%;
    }
    
    .dots {
        bottom: 20px;
    }
    
    /* Média sekce */
    .media-section {
        padding: 60px 20px;
    }
    
    .media-title {
        font-size: 1.6rem;
    }
    
    .media-subtitle {
        font-size: 1.5rem;
        margin-bottom: 40px;
    }
    
    .media-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .media-card {
        padding: 25px;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .card-icon i {
        font-size: 24px;
    }
    
    .card-title {
        font-size: 1.15rem;
        margin-bottom: 12px;
    }
    
    .card-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    /* Story sekce - Vladka */
    .story-section {
        padding: 60px 20px;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-text {
        padding-right: 0;
        order: 2;
    }
    
    .story-image {
        order: 1;
    }
    
    .story-name {
        font-size: 2.2rem;
        margin-bottom: 5px;
    }
    
    .story-role {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .story-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .quote-box {
        padding: 30px;
        margin: 30px 0;
    }
    
    .quote-mark {
        font-size: 4rem;
        top: 5px;
        left: 15px;
    }
    
    .quote-text {
        font-size: 1.05rem;
        padding-left: 15px;
        margin-bottom: 12px;
    }
    
    .quote-author {
        font-size: 1rem;
        padding-right: 15px;
    }
    
    .story-tags {
        gap: 10px;
        margin-top: 25px;
    }
    
    .tag {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .timeline-badge {
        bottom: 20px;
        right: 20px;
        padding: 15px 25px;
    }
    
    .timeline-years {
        font-size: 1.6rem;
    }
    
    .timeline-subtitle {
        font-size: 0.85rem;
    }
    
    /* Timeline sekce */
    .timeline-section {
        padding: 60px 20px;
    }
    
    .timeline-main-title {
        font-size: 2.2rem;
        margin-bottom: 8px;
    }
    
    .timeline-main-subtitle {
        font-size: 1.1rem;
        margin-bottom: 50px;
    }
    
    .timeline-item {
        margin-bottom: 40px;
    }
    
    .timeline-marker {
        margin-right: 25px;
    }
    
    .timeline-dot {
        width: 16px;
        height: 16px;
        border: 3px solid #f5f1ed;
    }
    
    .timeline-year {
        font-size: 1rem;
        padding: 6px 20px;
        margin-bottom: 12px;
    }
    
    .timeline-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .timeline-card {
        grid-template-columns: 1fr;
        padding: 25px;
        gap: 20px;
    }
    
    .timeline-text p {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .timeline-image {
        order: -1;
    }
    
    .timeline-image img {
        min-height: 200px;
    }
    
    .timeline-closing {
        margin-top: 15px;
        padding-top: 15px;
        font-size: 1rem;
    }
    
    /* Partners sekce */
    .partners-section {
        padding: 60px 20px;
    }
    
    .partners-section h2 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .partners-section p {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .carousel-wrapper {
        max-width: 90%;
    }
    
    .partner {
        flex: 0 0 150px;
    }
    
    .arrow {
        width: 35px;
        height: 35px;
    }
    
    .arrow.left { left: 20px; }
    .arrow.right { right: 20px; }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    footer {
        padding: 40px 30px 20px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        margin-top: 30px;
    }
    
    /* 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) {
    
    /* Hero sekce */
    .slider,
    .slide {
        height: 100vh;
        min-height: 450px;
    }
    
    .slide {
        background-position: center;
    }
    
    .hero-content {
        left: 20px;
        right: 20px;
        max-width: calc(100% - 40px);
        padding: 1.2rem;
        top: 45%;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-content p {
        font-size: 0.79rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .hero-content .cta-button,
    .hero-content .cta-button2 {
        font-size: 0.95rem;
        padding: 11px 20px;
        margin-bottom: 8px;
    }
    
    .dots {
        bottom: 15px;
        gap: 8px;
    }
    
    .dot {
        height: 10px;
        width: 10px;
    }
    
    /* Média sekce */
    .media-section {
        padding: 40px 15px;
    }
    
    .media-title {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }
    
    .media-subtitle {
        font-size: 1.3rem;
        margin-bottom: 30px;
    }
    
    .media-grid {
        gap: 15px;
        margin-top: 30px;
    }
    
    .media-card {
        padding: 20px;
    }
    
    .card-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }
    
    .card-icon i {
        font-size: 22px;
    }
    
    .card-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .card-description {
        font-size: 0.9rem;
        margin-bottom: 18px;
    }
    
    .card-link {
        font-size: 0.9rem;
    }
    
    /* Story sekce */
    .story-section {
        padding: 40px 15px;
    }
    
    .story-content {
        gap: 30px;
    }
    
    .story-name {
        font-size: 1.9rem;
    }
    
    .story-role {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .story-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .quote-box {
        padding: 25px 20px;
        margin: 25px 0;
    }
    
    .quote-mark {
        font-size: 3.5rem;
        top: 0;
        left: 10px;
    }
    
    .quote-text {
        font-size: 1rem;
        padding-left: 10px;
        margin-bottom: 10px;
    }
    
    .quote-author {
        font-size: 0.95rem;
        padding-right: 10px;
    }
    
    .story-tags {
        gap: 8px;
        margin-top: 20px;
    }
    
    .tag {
        padding: 7px 14px;
        font-size: 0.85rem;
    }
    
    .timeline-badge {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
    }
    
    .timeline-years {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }
    
    .timeline-subtitle {
        font-size: 0.8rem;
        margin-top: 3px;
    }
    
    /* Timeline sekce */
    .timeline-section {
        padding: 40px 15px;
    }
    
    .timeline-main-title {
        font-size: 1.8rem;
        margin-bottom: 6px;
    }
    
    .timeline-main-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .timeline-item {
        margin-bottom: 35px;
        flex-direction: column;
    }
    
    .timeline-marker {
        margin-right: 0;
        margin-bottom: 15px;
        flex-direction: row;
        width: 100%;
    }
    
    .timeline-dot {
        width: 14px;
        height: 14px;
        margin-right: 15px;
    }
    
    .timeline-line {
        width: 100%;
        height: 2px;
        margin-top: 0;
        margin-left: 10px;
    }
    
    .timeline-item:last-child .timeline-marker {
        display: none;
    }
    
    .timeline-year {
        font-size: 0.95rem;
        padding: 5px 18px;
        margin-bottom: 10px;
    }
    
    .timeline-title {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .timeline-card {
        padding: 20px;
        gap: 15px;
    }
    
    .timeline-text p {
        font-size: 0.95rem;
        margin-bottom: 10px;
        line-height: 1.7;
    }
    
    .timeline-image img {
        min-height: 180px;
    }
    
    .timeline-closing {
        margin-top: 12px;
        padding-top: 12px;
        font-size: 0.95rem;
    }
    
    /* Partners sekce */
    .partners-section {
        padding: 40px 15px;
    }
    
    .partners-section h2 {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .partners-section p {
        font-size: 14px;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .carousel-wrapper {
        max-width: 100%;
    }
    
    .carousel {
        gap: 25px;
    }
    
    .partner {
        flex: 0 0 120px;
    }
    
    .arrow {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .arrow.left { left: 10px; }
    .arrow.right { right: 10px; }
    
    /* Footer */
    footer {
        padding: 30px 20px 15px;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .footer-logo {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .footer-text {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .footer-social {
        gap: 12px;
        justify-content: center;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .instagram-icon {
        width: 32px;
    }
    
    /* 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 */
    .slider,
    .slide {
        height: 100vh;
        min-height: 400px;
    }
    
    .hero-content {
        left: 15px;
        right: 15px;
        padding: 1rem;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-content p {
        font-size: 0.7rem;
    }
    
    .hero-content .cta-button,
    .hero-content .cta-button2 {
        font-size: 0.8rem;
        padding: 10px 18px;
    }
    
    /* Média */
    .media-title {
        font-size: 1.3rem;
    }
    
    .media-subtitle {
        font-size: 1.2rem;
    }
    
    /* Story */
    .story-name {
        font-size: 1.7rem;
    }
    
    .quote-box {
        padding: 20px 15px;
    }
    
    .quote-text {
        font-size: 0.95rem;
    }
    
    /* Timeline */
    .timeline-main-title {
        font-size: 1.6rem;
    }
    
    .timeline-title {
        font-size: 1.2rem;
    }
    
    .timeline-card {
        padding: 18px;
    }
    
    .timeline-text p {
        font-size: 0.9rem;
    }
    
    /* Partners */
    .partner {
        flex: 0 0 100px;
    }
    
    .carousel {
        gap: 20px;
    }
}