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

      body {
        font-family: 'Inter', sans-serif;
        background: #ffffff;
        color: #2c2c2c;
        line-height: 1.6;
        min-height: 100vh;
        padding-top: 170px;
      }

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

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

      /* 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: #000000;
          text-decoration: none;
          font-weight: 700;
          font-size: 20px;
          transition: color 0.3s ease;
          cursor: pointer;
      }

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

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

      .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;
        background: linear-gradient(135deg, #ba881d7e, #ba881d72);
        color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        text-align: center;
        padding: 30px;
        z-index: 2;
        backdrop-filter: blur(5px);
      }

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

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

      .contact h2 {
          color: #fff;
      }

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

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

      .iframe-map iframe {
          width: 100%;
          max-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;
          justify-content: flex-start;
          margin-top: 1rem;
      }

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

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

      /* Responzivní design */
      
      /* Tablety na výšku - 1024px a méně */
      @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;
        }
        
        .gallery {
          grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
          gap: 25px;
        }
        
        .card {
          height: 500px;
        }
        
        .contact-content {
          gap: 1.5rem;
        }
        
        .iframe-map iframe {
          height: 350px;
        }
      }

      /* 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;
        }
        
        .logo img {
          width: 100px;
        }
        
        .header.scrolled .logo img {
          width: 70px;
        }
        
        .gallery {
          grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
          gap: 20px;
        }
        
        .card {
          height: 400px;
        }
        
        .overlay {
          padding: 20px;
        }
        
        .overlay h3 {
          font-size: 1.5rem;
        }
        
        .overlay .price {
          font-size: 1.2rem;
        }
        
        .overlay .description {
          font-size: 0.9rem;
        }
        
        .contact-content {
          grid-template-columns: 1fr;
          gap: 2rem;
        }
        
        .contact-info h3 {
          font-size: 1.5rem;
        }
        
        .contact-item {
          font-size: 0.9rem;
        }
        
        .iframe-map {
          justify-content: center;
        }
        
        .iframe-map iframe {
          height: 300px;
        }
      }

      /* 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;
        }
        
        .logo img {
          width: 80px;
        }
        
        .header.scrolled .logo img {
          width: 60px;
        }
        
        .gallery {
          grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
          gap: 15px;
        }
        
        .card {
          height: 350px;
        }
        
        .overlay {
          padding: 15px;
        }
        
        .overlay h3 {
          font-size: 1.3rem;
        }
        
        .overlay .price {
          font-size: 1.1rem;
        }
        
        .overlay .description {
          font-size: 0.85rem;
        }
        
        .contact-info h3 {
          font-size: 1.3rem;
        }
        
        .contact-item {
          font-size: 0.85rem;
          flex-direction: column;
          align-items: flex-start;
          gap: 0.5rem;
        }
        
        .fa-solid, .fas {
          font-size: 18px;
        }
        
        .iframe-map iframe {
          height: 250px;
        }
        
        .footer p {
          font-size: 1rem;
        }
        
        .footer-social {
          gap: 10px;
        }
        
        .social-icon {
          width: 35px;
          height: 35px;
          font-size: 1rem;
        }
      }

      /* Malé mobily - 480px a méně */
      @media (max-width: 480px) {
        body {
          padding-top: 120px;
        }
        
        .section {
          padding: 1rem 0;
          padding-left: 0.5rem;
          padding-right: 0.5rem;
        }
        
        .container {
          padding: 10px;
        }
        
        .nav {
          padding: 0.75rem;
        }
        
        .nav-links a {
          font-size: 13px;
        }
        
        .logo img {
          width: 70px;
        }
        
        .header.scrolled .logo img {
          width: 55px;
        }
        
        .gallery {
          grid-template-columns: 1fr;
          gap: 15px;
        }
        
        .card {
          height: 300px;
        }
        
        .overlay {
          padding: 12px;
        }
        
        .overlay h3 {
          font-size: 1.2rem;
        }
        
        .overlay .price {
          font-size: 1rem;
        }
        
        .overlay .description {
          font-size: 0.8rem;
        }
        
        .contact-item {
          font-size: 0.8rem;
        }
        
        .iframe-map iframe {
          height: 200px;
        }
        
        .footer p {
          font-size: 0.9rem;
        }
        
        .social-icon {
          width: 32px;
          height: 32px;
          font-size: 0.9rem;
        }
        
        .booking-icon {
          width: 25px;
        }
        
        .instagram-icon {
          width: 30px;
        }
      }

      /* 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;
        }
        
        .logo img {
          width: 60px;
        }
        
        .header.scrolled .logo img {
          width: 50px;
        }
        
        .card {
          height: 400px;
        }
        
        .overlay {
          padding: 10px;
        }
        
        .overlay h3 {
          font-size: 1.1rem;
        }
        
        .overlay .price {
          font-size: 0.95rem;
        }
        
        .overlay .description {
          font-size: 0.75rem;
        }
        
        .contact-item {
          font-size: 0.75rem;
        }
        
        .iframe-map iframe {
          height: 180px;
        }
      }