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

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

    /* Hero Section */
    .hero {
        height: 100vh;
        width: 100vw;
        background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/bg.png');
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .hero-content {
        text-align: center;
        z-index: 2;
        max-width: 800px;
        padding: 0 2rem;
    }

    .hero h1 {
        font-size: 3rem;
        font-weight: 800;
        color: #f4f1eb;
        margin-bottom: 1rem;
        animation: slideUp 1s ease-out;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    .mobile-title{
        display: none;
        font-size: 3rem;
        font-weight: 800;
        color: #f4f1eb;
        margin-bottom: 1rem;
        animation: slideUp 1s ease-out;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    .hero .subtitle {
        font-size: 1.5rem;
        color: #d4822a;
        margin-bottom: 2rem;
        animation: slideUp 1s ease-out 0.3s both;
        font-weight: 600;
    }

    .hero p {
        font-size: 1.2rem;
        color: #f4f1eb;
        margin-bottom: 3rem;
        animation: slideUp 1s ease-out 0.6s both;
        opacity: 0.9;
    }

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

    .cta-button {
        display: inline-block;
        padding: 1rem 2.5rem;
        background: white;
        color: rgb(0, 0, 0);
        text-decoration: none;
        border-radius: 50px;
        font-weight: 700;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        animation: slideUp 1s ease-out 0.9s both;
        box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
        cursor: pointer;
    }

    .cta-button:hover {
        transform: translateY(-3px);
        color: white;
        box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
        background: #ba881d;
    }

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

    .section h2 {
        font-size: 3rem;
        font-weight: 700;
        color: #2c1810;
        text-align: center;
        margin-bottom: 3rem;
        position: relative;
    }

    .section h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 150px;
        height: 4px;
        background: #ba881d;
        border-radius: 2px;
    }

    /* interier */
    .interier-wrapper {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 2rem;
        padding: 70px 100px;
        background: #1a1a1a;
    }

    .interier-text {
        flex: 1;
        font-size: 1.4rem;
        min-width: 300px;
        padding-bottom: 400px;
        color: white;
    }


    .interier-text h2{
        font-size: 3rem;
        position: relative;
        display: inline-block;
        padding-bottom: 50px;
    }

    .interier-text h2::after {
        content: "";
        position: absolute;
        left: 180px;
        bottom: 38px; /* posun podtržení dolů */
        width: 200px;
        height: 4px;
        background-color: #ba881d; /* vaše barva podtržení */
    }

    .pecu-pecen p{
        padding-top: 10px;
        font-size: 1.5rem;
    }

    .carousel-wrapper {
        flex: 1;
        min-width: 300px;
        max-width: 500px;
    }


    .carousel-container {
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(255, 255, 255, 0.448);
      position: relative;
    }

    .carousel-track {
      display: flex;
      transition: transform 0.4s ease-in-out;
    }

    .carousel-slide {
      min-width: 100%;
      box-sizing: border-box;
      padding: 0.75rem;
      display: flex;
    }

    .carousel-slide video,
    .carousel-slide img {
      width: 100%;
      max-height: 700px;
      object-fit: cover;
      border-radius: 10px;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    }


    /* Tečky - indikátory */
    .dots {
      text-align: center;
      margin-top: 1rem;
    }

    .dot {
      display: inline-block;
      width: 12px;
      height: 12px;
      margin: 0 6px;
      background-color: rgba(255, 255, 255, 0.448);
      border-radius: 50%;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    .dot.active {
      background-color: #ba881d;
      box-shadow: 0 0 5px #ba881d;
    }


    /* Opening Hours Card */
    .hours-card {
        background: #1a1a1ad3;
        border-radius: 20px;
        padding: 3rem;
        box-shadow: 0 20px 60px rgba(44, 24, 16, 0.1);
        margin-bottom: 3rem;
        transition: transform 0.3s ease;
        width: 636px;
    }

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

    .hours-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, fr));
        gap: 1.5rem;
    }

    .day-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
        background: #ffffff;
        border-radius: 20px;
        box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
        transition: all 0.3s ease;
    }

    .day-item:hover {
        transform: translateX(5px);
        transform: scale(1.1);
    }

    .day {
        font-weight: 700;
        color: #2c1810;
    }

    .hours-layout {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
        gap: 10rem;
        margin: 0 auto;
        padding: 2rem 1rem;
    }


    .hours-image img {
        width: 636px;
        height: 643.18px;
        border-radius: 20px;
        object-fit: cover;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }


    .time {
        color: #ba881dc8;
        font-weight: 700;
    }

    .closed {
        color: #ba881d;
        opacity: 0.7;
        font-weight: 700;
    }

    /* 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: 100%;
        max-width: 700px;
        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);
    }

/* Responsive */
    @media (max-width: 480px) {
        body {
          padding-top: 120px;
        }
        
        .section {
          padding: 1rem 0;
          padding-left: 0.5rem;
          padding-right: 0.5rem;
        }
        
        .container {
          padding: 10px;
        }

        .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;
        }
    }

    /* Mobilní zařízení (481px až 767px) */
    @media (min-width: 481px) and (max-width: 767px) {

        .hero h1 {
            font-size: 2.2rem;
        }

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

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

        .section {
            padding: 3rem 1.5rem;
        }

        .section h2 {
            font-size: 2.2rem;
        }

        /* Interier pro větší mobily */
        .interier-wrapper {
            flex-direction: column;
            padding: 3rem 1.5rem;
            gap: 2.5rem;
        }

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

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

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

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

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

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

        /* Hodiny pro větší mobily */
        .hours-layout {
            flex-direction: column;
            gap: 2.5rem;
            padding: 1.5rem;
        }

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

        .hours-image img {
            width: 100%;
            height: auto;
        }

        /* Kontakt pro větší mobily */
        .contact {
            padding: 3rem 1.5rem;
        }

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

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

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

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

        .social-icon {
            width: 35px;
            height: 35px;
        }

        .booking-icon {
            width: 27px;
        }

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

    /* Tablety a menší desktop (768px až 1024px) */
    @media (min-width: 768px) and (max-width: 1024px) {
        .hero h1 {
            font-size: 2.5rem;
        }

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

        .section {
            padding: 4rem 2rem;
        }

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

        /* Interier pro tablety */
        .interier-wrapper {
            padding: 4rem 2rem;
            gap: 3rem;
        }

        .interier-text {
            padding-bottom: 200px;
            font-size: 1.3rem;
        }

        .interier-text h2 {
            font-size: 2.5rem;
        }

        .interier-text h2::after {
            width: 180px;
            left: 20px;
        }

        .carousel-wrapper {
            max-width: 450px;
        }

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

        /* Hodiny pro tablety */
        .hours-layout {
            flex-direction: column;
            gap: 3rem;
            padding: 2rem;
        }

        .hours-card {
            width: 100%;
            max-width: 600px;
            margin: 0 auto;
            padding: 2.5rem;
        }

        .hours-image {
            display: flex;
            justify-content: center;
        }

        .hours-image img {
            display: block;
            margin-left: 0;
            width: 100%;
            max-width: 600px;
            height: auto;
        }

        /* Kontakt pro tablety */
        .contact {
            padding: 4rem 2rem;
        }

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

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

        .iframe-map iframe {
            width: 100% !important;
            max-width: 600px !important;
            height: 350px !important;
        }

        .social-icon {
            width: 38px;
            height: 38px;
        }
    }

    /* Desktop nad 1024px - OPRAVENO pro větší mapu */
    @media (min-width: 1025px) {
        .hours-layout {
            flex-direction: row;
            gap: 8rem;
            padding: 2rem 3rem;
        }

        .hours-card {
            width: 550px;
            flex-shrink: 0;
        }

        .hours-image {
            flex-shrink: 0;
        }

        .hours-image img {
            width: 550px;
            height: auto;
        }

                .interier-wrapper {
            padding: 4rem 2rem;
            gap: 3rem;
        }

        .interier-text {
            padding-bottom: 200px;
            font-size: 1.3rem;
        }

        .interier-text h2 {
            font-size: 2.5rem;
        }

        .interier-text h2::after {
            width: 180px;
            left: 20px;
        }

        .carousel-wrapper {
            max-width: 450px;
        }

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

        .contact {
            padding: 5rem 2rem;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 4rem;
            max-width: 1400px;
            margin: 0 auto;
            align-items: start;
        }

        .contact-info {
            padding-right: 1rem;
        }

        .iframe-map {
            justify-content: center;
            display: flex;
        }

        .iframe-map iframe {
            width: 100%;
            min-width: 500px;
            max-width: 700px;
            height: 450px;
            border: none;
            border-radius: 10px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            font-size: 1.2rem;
        }
    }

    /* Velmi velké obrazovky (nad 1440px) - VYLEPŠENO */
    @media (min-width: 1441px) {
        .interier-wrapper {
            padding: 70px 150px;
            gap: 4rem;
        }

        .hours-layout {
            gap: 10rem;
            padding: 3rem 5rem;
        }

        .hours-card {
            width: 600px;
        }

        .hours-image img {
            width: 600px;
        }

        .contact {
            padding: 6rem 3rem;
        }

        .contact-content {
            max-width: 1600px;
            gap: 5rem;
            grid-template-columns: 1fr 1.3fr;
        }

        .iframe-map iframe {
            min-width: 600px;
            max-width: 800px;
            height: 500px;
        }
    }

    /* Navigace - zachováno jak je */
    @media (max-width: 1024px) {
        body {
          padding-top: 140px;
        }
        
        .section {
          padding: 3rem 0;
          padding-left: 1.5rem;
          padding-right: 1.5rem;
        }
        
        .nav {
          padding-left: 1.5rem;
          padding-right: 2rem;
        }
        
        .nav-links {
          gap: 1.5rem;
        }
        
        .nav-links a {
          font-size: 18px;
          color: #000000;
        }
    }

    /* Tablety na šíř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: #000000;
        }
        
        .logo img {
          width: 100px;
        }
        
        .header.scrolled .logo img {
          width: 70px;
        }
    }

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

    /* 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: #000;
        }
        
        .logo img {
          width: 60px;
        }
        
        .header.scrolled .logo img {
          width: 50px;
        }
    }