﻿
    /* ===== RESET & BASE ===== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    html {
      scroll-behavior: smooth;
    }
    body {
      font-family: 'Open Sans', sans-serif;
      font-weight: 300;
      color: #3e2e1f;
      background: #f7f2eb;
      line-height: 1.6;
    }
    h1, h2, h3, h4 {
      font-family: 'Cinzel', serif;
      font-weight: 600;
      letter-spacing: 0.5px;
    }
    a {
      text-decoration: none;
      color: inherit;
    }
    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 30px;
    }
    .section {
      padding: 70px 0;
    }
    .section-title {
      font-size: 2.4rem;
      text-align: center;
      margin-bottom: 20px;
      color: #3e2e1f;
      position: relative;
    }
    .section-title::after {
      content: '';
      display: block;
      width: 80px;
      height: 3px;
      background: linear-gradient(90deg, #b8860b, #d4a74a);
      margin: 12px auto 0;
    }
    .section-title .highlight {
      color: #846006;
    }
    .section-subtitle {
      text-align: center;
      font-size: 1.15rem;
      color: #5a4532;
      max-width: 700px;
      margin: 0 auto 50px;
      font-style: italic;
    }
    .bg-light {
      background: #f0e8df;
    }
    .bg-dark {
      background: #2a1f16;
      color: #e8ddd2;
    }
    .bg-dark .section-title {
      color: #e8ddd2;
    }
    .bg-dark .section-title .highlight {
      color: #d4a74a;
    }
    .bg-dark .section-subtitle {
      color: #cbb8a8;
    }
    img {
      max-width: 100%;
      display: block;
    }

    /* ===== NAVBAR ===== */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      background: rgba(30, 22, 16, 0.92);
      backdrop-filter: blur(6px);
      border-bottom: 1px solid rgba(212, 167, 74, 0.25);
      padding: 0 20px;
      transition: background 0.3s;
      box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    }
    .nav-container {
      max-width: 1280px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }
    .nav-logo img {
      height: 50px;
      width: auto;
      filter: brightness(0) invert(1);
      transition: filter 0.3s;
    }
    .nav-links ul {
      display: flex;
      list-style: none;
      gap: 28px;
      align-items: center;
    }
    .nav-links a {
      color: #eee6db;
      font-family: 'Cinzel', serif;
      font-size: 0.85rem;
      font-weight: 400;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 6px 0;
      border-bottom: 2px solid transparent;
      transition: 0.2s;
    }
    .nav-links a:hover {
      color: #d4a74a;
      border-bottom-color: #d4a74a;
    }
    .nav-hamburger {
      display: none;
      font-size: 1.8rem;
      color: #eee6db;
      cursor: pointer;
      user-select: none;
    }
    @media (max-width: 920px) {
      .nav-links {
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: rgba(30, 22, 16, 0.97);
        backdrop-filter: blur(6px);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        border-top: 1px solid rgba(212, 167, 74, 0.2);
      }
      .nav-links.open {
        max-height: 600px;
      }
      .nav-links ul {
        flex-direction: column;
        padding: 25px 0;
        gap: 18px;
      }
      .nav-hamburger {
        display: block;
      }
    }

    /* ===== SLIDER ===== */
    .slider-hero {
      margin-top: 72px;
      position: relative;
      width: 100%;
      height: 86vh;
      max-height: 700px;
      overflow: hidden;
      background: #2a1f16;
    }
    .slider-wrapper {
      display: flex;
      width: 100%;
      height: 100%;
      transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .slide {
      flex: 0 0 100%;
      height: 100%;
      position: relative;
    }
    .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .slide-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 30px 40px 50px;
      background: linear-gradient(0deg, rgba(20,15,10,0.85) 0%, transparent 100%);
      color: #f5ede4;
      text-align: center;
    }
    .slide-overlay h1 {
      font-size: 3.2rem;
      font-weight: 700;
      letter-spacing: 4px;
      text-shadow: 0 2px 20px rgba(0,0,0,0.6);
    }
    .slide-overlay h1 span {
      color: #d4a74a;
    }
    .slide-overlay p {
      font-size: 1.2rem;
      max-width: 600px;
      margin: 8px auto 20px;
      font-weight: 300;
      text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    }
    .slide-cta a {
      display: inline-block;
      padding: 12px 32px;
      margin: 0 8px;
      font-family: 'Cinzel', serif;
      font-weight: 600;
      border-radius: 30px;
      transition: 0.25s;
      border: 2px solid #d4a74a;
      color: #f5ede4;
      font-size: 0.9rem;
      letter-spacing: 1px;
    }
    .slide-cta a.primary {
      background: #d4a74a;
      color: #1f160e;
      border-color: #d4a74a;
    }
    .slide-cta a.primary:hover {
      background: #b8860b;
      border-color: #b8860b;
    }
    .slide-cta a:hover {
      background: rgba(212, 167, 74, 0.2);
    }
    .slider-controls {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 12px;
      z-index: 10;
    }
    .dot {
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: rgba(255,255,255,0.35);
      cursor: pointer;
      transition: 0.25s;
      border: 1px solid rgba(255,255,255,0.2);
    }
    .dot.active {
      background: #d4a74a;
      transform: scale(1.2);
      border-color: #d4a74a;
    }
    @media (max-width: 600px) {
      .slider-hero { height: 60vh; }
      .slide-overlay h1 { font-size: 2rem; }
      .slide-overlay p { font-size: 1rem; }
      .slide-cta a { padding: 8px 18px; font-size: 0.8rem; }
    }

    /* ===== ABOUT ===== */
    .about-grid {
      display: flex;
      gap: 50px;
      align-items: center;
      flex-wrap: wrap;
    }
    .about-text {
      flex: 1 1 50%;
    }
    .about-text p {
      margin-bottom: 18px;
      font-size: 1.05rem;
      color: #3e2e1f;
    }
    .about-text strong {
      color: #5a3d1a;
      font-weight: 600;
    }
    .about-image {
      flex: 1 1 40%;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }
    .about-image img {
      width: 100%;
      height: 320px;
      object-fit: cover;
    }
    @media (max-width: 760px) {
      .about-grid { flex-direction: column; }
      .about-image { width: 100%; }
    }

    /* ===== QUICK LINKS (zakładki) ===== */
    .quick-links {
      background: #1f160e;
      padding: 20px 0;
      border-bottom: 3px solid #d4a74a;
    }
    .quick-links ul {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px 20px;
      list-style: none;
      padding: 0;
    }
    .quick-links ul li a {
      color: #cbb8a8;
      font-family: 'Cinzel', serif;
      font-size: 0.8rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 6px 12px;
      border-radius: 30px;
      transition: 0.2s;
      border: 1px solid transparent;
    }
    .quick-links ul li a:hover {
      color: #d4a74a;
      border-color: #d4a74a;
      background: rgba(212, 167, 74, 0.08);
    }
    @media (max-width: 600px) {
      .quick-links ul { gap: 4px 10px; }
      .quick-links ul li a { font-size: 0.65rem; padding: 4px 8px; }
    }

    /* ===== FILTRY POKOI ===== */
    .filter-bar {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px 16px;
      margin: 0 auto 40px;
    }
    .filter-bar button {
      font-family: 'Cinzel', serif;
      font-size: 0.8rem;
      padding: 8px 24px;
      border-radius: 30px;
      border: 2px solid #d4a74a;
      background: transparent;
      color: #3e2e1f;
      cursor: pointer;
      transition: 0.25s;
      font-weight: 600;
      letter-spacing: 0.5px;
    }
    .filter-bar button:hover {
      background: #d4a74a;
      color: #1f160e;
    }
    .filter-bar button.active {
      background: #d4a74a;
      color: #1f160e;
    }

    /* ===== OFFER CARDS ===== */
    .offer-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin-top: 20px;
    }
    .offer-card {
      background: #fffbf7;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 18px rgba(0,0,0,0.06);
      transition: 0.3s;
      border: 1px solid #e1d5c8;
      display: flex;
      flex-direction: column;
    }
    .offer-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 32px rgba(0,0,0,0.10);
    }
    .offer-card .card-img {
      height: 200px;
      background: #d6cbbc;
      overflow: hidden;
      position: relative;
    }
    .offer-card .card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .offer-card .card-content {
      padding: 18px 18px 22px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .offer-card .card-content h3 {
      font-size: 0.95rem;
      color: #2d1f13;
      margin-bottom: 6px;
      font-weight: 700;
      min-height: 44px;
      line-height: 1.3;
    }
    .offer-card .capacity {
      font-size: 0.9rem;
      color: #6b5542;
      margin-bottom: 12px;
    }
    .offer-card .card-content .btn-card {
      margin-top: auto;
      align-self: flex-start;
      white-space: nowrap;
    }
    .btn-card {
      display: inline-block;
      background: #d4a74a;
      color: #1f160e;
      padding: 8px 22px;
      border-radius: 30px;
      font-size: 0.8rem;
      font-weight: 600;
      font-family: 'Cinzel', serif;
      transition: 0.2s;
      border: none;
      cursor: pointer;
      text-align: center;
      white-space: nowrap;
    }
    .btn-card:hover {
      background: #b8860b;
      color: #fff;
    }
    .offer-card.hidden {
      display: none;
    }

    @media (max-width: 920px) {
      .offer-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 600px) {
      .offer-grid { grid-template-columns: 1fr; }
    }

    .equipment {
      margin-top: 50px;
      background: #e8ddd2;
      padding: 30px 35px;
      border-radius: 16px;
      border-left: 6px solid #b8860b;
    }
    .equipment h3 {
      font-size: 1.4rem;
      margin-bottom: 16px;
      color: #2d1f13;
    }
    .equipment ul {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 28px;
      list-style: none;
      padding: 0;
    }
    .equipment ul li {
      font-size: 0.95rem;
      position: relative;
      padding-left: 22px;
    }
    .equipment ul li::before {
      content: "✦";
      color: #b8860b;
      position: absolute;
      left: 0;
      font-weight: 700;
    }

    /* ===== SPECIAL OFFERS ===== */
    .special-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 35px;
      margin-top: 20px;
    }
    .special-card {
      background: #fffbf7;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 18px rgba(0,0,0,0.06);
      border: 1px solid #e1d5c8;
      transition: 0.3s;
      display: flex;
      flex-direction: column;
    }
    .special-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 16px 32px rgba(0,0,0,0.10);
    }
    .special-card .card-img {
      height: 356px;
      background: #b8a48e;
      overflow: hidden;
    }
    .special-card .card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
	  display: block;
    }
    .special-card .card-content {
      padding: 20px 22px 28px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .special-card .card-content h3 {
      font-size: 1.2rem;
      margin-bottom: 8px;
      color: #2d1f13;
    }
    .special-card .card-content p {
      font-size: 0.95rem;
      color: #4d3d2d;
      margin-bottom: 12px;
      flex: 1;
    }
    .special-card .features {
      list-style: none;
      padding: 0;
      margin: 12px 0 16px;
    }
    .special-card .features li {
      font-size: 0.9rem;
      padding: 3px 0;
      border-bottom: 1px dashed #ece2d8;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .special-card .features li::before {
      content: "▹";
      color: #b8860b;
      font-weight: 700;
    }
    .special-more {
      text-align: center;
      margin-top: 40px;
    }
    .special-more a {
      font-family: 'Cinzel', serif;
      font-weight: 600;
      color: #634C2C;
      border-bottom: 2px solid #d4a74a;
      padding-bottom: 4px;
      transition: 0.2s;
    }
    .special-more a:hover {
      color: #b8860b;
    }

    /* ===== GALLERY ===== */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 16px;
      margin-top: 25px;
    }
    .gallery-item {
      border-radius: 8px;
      overflow: hidden;
      cursor: pointer;
      transition: 0.25s;
      border: 2px solid transparent;
      aspect-ratio: 1 / 1;
    }
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .gallery-item:hover {
      border-color: #d4a74a;
      transform: scale(1.02);
    }

    /* ===== LIGHTBOX ===== */
    .lightbox {
      display: none;
      position: fixed;
      top: 0; left: 0; width: 100%; height: 100%;
      background: rgba(15, 10, 6, 0.92);
      z-index: 2000;
      justify-content: center;
      align-items: center;
      backdrop-filter: blur(6px);
    }
    .lightbox.open {
      display: flex;
    }
    .lightbox img {
      max-width: 92%;
      max-height: 86%;
      border-radius: 8px;
      border: 4px solid #d4a74a;
      box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    }
    .lightbox-close {
      position: absolute;
      top: 30px;
      right: 40px;
      font-size: 2.6rem;
      color: #f5ede4;
      cursor: pointer;
      background: none;
      border: none;
      transition: 0.2s;
    }
    .lightbox-close:hover { color: #d4a74a; }
    .lightbox-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 3rem;
      color: #f5ede4;
      background: rgba(0,0,0,0.4);
      border: none;
      padding: 12px 18px;
      cursor: pointer;
      border-radius: 30px;
      transition: 0.2s;
    }
    .lightbox-arrow:hover { background: #d4a74a; color: #1f160e; }
    .lightbox-arrow.prev { left: 20px; }
    .lightbox-arrow.next { right: 20px; }
    .lightbox-counter {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      color: #d4c4b5;
      font-size: 1rem;
      background: rgba(0,0,0,0.5);
      padding: 6px 20px;
      border-radius: 30px;
    }

    /* ===== CONTACT ===== */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
    }
    .contact-info h3 {
      font-size: 1.6rem;
      color: #d4a74a;
      margin-bottom: 20px;
      font-family: 'Cinzel', serif;
      font-weight: 700;
      letter-spacing: 1px;
    }
    .contact-info .address-line {
      font-size: 1.05rem;
      color: #e8ddd2;
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .contact-info .address-line .icon {
      font-size: 1.2rem;
      width: 24px;
      text-align: center;
      color: #d4a74a;
    }
    .contact-info a {
      color: #d4a74a;
      transition: 0.2s;
    }
    .contact-info a:hover {
      color: #b8860b;
    }
    .contact-info .contact-details {
      margin: 28px 0 32px;
      padding: 24px 28px;
      background: rgba(255,255,255,0.04);
      border-radius: 12px;
      border-left: 3px solid #d4a74a;
    }
    .contact-info .contact-details .dept {
      font-weight: 600;
      color: #d4a74a;
      font-family: 'Cinzel', serif;
      font-size: 0.95rem;
      margin-top: 12px;
    }
    .contact-info .contact-details .dept:first-child {
      margin-top: 0;
    }
    .contact-info .contact-details p {
      margin-bottom: 2px;
      font-size: 0.95rem;
      color: #d9cec2;
    }
    .contact-info .social-links {
      display: flex;
      gap: 14px;
      margin-top: 20px;
      flex-wrap: wrap;
    }
    .contact-info .social-links a {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 20px;
      border-radius: 30px;
      border: 1px solid rgba(212, 167, 74, 0.4);
      color: #d9cec2;
      font-size: 0.8rem;
      transition: 0.25s;
      font-family: 'Cinzel', serif;
      letter-spacing: 0.5px;
      background: rgba(255,255,255,0.03);
    }
    .contact-info .social-links a:hover {
      background: #d4a74a;
      color: #1f160e;
      border-color: #d4a74a;
    }
    .contact-info .social-links a .icon {
      font-size: 1.1rem;
    }
    .contact-map {
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0,0,0,0.25);
      border: 2px solid rgba(212, 167, 74, 0.3);
    }
    .contact-map iframe {
      width: 100%;
      height: 380px;
      border: 0;
      display: block;
    }
    @media (max-width: 760px) {
      .contact-grid { grid-template-columns: 1fr; gap: 40px; }
      .contact-map iframe { height: 280px; }
    }

    /* ===== LANGUAGE FLAGS ===== */
    .lang-section {
      background: #2a1f16;
      padding: 40px 0;
      border-top: 3px solid #d4a74a;
      border-bottom: 2px solid #3e2e1f;
    }
    .lang-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px 20px;
      list-style: none;
      padding: 0;
      max-width: 1100px;
      margin: 0 auto;
    }
    .lang-grid li a {
      display: flex;
      align-items: center;
      gap: 8px;
      color: #e8ddd2;
      font-size: 0.9rem;
      font-weight: 400;
      transition: 0.2s;
      padding: 4px 12px;
      border-radius: 30px;
      border: 1px solid transparent;
    }
    .lang-grid li a:hover {
      color: #d4a74a;
      border-color: #d4a74a;
      background: rgba(212, 167, 74, 0.08);
    }
    .lang-grid img {
      width: 28px;
      height: 18px;
      object-fit: cover;
      border-radius: 4px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    }

    /* ===== FOOTER ===== */
    .footer {
      background: #1f160e;
      color: #d9cec2;
      padding: 40px 0 30px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
      gap: 30px;
    }
    .footer-col h4 {
      color: #d4a74a;
      font-size: 1.1rem;
      margin-bottom: 12px;
    }
    .footer-col p {
      margin-bottom: 6px;
      font-size: 0.95rem;
    }
    .footer-col a {
      color: #cbb8a8;
      transition: 0.2s;
    }
    .footer-col a:hover { color: #d4a74a; }
    .footer-bottom {
      margin-top: 35px;
      padding-top: 20px;
      border-top: 1px solid #3a2c20;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      font-size: 0.9rem;
    }
    .footer-bottom a {
      color: #cbb8a8;
      margin-left: 20px;
    }
    .footer-bottom a:hover { color: #d4a74a; }
  /* ===== FOOTER ===== */
.footer {
    background: #1f160e;
    color: #d9cec2;
    padding: 50px 0 30px;
    border-top: 3px solid #d4a74a;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px 30px;
    margin-bottom: 35px;
}

.footer-col h4 {
    color: #d4a74a;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-family: 'Cinzel', serif;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #d4a74a;
}

.footer-col p {
    margin-bottom: 6px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-col a {
    color: #cbb8a8;
    transition: 0.2s;
    text-decoration: none;
}

.footer-col a:hover {
    color: #d4a74a;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.footer-copyright p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    transition: 0.2s;
    text-decoration: none;
}

.footer-links a:hover {
    color: #d4a74a;
}

/* Footer Infrastructure (warstwa technologiczna) */
.footer-infrastructure {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
}

.footer-infrastructure p {
    margin-bottom: 4px;
}

.footer-infrastructure strong {
    color: rgba(255,255,255,0.5);
    font-weight: 600;
}

.footer-infrastructure a {
    color: rgba(255,255,255,0.4);
    transition: 0.2s;
}

.footer-infrastructure a:hover {
    color: #d4a74a;
}

/* Responsywność */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer {
        padding: 30px 0 20px;
    }
    
    .footer-col h4::after {
        width: 30px;
    }
}