* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Raleway", sans-serif;
    }

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

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

        .logo img {
            width: 155px;
            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: #000000;
            text-decoration: none;
            font-size: 23px;
            transition: color 0.3s ease;
            cursor: pointer;
        }

        /* 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: #000;
            margin: 3px 0;
            transition: 0.3s;
        }

        .underline-hover {
            position: relative;
            cursor: pointer;
        }

        .underline-hover::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -3px;
            height: 3px;
            width: 0;
            background-color: #bd9e89;
            transition: width 0.3s ease;
        }

        .underline-hover:hover::after {
            width: 100%;
        }

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

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

      .gallery {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
        margin-top: 250px;
        padding: 20px 0;
        margin-bottom: 80px;
      }

      .card {
        position: relative;
        overflow: hidden;
        border-radius: 20px;
        box-shadow: 0 8px 32px rgba(0,0,0,0.12);
        background-color: white;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        cursor: pointer;
        height: 600px;
      }

      .card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(210, 105, 30, 0.1), rgba(205, 133, 63, 0.1));
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 1;
      }

      .card:hover::before {
        opacity: 1;
      }

      .card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      }

      .overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        text-align: center;
        padding: 30px;
        z-index: 2;
      }

      .overlay h3 {
        font-size: 1.8rem;
        font-weight: 600;
        margin-bottom: 15px;
        transform: translateY(20px);
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      }

      .overlay .price {
        font-size: 1.4rem;
        font-weight: 600;
        color: white;
        margin-bottom: 15px;
        transform: translateY(20px);
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
      }

      .overlay .description {
        font-size: 0.95rem;
        opacity: 0.9;
        line-height: 1.5;
        transform: translateY(20px);
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        transition-delay: 0.1s;
      }

      .card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 60px rgba(0,0,0,0.2);
      }

      .card:hover img {
        transform: scale(1.1);
      }

      .card:hover .overlay {
        opacity: 1;
      }

      .card:hover .overlay h3,
      .card:hover .overlay .price,
      .card:hover .overlay .description {
        transform: translateY(0);
      }

      /* Loading animace */
      .card {
        animation: fadeInUp 0.6s ease forwards;
        opacity: 0;
        transform: translateY(30px);
      }

      .card:nth-child(1) { animation-delay: 0.1s; }
      .card:nth-child(2) { animation-delay: 0.2s; }
      .card:nth-child(3) { animation-delay: 0.3s; }
      .card:nth-child(4) { animation-delay: 0.4s; }
      .card:nth-child(5) { animation-delay: 0.5s; }
      .card:nth-child(6) { animation-delay: 0.6s; }
      .card:nth-child(7) { animation-delay: 0.7s; }
      .card:nth-child(8) { animation-delay: 0.8s; }
      .card:nth-child(9) { animation-delay: 0.9s; }
      .card:nth-child(10) { animation-delay: 1.0s; }
      .card:nth-child(11) { animation-delay: 1.1s; }
      .card:nth-child(12) { animation-delay: 1.2s; }

      @keyframes fadeInUp {
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

        /* Kontakt */
    .contact {
        background: #bd9e89;
        color: #fff;
        max-width: 100%;
        padding-left: 50px;
        padding-right: 50px;
        padding-bottom: 80px;
        padding-top: 0;
    }

    .contact h2 {
        color: #ffffff;
        text-align: center;
        padding-top: 40px;
        padding-bottom: 50px;
        font-size: 2.8rem;
    }

    .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: #ffffff;
    }

    .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: #ffffff
    }

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

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

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

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

    /* Footer */
    .footer {
        background: #b0927d;
        color: #ffffff;
        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: #977a66;
        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: #ffffff;
    color: #222;
    transform: translateY(-5px);
    }


    /* Responzivní styly pro menu.php */

/* Tablet (1024px a méně) */
@media (max-width: 1024px) {
    .container {
        padding: 15px 40px 40px;
    }
    
    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-top: 220px;
        margin-bottom: 60px;
    }
    
    .card {
        height: 550px;
    }
    
    .overlay h3 {
        font-size: 1.6rem;
    }
    
    .overlay .price {
        font-size: 1.2rem;
    }
    
    .contact {
        padding-left: 30px;
        padding-right: 30px;
    }
    
    .contact h2 {
        font-size: 2.4rem;
    }
}

/* Mobile (768px a méně) */
@media (max-width: 768px) {
    .container {
        padding: 10px 15px 30px;
    }
    
    .gallery {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 150px;
        margin-bottom: 40px;
    }
    
    .card {
        height: 400px;
        border-radius: 15px;
    }
    
    .card:hover {
        transform: translateY(-5px);
    }
    
    .overlay {
        padding: 20px;
    }
    
    .overlay h3 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    
    .overlay .price {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .overlay .description {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .contact {
        padding: 20px;
    }
    
    .contact h2 {
        font-size: 2rem;
        padding-top: 30px;
        padding-bottom: 30px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info h3 {
        font-size: 1.5rem;
    }
    
    .contact-item {
        font-size: 0.9rem;
    }
    
    .iframe-map {
        justify-content: center;
    }
    
    .iframe-map iframe {
        height: 300px;
        border-radius: 8px;
    }
    
    .footer p {
        font-size: 0.95rem;
    }
}

/* Mobile malý (480px a méně) */
@media (max-width: 480px) {
    .container {
        padding: 5px 10px 20px;
    }
    
    .gallery {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 120px;
        margin-bottom: 30px;
        padding: 10px 0;
    }
    
    .card {
        height: 350px;
        border-radius: 12px;
    }
    
    .card:hover {
        transform: translateY(-3px);
    }
    
    .overlay {
        padding: 15px;
    }
    
    .overlay h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .overlay .price {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .overlay .description {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .contact h2 {
        font-size: 1.8rem;
    }
    
    .contact-info h3 {
        font-size: 1.3rem;
    }
    
    .contact-item {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
    
    .fa-solid, .fas {
        font-size: 18px;
    }
    
    .iframe-map iframe {
        height: 250px;
        border-radius: 6px;
    }
    
    .footer p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .booking-icon {
        width: 25px;
    }
    
    .instagram-icon {
        width: 30px;
    }
}

/* Landscape orientace na mobilu */
@media (max-width: 768px) and (orientation: landscape) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 120px;
    }
    
    .card {
        height: 300px;
    }
    
    .overlay h3 {
        font-size: 1.2rem;
    }
    
    .overlay .price {
        font-size: 1rem;
    }
    
    .overlay .description {
        font-size: 0.8rem;
    }
}

/* Extra malé mobilní zařízení (360px a méně) */
@media (max-width: 360px) {
    .container {
        padding: 5px 8px 15px;
    }
    
    .gallery {
        gap: 12px;
        margin-top: 110px;
    }
    
    .card {
        height: 320px;
        border-radius: 10px;
    }
    
    .overlay {
        padding: 12px;
    }
    
    .overlay h3 {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }
    
    .overlay .price {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }
    
    .overlay .description {
        font-size: 0.8rem;
        line-height: 1.2;
    }
    
    .contact {
        padding: 15px 8px;
    }
    
    .contact h2 {
        font-size: 1.6rem;
        padding-top: 25px;
        padding-bottom: 25px;
    }
    
    .contact-info h3 {
        font-size: 1.2rem;
    }
    
    .contact-item {
        font-size: 0.8rem;
        margin-bottom: 1.2rem;
    }
    
    .iframe-map iframe {
        height: 220px;
    }
}

/* Vylepšení pro dotykové zařízení */
@media (hover: none) and (pointer: coarse) {
    .card:hover {
        transform: none;
        box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    }
    
    .card:hover img {
        transform: none;
    }
  
    .card .overlay h3,
    .card .overlay .price,
    .card .overlay .description {
        transform: translateY(0);
    }
    
    .social-icon:hover {
        transform: none;
        background-color: #977a66;
    }
}

/* Optimalizace pro velmi nízké obrazovky */
@media (max-height: 600px) {
    .gallery {
        margin-top: 100px;
    }
    
    .card {
        height: 280px;
    }
    
    .overlay h3 {
        font-size: 1.1rem;
    }
    
    .overlay .price {
        font-size: 0.95rem;
    }
    
    .overlay .description {
        font-size: 0.8rem;
    }
}

/* Oprava pro grid na velmi úzkých obrazovkách */
@media (max-width: 320px) {
    .gallery {
        grid-template-columns: 1fr;
        margin-left: -5px;
        margin-right: -5px;
    }
    
    .card {
        margin: 0 5px;
    }
}
