
    :root {
      --secondary-color: #ba881d;
      --bg-light: #fff;
      --transition: all 0.4s ease;
    }

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

    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
        color: #000000;
        overflow-x: hidden;
        background-color: #000;
    }

    .section {
        padding: 5rem 0;
        margin: 0 auto;
        padding-left: 2rem;
        padding-right: 2rem;
    }


    .kategorie {
      padding: 200px 40px;
      max-width: 100%;
      margin: 0 auto;
    }
    
    .section-title {
      font-size: 3rem;
      margin-bottom: 30px;
      text-align: center;
      position: relative;
      padding-bottom: 15px;
      color: white;
    }
    
    .section-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 150px;
      height: 3px;
      background-color: var(--secondary-color);
    }

    /* Header */
    .header {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
        padding: 1rem 0;
        transition: all 0.3s ease;
    }

    /* Scrollnutý stav */
    .header.scrolled {
        background: #ffffff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        padding: 0.5rem 0; /* menší výška */
    }

    /* Logo ve výchozím stavu */
    .logo img {
        width: 125px;
        border-radius: 50%;
        border: 4px solid #ffffff;
        transition: all 0.3s ease;
    }

    /* Logo při scrollu */
    .header.scrolled .logo img {
        width: 80px;
        border: 2px solid #333333;
    }

    /* Navigační odkazy při scrollu */
    .header.scrolled .nav-links a {
        color: #000;
    }

    .header.scrolled .nav-links a:hover {
        color: #ba881d;
    }


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

    .logo img{
        width: 125px;
        border-radius: 50%;       
        border: 4px solid #ffffff; 
    }

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

    .nav-links a {
        color: #ffff;
        text-decoration: none;
        font-weight: 700;
        font-size: 20px;
        transition: color 0.3s ease;
        cursor: pointer;
    }

    .nav-links a:hover {
        color: #ba881d;
    }

      /* Services section */
    
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin-top: 50px;
    }
    
    .service-card {
      background-color: var(--bg-light);
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    
    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    }
    
    .service-image {
      height: 500px;
      overflow: hidden;
    }
    
    .service-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s ease;
    }
    
    .service-card:hover .service-image img {
      transform: scale(1.1);
    }
    
    .service-content {
      padding: 30px;
      text-align: center;
    }
    
    .service-content h3 {
      font-size: 1.5rem;
      margin-bottom: 15px;
    }
    
    .service-content p {
      font-size: 1rem;
      color: #555;
      margin-bottom: 20px;
    }
    
    .service-icon {
      font-size: 3rem;
      color: var(--primary-color);
      margin-bottom: 20px;
    }

    .button {
      background-color: var(--bg-light);
      color: var(--text-dark);
      padding: 14px 32px;
      font-weight: 600;
      font-size: 1.1rem;
      text-decoration: none;
      border-radius: 30px;
      transition: var(--transition);
      display: inline-block;
      cursor: pointer;
      border: none;
    }
    
    .button:hover {
      background-color: var(--secondary-color);
      transform: translateY(-3px);
      color: white;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

        /* Kontakt */
    .contact {
        background: #1a1a1a;
        color: #fff;
        max-width: 100%;
    }

    .contact h2 {
        color: #fff;
    }


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

    .contact-info h3 {
        font-size: 1.8rem;
        font-weight: 600;
        margin-bottom: 2rem;
        color: #fff;
    }

    .contact-item {
        display: flex;
        align-items: baseline;
        margin-bottom: 2rem;
        gap: 1rem;
        font-size: 1rem;
    }

    .fa-solid,.fas {
        font-weight: 900;
        font-size: 22px;
        color: #ba881d;
    }

    .contact-item div {
        color: #adb5bd;
        line-height: 1.6;
    }

    .contact-item strong {
        color: #fff;
        display: block;
        margin-bottom: 0.3rem;
    }

    .iframe-map {
        display: flex;
        justify-content: end; /* Správně zarovná iframe doprava */
    }

    .iframe-map iframe {
        width: 600px;
        height: 400px;
        border: none;
        border-radius: 10px;
    }

    /* Footer */
    .footer {
        background: #36383c;
        color: #f4f1eb;
        text-align: center;
        padding: 1.5rem ;
    }

    .footer p {
        opacity: 0.8;
        font-size: 1.1rem;
    }

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

    .booking-icon {
    width: 30px;
    height: auto;
    vertical-align: middle;
    border-radius: 50%;
    align-items: center;
    transition: opacity 0.3s ease;
    }

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

    .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: white;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    }

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


        /* Tablety a menší desktopy (1024px a méně) */
@media (max-width: 1024px) {
    body {
      padding-top: 140px;
    }
    
    .nav {
        padding-left: 1.5rem;
        padding-right: 2rem;
    }
    
    .nav-links {
      gap: 1.5rem;
    }
    
    .nav-links a {
      font-size: 18px;
      color: #ffffff;
    }
    
    .section {
        padding: 3rem 0;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .kategorie {
        padding: 150px 20px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-image {
        height: 400px;
    }
    
    .iframe-map iframe {
        width: 100%;
        max-width: 500px;
        height: 350px;
    }
}

/* Tablety na výšku (768px a méně) */
@media (max-width: 768px) {
    body {
      padding-top: 120px;
    }
    
    .section {
      padding: 2rem 0;
      padding-left: 1rem;
      padding-right: 1rem;
    }
    
    .nav {
      padding-left: 1rem;
      padding-right: 1rem;
    }
    
    .nav-links {
      gap: 1rem;
    }
    
    .nav-links a {
      font-size: 16px;
      color: #ffffff;
    }
    
    .logo img {
      width: 100px;
    }
    
    .header.scrolled .logo img {
      width: 70px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-title::after {
        width: 120px;
        height: 2px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-image {
        height: 300px;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .iframe-map {
        justify-content: center;
    }
    
    .iframe-map iframe {
        height: 300px;
    }
    
    .contact-info h3 {
        font-size: 1.5rem;
    }
}

/* Mobily - 600px a méně */
@media (max-width: 600px) {
    body {
      padding-top: 100px;
    }
    
    .section {
      padding: 1.5rem 0;
      padding-left: 0.75rem;
      padding-right: 0.75rem;
    }
    
    .nav {
      flex-direction: column;
      gap: 1rem;
      padding: 1rem;
    }
    
    .nav-links {
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.75rem;
    }
    
    .nav-links a {
      font-size: 14px;
      font-weight: 600;
      color: #ffffff;
    }
    
    .logo img {
      width: 80px;
    }
    
    .header.scrolled .logo img {
      width: 60px;
    }
    
    .kategorie {
        padding: 100px 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-title::after {
        width: 80px;
    }
    
    .service-content h3 {
        font-size: 1.2rem;
    }
    
    .service-content p {
        font-size: 0.9rem;
    }
    
    .button {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .contact-item {
        font-size: 0.9rem;
    }
    
    .fa-solid, .fas {
        font-size: 18px;
    }
    
    .footer p {
        font-size: 1rem;
    }
    
    .footer-social {
        gap: 10px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Mobilní telefony (480px a méně) */
@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .nav {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .logo img {
        width: 60px;
        border: 2px solid #ffffff;
    }

    .header.scrolled .logo img {
        width: 60px;
    }

    .hero h1 {
        font-size: 1.7rem;
        padding: 0 1rem;
    }

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

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

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .section {
        padding: 2rem 1rem;
    }

    .section h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    /* Interier pro malé mobily */
    .interier-wrapper {
        flex-direction: column;
        padding: 2rem 1rem;
        gap: 2rem;
    }

    .interier-text {
        padding-bottom: 1rem;
        font-size: 1.1rem;
        min-width: 100%;
    }

    .interier-text h2 {
        font-size: 2rem;
        text-align: center;
    }

    .interier-text h2::after {
        left: 50%;
        transform: translateX(-50%);
        width: 120px;
    }

    .pecu-pecen p {
        font-size: 1.2rem;
    }

    .carousel-wrapper {
        max-width: 100%;
        min-width: 100%;
    }

    .carousel-slide video,
    .carousel-slide img {
        max-height: 450px;
    }

    /* Hodiny pro malé mobily */
    .hours-layout {
        flex-direction: column;
        gap: 2rem;
        padding: 1rem;
    }

    .day {
        font-size: 12px;
    }
    .time {
        font-size: 12px;
    }

    .hours-card {
        width: 100%;
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .hours-image img {
        width: 100%;
        height: 400px;
        max-width: 100%;
    }

    /* Kontakt pro malé mobily */
    .contact {
        padding: 2rem 1rem;
    }

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

    .contact-info h3 {
        font-size: 1.4rem;
    }

    .contact-item {
        font-size: 0.9rem;
    }

    .iframe-map {
        justify-content: center !important;
    }

    .iframe-map iframe {
        width: 100% !important;
        height: 250px !important;
    }

    .footer {
        padding: 1.5rem 1rem;
        font-size: 14px;
    }

    .social-icon {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .booking-icon {
        width: 24px;
    }

    .instagram-icon {
        width: 28px;
    }
}

/* Extra malé mobily - 360px a méně */
@media (max-width: 360px) {
    body {
      padding-top: 140px;
    }
    
    .nav-links {
      gap: 0.5rem;
    }
    
    .nav-links a {
      font-size: 12px;
      color: #ffffff;
    }
    
    .logo img {
      width: 60px;
    }
    
    .header.scrolled .logo img {
      width: 50px;
    }
}