/* Typography imports moved to base.css */

/* EASY ONE STYLE VARIABLES */
:root {
  --primary: #2d3648;
  --bg: #fefcf9;
  --accent: #7fc8c3;
  --accent2: #ffd4a3;
  --accent3: #f7e6b5;
  --white: #fff;
  --shadow: 0 12px 40px rgba(45,54,72,0.08);
  --polaroid: #f8f8f8;
  --text-light: #6b7280;
  --border: #e5e7eb;
}

/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body typography rules moved to base.css */

/* Heading typography rules moved to base.css */

/* PADDING FOR NON-HERO PAGES */
body:not(:has(.hero-slider)) {
  padding-top: 100px;
}

/* Fallback dla starszych przeglądarek */
.page-with-header-padding {
  padding-top: 100px;
}

/* Strona główna bez paddingu */
.hero-slider {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  will-change: transform;
}

body.homepage-header {
  padding-top: 0;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  padding: 1.5rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(45,54,72,0.05);
  min-height: 80px;
}

/* Header przezroczysty TYLKO na stronie głównej NA START */
.homepage-header .header {
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  box-shadow: none;
}

/* Białe napisy w header przed scroll na homepage */
.homepage-header .header:not(.scrolled) .logo a {
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.homepage-header .header:not(.scrolled) .nav a {
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.homepage-header .header:not(.scrolled) .nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.15);
}

/* Przełącznik języków - przezroczysty przed scroll */
.homepage-header .header:not(.scrolled) .lang-current {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.homepage-header .header:not(.scrolled) .lang-current:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Dropdown języków dla białego header przed scroll */
.homepage-header .header:not(.scrolled) .lang-dropdown {
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.1);
}

.homepage-header .header:not(.scrolled) .lang-option {
  color: var(--white);
}

.homepage-header .header:not(.scrolled) .lang-option:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  transform: translateX(5px);
}

/* Po scroll header ZAWSZE biały */
.header.scrolled {
  background: rgba(255,255,255,0.98) !important;
  backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid var(--border) !important;
  box-shadow: 0 4px 30px rgba(45,54,72,0.05) !important;
}

.logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo a {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  font-style: normal;
}

.logo a:hover {
  color: var(--accent);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 100%;
}

.nav {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
  margin: 0;
  padding: 0;
  height: 100%;
}

.nav li {
  display: flex;
  align-items: center;
  height: 100%;
  margin: 0;
}

.nav a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  height: auto;
}

.nav a:hover {
  color: var(--accent);
  background: rgba(127,200,195,0.1);
}

/* LANGUAGE SWITCHER */
.lang-switcher {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.lang-current {
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 20px;
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  height: auto;
}

.lang-current:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(45,54,72,0.15);
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(45,54,72,0.15);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 0.5rem;
  min-width: 120px;
}

.lang-switcher:hover .lang-dropdown,
.lang-switcher.active .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: block;
  width: 100%;
  background: none;
  border: none;
  padding: 0.8rem 1rem;
  color: var(--primary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 10px;
  transition: all 0.3s ease;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lang-option:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateX(5px);
}

/* DROPDOWN HOSTELS MENU */
.dropdown-hostels {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.dropdown-hostels > a {
  cursor: pointer;
  position: relative;
}

.dropdown-hostels > a::after {
  content: '▼';
  font-size: 0.7rem;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
  color: inherit;
}

.dropdown-hostels:hover > a::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff !important;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(45,54,72,0.13);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.18s cubic-bezier(0.4,0,0.2,1);
  z-index: 1000;
  margin-top: 0.3rem;
  min-width: 240px;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.dropdown-hostels:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
  width: 100%;
  display: block;
}

.dropdown-menu li + li {
  border-top: 1px dashed #e5e7eb;
}

.dropdown-menu a {
  display: block;
  width: 100%;
  padding: 1rem 0;
  background: #fff !important;
  color: #222 !important;
  text-decoration: none;
  font-size: 1.02rem;
  font-weight: 400;
  border-radius: 0;
  transition: box-shadow 0.15s, background 0.15s, color 0.15s;
  border: none;
  line-height: 1.2;
  margin: 0;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.dropdown-menu a span {
  color: #7b8794 !important;
  opacity: 1 !important;
}

.dropdown-menu a:hover {
  background: var(--accent) !important;
  color: #fff !important;
  box-shadow: 0 2px 12px rgba(45,54,72,0.13);
}

.dropdown-menu a:hover span {
  color: #fff !important;
  opacity: 1 !important;
}

.dropdown-menu span {
  display: block;
  margin-top: 0.2rem;
  opacity: 0.7;
  font-size: 0.93em;
  color: #7b8794;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

/* Style dla białego header przed scroll na homepage */
.homepage-header .header:not(.scrolled) .dropdown-menu {
  background: #fff !important;
  box-shadow: 0 4px 24px rgba(45,54,72,0.13);
  border: 1px solid #e5e7eb;
}

.homepage-header .header:not(.scrolled) .dropdown-menu a {
  color: #222;
  background: none;
}

.homepage-header .header:not(.scrolled) .dropdown-menu a:hover {
  background: #f3f4f6;
  color: #222;
}


.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 3s ease-out, transform 3s ease-out;
  z-index: 1;
  will-change: opacity, transform;
}

.slide.fading {
  opacity: 0.5;
  transform: scale(1.05);
  z-index: 1;
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.slide.prev {
  opacity: 0;
  transform: scale(0.95);
  z-index: 1;
  transition: opacity 2s ease-out, transform 2s ease-out;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

.slide.active img {
  opacity: 1;
}

.slide.prev img {
  opacity: 0.8;
}

/* Simplified overlay for better performance */
.slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.2) 0%,
    rgba(0,0,0,0.1) 50%,
    rgba(0,0,0,0.3) 100%
  );
  z-index: 3;
  opacity: 0;
  transition: opacity 2s ease-out;
}

.slide.active::before {
  opacity: 1;
}

/* Optimized hero content animations */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  text-align: center;
  padding: 2rem;
  /* background: none; */
  background: none !important;
  border-radius: 0;
  box-shadow: none !important;
  backdrop-filter: none !important;
  animation: heroContentFloat 2s ease-out 0.5s both;
  will-change: opacity, transform;
}

@keyframes heroContentFloat {
  0% {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* Simplified hero title animations */
.hero-title {
  font-size: 3rem !important;
  font-weight: 300;
  color: var(--white);
  margin-top: 2rem;
  margin-bottom: 1.2rem;
  line-height: 1.1;
  letter-spacing: -1px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
  animation: titleGlow 3s ease-in-out infinite alternate;
  will-change: text-shadow;
}

@keyframes titleGlow {
  0% {
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
  }
  100% {
    text-shadow: 2px 2px 12px rgba(0,0,0,0.8);
  }
}

.hero-lead {
  font-size: 1.4rem;
  color: rgba(255,255,255,0.95);
  margin-bottom: 3rem;
  font-weight: 300;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

/* UNIWERSALNY STYL PRZYCISKÓW - OPARTY NA ATTRACTION-CTA */
.btn, .details-btn, .hero-cta, .area-cta, .attraction-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 12px 28px;
  border: 2px solid var(--accent);
  border-radius: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  box-sizing: border-box;
}

.btn::before, .details-btn::before, .hero-cta::before, .area-cta::before, .attraction-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transition: left 0.3s ease;
  z-index: -1;
}

.btn:hover, .details-btn:hover, .hero-cta:hover, .area-cta:hover, .attraction-cta:hover {
  color: var(--white);
  transform: translateX(5px);
}

.btn:hover::before, .details-btn:hover::before, .hero-cta:hover::before, .area-cta:hover::before, .attraction-cta:hover::before {
  left: 0;
}

/* HERO CTA - specjalna wersja z większym paddingiem */
.hero-cta {
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  z-index: 1;
}

.hero-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transition: left 0.3s;
  z-index: -1;
}

.hero-cta:hover {
  color: var(--white);
  transform: translateX(5px);
}

.hero-cta:hover::before {
  left: 0;
}

/* SLIDER NAVIGATION - UKRYTE */
.slider-nav {
  display: none;
}

.slider-btn {
  display: none;
}

/* SLIDER DOTS - UKRYTE */
.slider-dots {
  display: none;
}

.dot {
  display: none;
}

/* WAVE */
.wave-section {
  position: relative;
}

.wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 60px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 60"><path fill="%23fefcf9" d="M0,32L48,37.3C96,43,192,53,288,48C384,43,480,21,576,21.3C672,21,768,43,864,48C960,53,1056,43,1152,37.3C1248,32,1344,32,1392,32L1440,32L1440,60L1392,60C1344,60,1248,60,1152,60C1056,60,960,60,864,60C768,60,672,60,576,60C480,60,384,60,288,60C192,60,96,60,48,60L0,60Z"></path></svg>') no-repeat;
  background-size: cover;
}

/* SECTIONS */
.section {
  padding: 6rem 6vw 6rem 6vw;
  max-width: 1400px;
  margin: 0 auto 4rem auto;
  position: relative;
  will-change: auto;
  border-bottom: 1.5px solid #f0f0f0;
  margin-top: 5rem !important;
  margin-bottom: 5rem !important;
}
.section:last-child {
  border-bottom: none;
}

.section h2 {
  font-size: 3.1rem;
  text-align: center;
  margin-bottom: 3.5rem;
  font-weight: 400;
  color: var(--primary);
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

/* ROOM CARDS */
.rooms-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.room-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  padding: 1.5rem;
  width: 320px;
  max-width: 95vw;
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1), box-shadow 0.32s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.room-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  opacity: 0.0;
  transform: scaleX(0.7);
  transition: opacity 0.32s cubic-bezier(0.4,0,0.2,1), transform 0.32s cubic-bezier(0.4,0,0.2,1);
  border-radius: 2px 2px 0 0;
}

.room-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.room-card:hover {
  transform: translateY(-4px) scale(1.025);
  box-shadow: 0 12px 32px 0 rgba(127,200,195,0.13), 0 2px 16px 0 rgba(45,54,72,0.10);
}

.room-card:hover .room-thumb img {
  transform: scale(1.035) translateY(-2px);
  filter: brightness(1.04) saturate(1.08);
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1), filter 0.32s cubic-bezier(0.4,0,0.2,1);
}

.room-thumb {
  width: 100%;
  height: 180px;
  border-radius: 0.7rem;
  overflow: hidden;
  margin-bottom: 2.2rem;
  position: relative;
  background: #f7fafc;
  box-shadow: 0 2px 12px rgba(45,54,72,0.06);
}

.room-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  border-radius: 0.7rem;
}

.room-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
  color: var(--primary);
  font-weight: 500;
  line-height: 1.3;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  margin-top: 2rem;
  margin-bottom: 1.2rem;
}

.room-icons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: center;
}

.room-icons svg {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.room-icons svg:hover {
  opacity: 1;
}

.room-card p {
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.room-price {
  font-size: 1.3em;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.5em;
  margin-top: 0.5em;
  text-align: center;
  background: var(--accent3);
  padding: 0.6em 1.2em;
  border-radius: 25px;
  box-shadow: 0 2px 8px rgba(127,200,195,0.1);
  width: 100%;
  white-space: nowrap;
}

/* Contact button hover effect */
.details-btn svg {
  transition: transform 0.3s ease;
}

/* PRICE TABLE */
.price-table-wrapper {
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(45,54,72,0.08);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

.price-table th {
  background: var(--accent);
  color: var(--white);
  padding: 1.5rem;
  font-weight: 600;
  font-size: 1.1rem;
}

.price-table td {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.price-table tr:last-child td {
  border-bottom: none;
}

.price-table tr:nth-child(even) {
  background: rgba(127,200,195,0.05);
}

/* CONTACT */
.contact-list {
  list-style: none;
  max-width: 600px;
  margin: 0 auto 3rem auto;
}

.contact-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 1.1rem;
}

.contact-list li:last-child {
  border-bottom: none;
}

.contact-list strong {
  color: var(--accent);
  margin-right: 1rem;
}

.map-embed iframe {
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(45,54,72,0.08);
  border: none;
}

/* FOOTER */
.footer {
  background: var(--primary);
  color: var(--white);
  padding: 3rem 0 2rem 0;
  font-size: 1.1rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5vw;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section {
  margin-bottom: 1rem;
}

.footer-section h4 {
  color: var(--accent);
  margin-bottom: 1.2rem;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.7rem;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1.08em;
  font-weight: 500;
  letter-spacing: 0.1px;
  transition: color 0.2s;
  border-radius: 4px;
  padding: 2px 4px;
}

.footer-links a:hover {
  color: var(--accent);
  background: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
    align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-content p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.8;
}

.footer-bottom-content a {
  color: var(--accent);
  text-decoration: none;
}

.footer-bottom-content a:hover {
  text-decoration: underline;
}

/* Contact specific styles */
.footer-contact .contact-phone {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--accent);
}

.footer-contact .contact-note {
  font-size: 0.9rem;
  opacity: 0.8;
  font-style: italic;
}

@media (max-width: 900px) {
  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

/* ANIMATIONS */
@keyframes float {
  0%, 100% { transform: rotate(8deg) translateY(0px); }
  50% { transform: rotate(8deg) translateY(-20px); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
}
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.section, .room-card {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

/* First slide loading optimization */
@keyframes firstSlideReveal {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.slide:nth-child(4).active {
  animation: firstSlideReveal 2s ease-out;
  }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-content {
    max-width: 90%;
    animation: heroContentFloat 2.5s ease-out 0.8s both;
  }
  
  .slide img {
    transition: opacity 1s ease;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 1rem 4vw;
  }
  
  .header-right {
    gap: 0.5rem;
    align-items: center;
  }
  
  .nav {
    display: none;
  }
  
  .lang-switcher {
    display: none;
  }
  
  
  
  .menu-res-btn {
    font-size: 0.85rem;
    padding: 0.3em 0.7em;
    margin-left: 0.5rem;
  }
  
  .hero-slider {
    min-height: 100vh;
  }
  
  .hero-content {
    max-width: 95%;
    padding: 1.5rem;
    animation: heroContentFloat 2s ease-out 0.5s both;
  }
  
  .hero-title {
    font-size: 2rem !important;
    margin-bottom: 1rem;
    animation: titleGlow 3s ease-in-out infinite alternate;
  }
  
  .hero-lead {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  
  .hero-cta {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    animation: ctaFloat 1.5s ease-in-out 2s infinite alternate;
  }
  
  .rooms-list {
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
  }
  
  .room-card {
    width: 98vw;
    max-width: 420px;
    padding: 1.2rem;
  }
  
  .room-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }
  
  .room-price {
    font-size: 1.2em;
    padding: 0.5em 1em;
  }
  
  /* .details-btn {
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
  } */
  
  .section {
    padding: 3rem 1rem;
  }
  
  .footer {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  /* Szybsze animacje na mobile */
  .slide {
    transition: all 2s cubic-bezier(0.4, 0.0, 0.2, 1);
  }
  
  .slide img {
    transition: opacity 1.5s ease-in-out;
  }
  
  .slide::before {
    transition: opacity 2s ease-in-out;
  }
  
  .slide:first-child {
    animation: firstSlideReveal 2s ease-out;
  }
  
  /* ROOM PAGE RESPONSIVE */
  .section div[style*="grid-template-columns:2fr 1fr"] {
    display: block !important;
  }
  
  .section div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  
  .room-card[style*="position:sticky"] {
    position: static !important;
    margin-top: 2rem;
  }
  
  .slider-progress {
    bottom: 20px;
  }
  
  .progress-dot {
    width: 6px;
    height: 6px;
  }
  
  .progress-dot.active {
    width: 20px;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  
  .map-container iframe {
    height: 300px !important;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-lead {
    font-size: 1.1rem;
  }
  
  .hero-cta {
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
  }
}

/* SLIDER PROGRESS BAR */
.slider-progress {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.progress-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.progress-dot.active {
  background: var(--white);
  width: 25px;
  border-radius: 4px;
}

.progress-dot:hover {
  background: rgba(255,255,255,0.7);
  transform: scale(1.2);
}

/* Optimized weather widget */
.weather-widget {
  position: absolute;
  top: 120px;
  right: 30px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 15px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  transition: transform 0.3s ease, background 0.3s ease;
  will-change: transform;
}

.weather-widget:hover {
  transform: translate3d(0, -2px, 0);
  background: rgba(255,255,255,0.15);
}

.weather-icon {
  font-size: 2.5rem;
  animation: weatherIconFloat 2.5s ease-in-out infinite;
}

@keyframes weatherIconFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -3px, 0); }
}

.weather-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.weather-temp {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.weather-desc {
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--white);
}

.weather-location {
  font-size: 0.8rem;
  opacity: 0.7;
  font-weight: 500;
  color: var(--white);
}

@media (max-width: 768px) {
  .weather-widget {
    top: 100px;
    right: 20px;
    padding: 12px 15px;
    gap: 8px;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  
  .weather-icon {
    font-size: 2rem;
  }
  
  .weather-temp {
    font-size: 1.4rem;
  }
  
  .weather-desc {
    font-size: 0.8rem;
  }
  
  .weather-location {
    font-size: 0.7rem;
}
}

@media (max-width: 480px) {
  .weather-widget {
    top: 90px;
    right: 15px;
    padding: 10px 12px;
    flex-direction: column;
    text-align: center;
    gap: 5px;
    background: rgba(0,0,0,0.4);
  }
  
  .weather-icon {
    font-size: 1.8rem;
  }
  
  .weather-info {
    align-items: center;
    gap: 1px;
  }
  
  .weather-temp {
    font-size: 1.2rem;
  }
}

/* ATTRACTIONS SECTION - NEW DESIGN */
.attraction-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-bottom: 6rem;
  align-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.attraction-row[data-aos="fade-up"] {
  opacity: 1;
  transform: none;
  animation: none;
}

.attraction-row.reverse {
  direction: rtl;
}

.attraction-row.reverse > * {
  direction: ltr;
}

.attraction-image {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(45,54,72,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
  background: var(--accent3);
}

.attraction-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.attraction-image:hover::before {
  opacity: 1;
}

.attraction-image:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(45,54,72,0.12);
}

.attraction-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  will-change: transform;
}

.attraction-image:hover img {
  transform: scale(1.08);
}

.attraction-distance {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 15px 25px;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 2;
  transition: transform 0.3s ease;
}

.attraction-image:hover .attraction-distance {
  transform: translateY(-5px);
}

.distance-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  animation: pulseNumber 2s ease-in-out infinite;
}

@keyframes pulseNumber {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.distance-time {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

.attraction-content h3 {
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  transition: color 0.3s ease;
  letter-spacing: -0.02em;
}

.attraction-row:hover .attraction-content h3 {
  color: var(--accent);
}

.attraction-content p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.attraction-features {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.attraction-features span {
  background: var(--accent3);
  color: var(--primary);
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: default;
  user-select: none;
}

.attraction-features span:hover {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px) scale(1.05);
}

/* New CTA button */
.attraction-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 12px 28px;
  border: 2px solid var(--accent);
  border-radius: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.attraction-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transition: left 0.3s ease;
  z-index: -1;
}

.attraction-cta:hover {
  color: var(--white);
  transform: translateX(5px);
}

.attraction-cta:hover::before {
  left: 0;
}

/* Performance optimizations */
.attraction-row * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Skeleton loading */
.attraction-image.loading {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Responsive design */
@media (max-width: 968px) {
  .attraction-row {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}
  
  .attraction-row.reverse {
    direction: ltr;
  }
  
  .attraction-image {
    order: -1;
  }
  
  .attraction-content {
    text-align: center;
  }
  
  .attraction-features {
    justify-content: center;
  }
  
  .attraction-cta {
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .attraction-image img {
    height: 250px;
}
  
  .attraction-content h3 {
    font-size: 2rem;
  }
  
  .attraction-content p {
  font-size: 1rem;
  }
  
  .attraction-distance {
    padding: 10px 15px;
    bottom: 15px;
    left: 15px;
  }
  
  .distance-number {
    font-size: 1.4rem;
  }
  
  .distance-time {
    font-size: 0.8rem;
  }
  
  .attraction-features span {
    padding: 8px 15px;
    font-size: 0.85rem;
  }
  
  .attraction-cta {
    font-size: 0.95rem;
    padding: 10px 24px;
  }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .attraction-row,
  .attraction-image,
  .attraction-image img,
  .attraction-distance,
  .attraction-features span,
  .attraction-cta,
  .attraction-cta::before {
    transition: none;
    animation: none;
  }
}

/* --- Udogodnienia (amenities) --- */
.amenities-section {
  background: none !important;
  box-shadow: none;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.amenities-title {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: var(--primary);
  letter-spacing: 1px;
  text-align: center;
}
.amenities-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 3rem;
  text-align: left;
  margin: 0 auto;
  max-width: 1200px;
}
.amenities-list > div {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1.5px solid #ececec;
}
.amenities-list > div:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.amenities-list h3 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 1.2rem;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.5px;
}
.amenities-list ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}
.amenities-list li {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  padding: 0.5em 0 0.5em 2em;
  position: relative;
  color: var(--primary);
  font-size: 1.1rem;
  line-height: 2.1;
  font-weight: 400;
  letter-spacing: 0.2px;
}
.amenities-list li::before {
  content: '\2713';
  color: var(--accent);
  position: absolute;
  left: 0;
  font-size: 1.2em;
  top: 0.15em;
}
@media (max-width: 900px) {
  h1 {
    font-size: 2.5rem;
  }
  h2, .amenities-title {
    font-size: 1.7rem;
  }
  h3, .amenities-list h3 {
    font-size: 1.1rem;
  }
  .amenities-list {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
  }
  .amenities-list li {
    font-size: 1rem;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 1.7rem;
  }
  h2, .amenities-title {
    font-size: 1.2rem;
  }
  h3, .amenities-list h3 {
    font-size: 1rem;
  }
  .amenities-list {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .amenities-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .amenities-list > div {
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
  }
}

/* FILTRY */
#room-filters {
  margin-bottom: 2rem;
  background: #f7f7f7;
  border-radius: 1rem;
  padding: 1.5rem 2.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  justify-content: center;
  align-items: center;
}
#room-filters label {
  margin-right: 0.5rem;
  font-weight: 500;
  font-size: 1.05em;
}
#room-filters input[type="text"], #room-filters select {
  padding: 0.4rem 0.9rem;
  border-radius: 0.5rem;
  border: 1px solid #ccc;
  margin-right: 1rem;
  font-size: 1em;
}
#room-filters input[type="checkbox"] {
  margin-right: 0.3em;
  accent-color: var(--accent);
}
#room-filters > div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5em;
}
@media (max-width: 700px) {
  #room-filters {
    flex-direction: column;
    gap: 1.2rem;
    padding: 1rem 0.5rem;
  }
  #room-filters > div {
    width: 100%;
    justify-content: flex-start;
  }
}

/* Typography rules moved to base.css */

/* MENU RESERVATION BUTTON */
.menu-res-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.45em 1.1em;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent2);
  background: none;
  border: 2px solid var(--accent2);
  border-radius: 999px;
  transition: background 0.18s, color 0.18s, border 0.18s;
  margin-left: 1.2rem;
  cursor: pointer;
  text-decoration: none;
  height: auto;
}

.menu-res-btn:hover {
  background: var(--accent2);
  color: #fff;
  border-color: var(--accent2);
}

@keyframes float {
  0% { transform: rotate(8deg) translateY(0px); }
  50% { transform: rotate(8deg) translateY(-20px); }
  100% { transform: rotate(8deg) translateY(0px); }
}

/* ============================================ */
/* GLASSMORPHISM GLOBAL ENHANCEMENTS */
/* ============================================ */

/* Scroll Progress Indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent2) 100%);
  z-index: 1001;
  transition: width 0.1s ease;
}

/* Floating Action Buttons */
.fab-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.fab-container.show {
  opacity: 1;
  pointer-events: all;
}

.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(127,200,195,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  text-decoration: none;
}

.fab.scroll-to-top {
  background: rgba(255,255,255,0.9) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 2px solid rgba(127,200,195,0.3) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1) !important;
  width: 56px;
  height: 56px;
}

.fab.scroll-to-top:hover {
  background: rgba(127,200,195,0.95) !important;
  border-color: var(--accent) !important;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 30px rgba(127,200,195,0.3) !important;
}

.fab.scroll-to-top svg {
  color: var(--accent);
  width: 24px;
  height: 24px;
  stroke-width: 2.5;
  transition: all 0.3s ease;
}

.fab.scroll-to-top:hover svg {
  color: var(--white);
  transform: scale(1.1);
}

.fab:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 30px rgba(127,200,195,0.2);
  border-color: var(--accent);
  background: rgba(127,200,195,0.95);
}

.fab:hover svg {
  color: var(--white);
}

.fab svg {
  color: var(--accent);
  transition: color 0.3s ease;
}

/* Color-coded Status Indicators */
.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 1rem;
  justify-content: center;
}

.status-indicator.success {
  background: rgba(34, 197, 94, 0.1);
  color: #059669;
  border: 2px solid rgba(34, 197, 94, 0.2);
}

.status-indicator.warning {
  /* usunięte: background, color, border */
}

.status-indicator.error {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  border: 2px solid rgba(239, 68, 68, 0.2);
}

.status-indicator.info {
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
  border: 2px solid rgba(59, 130, 246, 0.2);
}

.status-indicator:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Enhanced Section Transitions */
.section {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Ripple Effect for Interactive Elements */
@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.ripple-effect {
  position: absolute;
  border-radius: 50%;
  background: rgba(127,200,195,0.3);
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}

/* Enhanced Loading States */
.loading-shimmer {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Pulse Animation for Important Elements */
@keyframes glassPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(127,200,195,0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(127,200,195,0.0);
  }
}

.pulse-accent {
  animation: glassPulse 2s infinite;
}

/* Enhanced Typography with Glassmorphism */
.glass-text {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 2rem;
  border-radius: 50px;
  border: 2px solid rgba(127,200,195,0.2);
  transition: all 0.4s ease;
}

.glass-text:hover {
  background: rgba(255,255,255,0.95);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(127,200,195,0.15);
}

/* Enhanced Card Interactions */
.card-glassmorphism {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card-glassmorphism::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(127,200,195,0.1), transparent);
  transition: left 0.6s ease;
}

.card-glassmorphism:hover::before {
  left: 100%;
}

.card-glassmorphism:hover {
  border-color: var(--accent);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(127,200,195,0.2);
}

/* Responsive Enhancements */
@media (max-width: 768px) {
  .fab-container {
    bottom: 1rem;
    right: 1rem;
  }
  
  .fab {
    width: 48px;
    height: 48px;
  }
  
  .status-indicator {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
  
  .glass-text {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Accessibility Enhancements */
@media (prefers-reduced-motion: reduce) {
  .scroll-progress,
  .fab,
  .status-indicator,
  .card-glassmorphism,
  .glass-text,
  .section {
    animation: none !important;
    transition: none !important;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .fab {
    background: var(--white);
    border-color: var(--primary);
  }
  
  .status-indicator {
    border-width: 3px;
  }
  
  .glass-text {
    background: var(--white);
    border-color: var(--primary);
  }
}

/* Dark Mode Support (if needed in future) */
@media (prefers-color-scheme: dark) {
  .fab {
    background: rgba(45, 54, 72, 0.9);
    border-color: rgba(127, 200, 195, 0.5);
  }
  
  .glass-text {
    background: rgba(45, 54, 72, 0.8);
    color: var(--white);
  }
  
  .card-glassmorphism {
    background: rgba(45, 54, 72, 0.9);
    border-color: rgba(127, 200, 195, 0.3);
  }
}

/* RESPONSYWNOŚĆ HERO SEKCJI */
@media (max-width: 768px) {
  .hero-section {
    min-height: 50vh !important;
    padding: 4rem 1rem 3rem 1rem !important;
  }
  
  .hero-content {
    padding: 4rem 1rem 3rem 1rem !important;
    max-width: 100% !important;
  }
  
  .hero-title {
    font-size: 2rem !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
  }
  
  .hero-lead {
    font-size: 1rem !important;
    line-height: 1.5 !important;
    margin-bottom: 2rem !important;
  }
  
  .hero-stats {
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
    margin: 2rem 0 !important;
  }
  
  .hero-floating-icons {
    display: none !important;
  }
  
  .breadcrumbs {
    padding: 0.5rem 1rem !important;
  }
  
  .breadcrumbs .breadcrumb-item {
    font-size: 0.8rem !important;
  }
} 

/* NOWY DYNAMICZNY LAYOUT POKOI */
.rooms-container-modern {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.rooms-grid-dynamic {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  align-items: start;
}

.room-category-header {
  grid-column: 1 / -1;
  text-align: center;
  margin: 4rem 0 2rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, var(--accent3) 0%, rgba(127,200,195,0.1) 100%);
  border-radius: 25px;
  border: 2px solid rgba(127,200,195,0.2);
  margin-top: 5rem !important;
  margin-bottom: 3rem !important;
}

.category-title-styled {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.category-icon {
  font-size: 2.5rem;
}

.category-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.room-card-wide {
  grid-column: span 2;
}

.room-featured {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(127,200,195,0.1) 0%, rgba(255,255,255,0.95) 100%);
  border: 2px solid var(--accent);
  box-shadow: 0 8px 32px rgba(127,200,195,0.2);
}

.room-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.room-badge.featured {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  color: var(--white);
}

.room-badge.eco {
  background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
  color: var(--white);
}

.room-badge.special {
  background: linear-gradient(135deg, #FF9800 0%, #FFC107 100%);
  color: var(--white);
}

.room-content {
  padding: 1.5rem;
}

/* RESPONSYWNOŚĆ NOWEGO LAYOUTU */
@media (max-width: 1200px) {
  .room-card-wide,
  .room-featured {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .rooms-grid-dynamic {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .category-title-styled {
    font-size: 1.8rem;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .category-icon {
    font-size: 2rem;
  }
  
  .rooms-container-modern {
    padding: 0 1rem;
  }
} 

/* HERO RESERVATION STYLES - SPÓJNE Z INNYMI STRONAMI */
.hero-reservation {
  min-height: 70vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
}

/* Animowane tło z gradientowymi kulkami - IDENTYCZNE JAK W POKOJE */
.hero-animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: floatOrbs 20s ease-in-out infinite;
}

.orb-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--accent3) 0%, transparent 70%);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  top: 60%;
  right: 20%;
  animation-delay: -7s;
  opacity: 0.3;
}

.orb-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, var(--white) 0%, transparent 70%);
  bottom: 20%;
  left: 60%;
  animation-delay: -14s;
  opacity: 0.2;
}

@keyframes floatOrbs {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(120deg); }
  66% { transform: translate(-20px, 20px) rotate(240deg); }
}

/* Floating elements - IDENTYCZNE JAK W POKOJE */
.hero-floating-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.floating-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  animation: floatIcons 15s ease-in-out infinite;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.floating-icon-1 {
  top: 15%;
  right: 15%;
  animation-delay: 0s;
}

.floating-icon-2 {
  top: 45%;
  left: 8%;
  animation-delay: -4s;
}

.floating-icon-3 {
  bottom: 25%;
  right: 25%;
  animation-delay: -8s;
}

.floating-icon-4 {
  bottom: 15%;
  left: 20%;
  animation-delay: -12s;
}

@keyframes floatIcons {
  0%, 100% { transform: translateY(0px); opacity: 0.7; }
  50% { transform: translateY(-20px); opacity: 1; }
}

/* Breadcrumbs - IDENTYCZNE JAK W POKOJE */
.breadcrumbs {
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(20px);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.3);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.breadcrumbs a {
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: var(--accent3);
}

.breadcrumb-separator {
  color: rgba(255,255,255,0.7);
}

.breadcrumb-current {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Hero content - UŻYWA STANDARDOWYCH KLAS */
.hero-reservation .hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 6rem 2rem 4rem 2rem;
  position: relative;
  z-index: 10;
}

.hero-reservation .hero-title {
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.hero-reservation .hero-lead {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.95);
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-reservation .hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.hero-reservation .stat-item {
  text-align: center;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(20px);
  padding: 1.5rem 2rem;
  border-radius: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  transition: transform 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.hero-reservation .stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.25);
}

.hero-reservation .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.hero-reservation .stat-label {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 500;
}

/* RESPONSYWNOŚĆ HERO REZERWACJI */
@media (max-width: 768px) {
  .hero-reservation {
    min-height: 50vh;
    padding: 4rem 1rem 3rem 1rem;
  }
  
  .hero-reservation .hero-content {
    padding: 4rem 1rem 3rem 1rem;
    max-width: 100%;
  }
  
  .hero-reservation .hero-title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  .hero-reservation .hero-lead {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 2rem;
  }
  
  .hero-reservation .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
  }
  
  .hero-reservation .stat-item {
    padding: 1rem 1.5rem;
  }
  
  .hero-reservation .stat-number {
    font-size: 1.5rem;
  }
  
  .hero-reservation .stat-label {
    font-size: 0.75rem;
  }
  
  .hero-floating-icons {
    display: none;
  }
  
  .breadcrumbs {
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 2rem;
    justify-content: center;
    margin: 0 1rem 2rem 1rem;
  }
  
  .orb-1, .orb-2, .orb-3 {
    filter: blur(60px);
    opacity: 0.3;
  }
}

@media (max-width: 768px) {
  .hero-pricing {
    min-height: 50vh !important;
    padding: 4rem 1rem 3rem 1rem !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .hero-content-pricing {
    padding: 4rem 1rem 3rem 1rem !important;
    max-width: 100% !important;
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .hero-title-animated {
    font-size: 2rem !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
  }
  .hero-lead-pricing {
    font-size: 1rem !important;
    line-height: 1.5 !important;
    margin-bottom: 2rem !important;
  }
  .hero-stats {
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
    margin: 2rem 0 !important;
    width: 100%;
  }
  .stat-item {
    padding: 1rem 1.5rem !important;
    font-size: 1rem !important;
    min-width: 0;
  }
}
@media (max-width: 480px) {
  .hero-title-animated {
    font-size: 1.4rem !important;
  }
  .hero-lead-pricing {
    font-size: 0.95rem !important;
  }
  .hero-stats {
    grid-template-columns: 1fr !important;
    gap: 0.7rem !important;
  }
}

@media (max-width: 768px) {
  .hero-kontakt {
    min-height: 50vh !important;
    padding: 4rem 1rem 3rem 1rem !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .hero-content-kontakt {
    padding: 4rem 1rem 3rem 1rem !important;
    max-width: 100% !important;
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .hero-title-kontakt {
    font-size: 2rem !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
  }
  .hero-lead-kontakt {
    font-size: 1rem !important;
    line-height: 1.5 !important;
    margin-bottom: 2rem !important;
  }
  .hero-stats {
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
    margin: 2rem 0 !important;
    width: 100%;
  }
  .stat-item {
    padding: 1rem 1.5rem !important;
    font-size: 1rem !important;
    min-width: 0;
  }
}
@media (max-width: 480px) {
  .hero-title-kontakt {
    font-size: 1.4rem !important;
  }
  .hero-lead-kontakt {
    font-size: 0.95rem !important;
  }
  .hero-stats {
    grid-template-columns: 1fr !important;
    gap: 0.7rem !important;
  }
}

@media (max-width: 768px) {
  .hero-rooms {
    min-height: 50vh !important;
    padding: 4rem 1rem 3rem 1rem !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .hero-content-rooms {
    padding: 4rem 1rem 3rem 1rem !important;
    max-width: 100% !important;
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .hero-title-rooms {
    font-size: 2rem !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
  }
  .hero-lead-rooms {
    font-size: 1rem !important;
    line-height: 1.5 !important;
    margin-bottom: 2rem !important;
  }
  .hero-stats {
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
    margin: 2rem 0 !important;
    width: 100%;
  }
  .stat-item {
    padding: 1rem 1.5rem !important;
    font-size: 1rem !important;
    min-width: 0;
  }
}
@media (max-width: 480px) {
  .hero-title-rooms {
    font-size: 1.4rem !important;
  }
  .hero-lead-rooms {
    font-size: 0.95rem !important;
  }
  .hero-stats {
    grid-template-columns: 1fr !important;
    gap: 0.7rem !important;
  }
}

@media (max-width: 768px) {
  .hero-section.hero-reservation {
    min-height: 50vh !important;
    padding: 4rem 1rem 3rem 1rem !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .hero-section.hero-reservation .hero-content {
    padding: 4rem 1rem 3rem 1rem !important;
    max-width: 100% !important;
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .hero-section.hero-reservation .hero-title {
    font-size: 2rem !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
  }
  .hero-section.hero-reservation .hero-lead {
    font-size: 1rem !important;
    line-height: 1.5 !important;
    margin-bottom: 2rem !important;
  }
  .hero-section.hero-reservation .hero-stats {
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
    margin: 2rem 0 !important;
    width: 100%;
  }
  .hero-section.hero-reservation .stat-item {
    padding: 1rem 1.5rem !important;
    font-size: 1rem !important;
    min-width: 0;
  }
}
@media (max-width: 480px) {
  .hero-section.hero-reservation .hero-title {
    font-size: 1.4rem !important;
  }
  .hero-section.hero-reservation .hero-lead {
    font-size: 0.95rem !important;
  }
  .hero-section.hero-reservation .hero-stats {
    grid-template-columns: 1fr !important;
    gap: 0.7rem !important;
  }
}

/* ============================================ */
/* NOWE NOWOCZESNE MOBILNE MENU */
/* ============================================ */

/* Hamburger button */
.mobile-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1100;
  margin-left: 1rem;
}

.mobile-hamburger:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--accent);
  transform: scale(1.05);
}

.hamburger-line {
  width: 20px;
  height: 2px;
  background: var(--primary);
  margin: 2px 0;
  transition: all 0.3s cubic-bezier(0.77, 0, 0.18, 1);
  border-radius: 2px;
}

.homepage-header .header:not(.scrolled) .hamburger-line {
  background: var(--white);
}

.mobile-hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background: var(--primary);
}

.mobile-hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
  background: var(--primary);
}

/* Main mobile menu container */
.modern-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  background: rgba(20,24,32,0.92); /* mocno przyciemnione tło */
}

.modern-mobile-menu.active {
  visibility: visible;
  opacity: 1;
}

/* Animated background */
.mobile-menu-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: none;
  z-index: 1;
}

.menu-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  animation: menuOrbFloat 20s ease-in-out infinite;
}

.menu-bg-orb.orb-1 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--accent3) 0%, transparent 70%);
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.menu-bg-orb.orb-2 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, var(--white) 0%, transparent 70%);
  bottom: 20%;
  left: 15%;
  animation-delay: -7s;
}

.menu-bg-orb.orb-3 {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  top: 50%;
  left: 70%;
  animation-delay: -14s;
  opacity: 0.2;
}

@keyframes menuOrbFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(120deg); }
  66% { transform: translate(-20px, 20px) rotate(240deg); }
}

/* Menu content */
.mobile-menu-content {
  position: relative;
  z-index: 2;
  height: 100vh;
  overflow-y: auto;
  padding: 2rem 1.5rem 3rem;
  background: rgba(20,24,32,0.98); /* ciemne, nieprzezroczyste tło */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  /* POPRAWKA SCROLL */
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  scroll-behavior: smooth;
  color: #fff;
}

.modern-mobile-menu.active .mobile-menu-content {
  transform: translateX(0);
}

/* Menu header */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo-icon {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  padding: 0.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  color: var(--white);
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  text-shadow: 1px 1px 4px rgba(45, 54, 72, 0.3);
}

.mobile-menu-close {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.05);
}

/* Main navigation */
.mobile-nav-main {
  margin-bottom: 2.5rem;
}

.mobile-nav-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem;
  margin-bottom: 0.8rem;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.08);
  color: #fff;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mobile-nav-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.mobile-nav-item:hover::before {
  left: 100%;
}

.mobile-nav-item:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.18);
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.nav-item-icon {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  padding: 0.8rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-item-icon svg {
  color: var(--white);
}

.nav-item-content {
  flex: 1;
}

.nav-item-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  display: block;
  margin-bottom: 0.2rem;
}

.nav-item-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  display: block;
}

.nav-item-arrow {
  color: rgba(255, 255, 255, 0.6);
  transition: transform 0.3s ease;
}

.mobile-nav-item:hover .nav-item-arrow {
  transform: translateX(4px);
}

/* Hostels section */
.mobile-hostels-section {
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
}

.hostels-section-title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.mobile-hostels-grid {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.hostel-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  text-decoration: none;
  color: var(--white);
  transition: all 0.3s ease;
}

.hostel-card:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.hostel-icon {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem;
  border-radius: 8px;
  flex-shrink: 0;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hostel-icon svg {
  color: var(--white);
}

.hostel-info {
  flex: 1;
}

.hostel-name {
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  display: block;
  margin-bottom: 0.2rem;
}

.hostel-address {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  display: block;
}

/* CTA section */
.mobile-cta-section {
  margin-bottom: 2.5rem;
}

.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--accent3) 0%, var(--accent2) 100%);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  text-decoration: none;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.mobile-cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.cta-icon {
  background: rgba(45, 54, 72, 0.1);
  padding: 0.5rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-icon svg {
  color: var(--primary);
}

/* Language section */
.mobile-lang-section {
  margin-bottom: 2.5rem;
}

.lang-section-title {
  color: #fff;
    font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.mobile-lang-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.mobile-lang-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-weight: 500;
}

.mobile-lang-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.02);
}

.mobile-lang-btn.active {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.lang-flag {
  width: 24px;
  height: 16px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lang-flag svg {
  width: 100%;
  height: 100%;
}

.lang-name {
  font-weight: 600;
}

/* Contact info */
.mobile-contact-info {
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  margin-bottom: 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.contact-icon {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem;
  border-radius: 8px;
  flex-shrink: 0;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  color: var(--white);
}

.contact-text {
  flex: 1;
}

.contact-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  display: block;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-value {
  font-size: 1rem;
  color: var(--white);
  font-weight: 600;
  display: block;
}

/* Mobile breakpoints */
@media (max-width: 768px) {
  .nav, .lang-switcher, .menu-res-btn.desktop-only {
    display: none !important;
  }
  
  .mobile-hamburger {
    display: flex !important;
  }
}

@media (max-width: 480px) {
  .mobile-menu-content {
    padding: 1.5rem 1rem 2rem;
  }
  
  .mobile-nav-item {
    padding: 1rem;
  }
  
  .nav-item-title {
    font-size: 1.1rem;
  }
  
  .nav-item-desc {
    font-size: 0.85rem;
  }
  
  .mobile-lang-options {
    grid-template-columns: 1fr;
  }
  
  .mobile-cta-btn {
    padding: 1.2rem;
    font-size: 1rem;
  }
}

/* Smooth scrolling */
.mobile-menu-content {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.mobile-menu-content::-webkit-scrollbar {
  display: none;
}

/* Performance optimizations */
.modern-mobile-menu {
  will-change: opacity, visibility;
}

.mobile-menu-content {
  will-change: transform;
}

.menu-bg-orb {
  will-change: transform;
}

/* MOBILE MENU SCROLL PREVENTION - POPRAWIONE */
body.mobile-menu-open {
  overflow: hidden !important;
  height: 100vh !important;
  position: fixed !important;
  width: 100% !important;
  top: 0 !important;
  left: 0 !important;
}

/* RESPONSYWNE NAGŁÓWKI - UJEDNOLICONE ROZMIARY */
.section h2,
.amenities-title,
.common-areas-header h2,
.attractions-header h2 {
  font-size: 2.5rem !important;
  font-weight: 400 !important;
  text-align: center !important;
  margin-bottom: 2rem !important;
  color: var(--primary) !important;
}

/* Nagłówek "Najpopularniejsze udogodnienia" */
.amenities-title {
  font-size: 2.5rem !important;
  font-weight: 400 !important;
  margin-bottom: 2rem !important;
  color: var(--primary) !important;
  letter-spacing: 1px !important;
  text-align: center !important;
}

@media (max-width: 768px) {
  /* Wszystkie główne nagłówki sekcji mniejsze na telefonie */
  .section h2,
  .amenities-title,
  .common-areas-header h2,
  .attractions-header h2,
  #opinie h2,
  #map-section h2 {
    font-size: 1.8rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  /* Specjalne style dla mobile menu contact info */
  .mobile-contact-info {
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 1rem;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
  }
  
  .contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
  }
  
  .contact-icon {
    background: rgba(255, 255, 255, 0.3);
    padding: 0.8rem;
    border-radius: 12px;
    flex-shrink: 0;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .contact-text {
    flex: 1;
  }
  
  .contact-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    display: block;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
  }
  
  .contact-value {
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 700;
    display: block;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }
}

/* FOOTER COPYRIGHT SECTION FIX */
@media (max-width: 768px) {
  .footer {
    padding: 3rem 1rem 2rem 1rem !important;
    margin: 0 !important;
  }
  
  .footer-section:last-child {
    background: rgba(45, 54, 72, 0.1) !important;
    margin: 2rem -1rem -2rem -1rem !important;
    padding: 2rem 1rem !important;
    border-radius: 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
  }
  
  .footer-section:last-child p,
  .footer-section:last-child a {
    background: rgba(255, 255, 255, 0.95) !important;
    padding: 0.5rem 1rem !important;
    border-radius: 8px !important;
    margin: 0.5rem 0 !important;
    display: inline-block !important;
    color: var(--primary) !important;
    text-decoration: none !important;
    font-weight: 500 !important;
  }
}

/* HERO TITLES WIELKOŚCI */
.hero-title-rooms,
.hero-title-animated,
.hero-title-kontakt,
.hero-reservation .hero-title {
  font-size: 4rem !important;
  font-weight: 300 !important;
  color: var(--white) !important;
  margin-bottom: 1.5rem !important;
  text-shadow: 0 2px 20px rgba(0,0,0,0.1) !important;
}

/* Mobile responsywność dla hero titles */
@media (max-width: 768px) {
  .hero-title-rooms,
  .hero-title-animated,
  .hero-title-kontakt,
  .hero-reservation .hero-title {
    font-size: 2.5rem !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
  }
}

/* CENNIK - "Aktualne ceny za dobę" mniejszy na telefonie */
.pricing-main h2 {
  font-size: 2.5rem !important;
}

@media (max-width: 768px) {
  .pricing-main h2 {
    font-size: 1.8rem !important;
  }
}

/* CENNIK - sekcja "Zarezerwuj teraz" - tylko jeden numer */
.section:has(h2:contains("Zarezerwuj teraz")) .contact-list div:nth-child(2) {
  display: none;
}

.section:has(h2:contains("Zarezerwuj teraz")) .contact-list div:nth-child(3) {
  display: none;
}

/* KONTAKT - "Skontaktuj się z nami" mniejszy na telefonie */
.contact-hero h2 {
  font-size: 2.5rem !important;
}

@media (max-width: 768px) {
  .contact-hero h2 {
    font-size: 1.8rem !important;
  }
}

/* FOOTER COPYRIGHT SEKCJA - POPRAWKA DLA MOBILE */
.footer-copyright {
  background: rgba(127, 200, 195, 0.1);
  padding: 1.5rem 0;
  text-align: center;
  margin-top: 2rem;
  border-top: 1px solid rgba(127, 200, 195, 0.15);
}

@media (max-width: 768px) {
  .footer-copyright {
    padding: 1.2rem 1rem; /* Dodaję padding po bokach dla mobile */
    margin: 0 -1rem 0 -1rem; /* Rozciągam na pełną szerokość */
  }
  
  .footer-copyright p {
    margin: 0;
    padding: 0;
    font-size: 0.85rem;
    line-height: 1.5;
  }
}

/* Zapobieganie pionowemu scrollowaniu */
body {
  overflow-x: hidden;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Poprawka dla wszystkich elementów żeby nie wychodziły poza viewport */
* {
  box-sizing: border-box;
}

.container {
  max-width: 100%;
  overflow-x: hidden;
}

.hero-title {
  word-wrap: break-word;
  hyphens: auto;
}

/* RESPONSYWNE NAGŁÓWKI SEKCJI */
@media (max-width: 768px) {
  .section h2,
  .hero-content h1:not(.hero-title),
  main h1:not(.hero-title),
  .contact-header h1,
  .pricing-header h1 {
    font-size: 1.8rem !important;
  }
  
  .hero-title,
  .hero-title-reservation,
  .hero-title-pricing,
  .hero-title-contact {
    font-size: 2.5rem !important;
  }
}

@media (min-width: 769px) {
  .section h2,
  .hero-content h1:not(.hero-title),
  main h1:not(.hero-title),
  .contact-header h1,
  .pricing-header h1 {
    font-size: 2.5rem !important;
  }
  
  .hero-title,
  .hero-title-reservation,
  .hero-title-pricing,
  .hero-title-contact {
    font-size: 4rem !important;
  }
} 

/* === WSPÓLNE PRZESTRZENIE - NOWY DESIGN (przeniesione z index.html) === */
.common-areas-header {
  text-align: center;
  margin-bottom: 4rem;
}
.common-areas-header h2 {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 400;
}
.section-subtitle {
  color: var(--text-light);
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.common-areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.common-area-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(45,54,72,0.08);
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}
.common-area-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(45,54,72,0.15);
  border-color: var(--accent);
}
.area-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.area-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.common-area-card:hover .area-image img {
  transform: scale(1.1);
}
.area-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(127,200,195,0.8) 0%, rgba(45,54,72,0.6) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.common-area-card:hover .area-overlay {
  opacity: 1;
}
.area-icon {
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}
.common-area-card:hover .area-icon {
  transform: scale(1);
}
.area-content {
  padding: 2rem;
}
.area-content h3 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.area-features {
  margin-bottom: 2rem;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  color: var(--primary);
}
.feature-item:last-child {
  margin-bottom: 0;
}
.feature-item svg {
  flex-shrink: 0;
  color: var(--accent);
}
.area-cta {
  display: inline-flex;
  align-items: center;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid var(--accent);
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  background: transparent;
}
.area-cta:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateX(5px);
}
@media (max-width: 768px) {
  .common-areas-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .common-areas-header h2 {
    font-size: 2.2rem;
  }
  .section-subtitle {
    font-size: 1.1rem;
  }
  .area-content {
    padding: 1.5rem;
  }
  .area-image {
    height: 180px;
  }
  
  /* Wyśrodkowanie kart pokojów na mobile */
  .rooms-private-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    max-width: 380px !important;
    margin: 0 auto !important;
    justify-items: center !important;
  }
} 

.room-price-bold {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent2, #0ea5e9);
  margin: 0.8em 0 0.7em 0;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 12px #b6e0fe33, 0 1px 0 #fff;
  display: block;
  white-space: nowrap;
}

#rooms-parter + .room-category-header, #rooms-parter ~ .room-category-header, .room-category-header.poziom0parter, .room-category-header:has(.category-title-styled:contains('poziom -1 parter')) {
  margin-top: 6rem !important;
  margin-bottom: 4rem !important;
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}

.rooms-private-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}
.room-card {
  display: flex;
  flex-direction: column;
  min-height: 540px;
}
.rooms-private-grid .room-card h3 {
  flex-grow: 1;
  display: flex;
  align-items: flex-end;
  margin-bottom: 0.5rem !important;
}
.rooms-private-grid .room-card .room-price-bold {
  margin-top: 0.5rem !important;
  margin-bottom: 1.5rem !important;
}
.room-card .details-btn {
  margin-top: auto;
  align-self: center;
}
.category-title-styled {
  font-size: 2.2rem !important;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.room-category-header h2, 
.room-category-header .category-title,
.room-category-header .category-title-styled {
  font-size: 2.2rem !important;
  text-align: center !important;
  margin-bottom: 1.5rem !important;
  margin-top: 2.5rem !important;
  font-weight: 400 !important;
  color: var(--primary) !important;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif !important;
  display: block !important;
  align-items: unset !important;
  justify-content: unset !important;
  gap: unset !important;
}
.room-category-header {
  margin-top: 5rem !important;
  margin-bottom: 3rem !important;
  padding: 2rem !important;
}

.price-section-title {
  text-align: center !important;
  font-size: 2.1rem !important;
  font-weight: 600 !important;
  color: var(--primary) !important;
  margin-bottom: 2.5rem !important;
  letter-spacing: 0.01em;
  position: relative;
  padding-bottom: 0.7rem;
}
.price-section-title::after {
  content: '';
  display: block;
  margin: 0 auto;
  margin-top: 0.5rem;
  width: 80px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}
.price-section {
  margin-bottom: 6rem !important;
  padding-top: 3.5rem !important;
}
.price-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3.2rem 4.2rem;
  justify-content: center;
  margin-top: 2.5rem;
}
.price-card {
  background: linear-gradient(135deg, #f8fafc 60%, #e6f0fa 100%);
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px 0 rgba(127,200,195,0.13), 0 2px 16px 0 rgba(45,54,72,0.10);
  border: 1.5px solid #e0e7ef;
  padding: 2.7rem 2.1rem 2.3rem 2.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 250px;
  min-height: 220px;
  max-width: 300px;
  margin-bottom: 1.2rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow .22s, transform .22s, background .22s;
}
.price-card:hover {
  box-shadow: 0 16px 48px 0 rgba(127,200,195,0.18), 0 4px 24px 0 rgba(45,54,72,0.13);
  background: linear-gradient(135deg, #e6f0fa 60%, #f8fafc 100%);
  transform: translateY(-6px) scale(1.025);
}
.price-room {
  font-size: 1.22rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 1.1rem;
  letter-spacing: 0.01em;
  text-align: center;
  opacity: 0.97;
}
.price-value {
  display: block;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--accent);
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  line-height: 1.2;
  text-align: right;
  width: 100%;
  white-space: nowrap;
}

/* Responsive styles for pricing section */
@media (max-width: 900px) {
  .price-grid {
    gap: 2.2rem 1.2rem;
  }
  .price-card {
    max-width: 98vw;
  }
}

@media (max-width: 600px) {
  .price-section-title {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    text-align: center;
    padding-left: 0;
  }
  .price-main-wrap {
    padding: 2.2rem 0.2rem 3rem 0.2rem;
  }
  .price-header h1 {
    font-size: 3.2rem;
    margin-bottom: 1.3rem;
  }
  .price-section {
    margin-bottom: 2.5rem;
    padding-top: 1.2rem;
  }
  .price-grid {
    gap: 1.2rem;
  }
  .price-card {
    padding: 1.2rem 0.7rem;
    min-width: 0;
    max-width: 100%;
    min-height: 140px;
  }
  .price-value {
    font-size: 1.5rem;
  }
}
