/* Orla Góra Guesthouse - Modern CSS with 2026 Standards */

/* CSS Reset and Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Light theme - high contrast design tokens using OKLCH */
    --bg: oklch(98% 0 0);           /* #FAFAFA-ish background */
    --surface: oklch(97% 0.01 95);  /* Card/surface background */
    --muted: oklch(94% 0.01 95);    /* Muted background */
    --text: oklch(23% 0 0);         /* High contrast text */
    --text-muted: oklch(40% 0 0);   /* Muted text */
    
    /* Brand colors - cool blue theme */
    --brand: oklch(65% 0.14 250);      /* Primary brand color */
    --brand-600: oklch(55% 0.14 250);  /* Hover state */
    --brand-700: oklch(45% 0.13 250);  /* Active state */
    
    /* Accent colors */
    --accent: oklch(78% 0.09 160);      /* Subtle accent */
    --success-color: oklch(65% 0.15 145);
    --warning-color: oklch(75% 0.15 85);
    --error-color: oklch(65% 0.20 25);
    
    /* UI elements */
    --border: oklch(88% 0 0);           /* Borders */
    --shadow: 0 2px 12px rgba(0,0,0,.06); /* Subtle shadows */
    
    /* Legacy color mappings for compatibility */
    --primary-color: var(--brand);
    --primary-light: var(--brand-600);
    --primary-dark: var(--brand-700);
    --secondary-color: var(--accent);
    --white: var(--bg);
    --gray-50: var(--muted);
    --gray-100: oklch(92% 0.01 95);
    --gray-200: var(--border);
    --gray-300: oklch(82% 0 0);
    --gray-400: oklch(65% 0 0);
    --gray-500: oklch(55% 0 0);
    --gray-600: oklch(45% 0 0);
    --gray-700: oklch(35% 0 0);
    --gray-800: oklch(25% 0 0);
    --gray-900: var(--text);
    
    /* Typography - system UI stack for better performance */
    --font-family-base: system-ui, -apple-system, 'Segoe UI', Roboto, Inter, Arial, sans-serif;
    --font-family-heading: system-ui, -apple-system, 'Segoe UI', Roboto, Inter, Arial, sans-serif;
    
    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 250ms ease-in-out;
    --transition-slow: 350ms ease-in-out;
    
    /* Container */
    --container-max-width: 1200px;
    --container-padding: var(--space-4);
}

/* Dark mode support (optional toggle) */
:root[data-theme="dark"] {
    --bg: oklch(18% 0.02 250);
    --surface: oklch(22% 0.02 250);
    --muted: oklch(28% 0.02 250);
    --text: oklch(95% 0 0);
    --text-muted: oklch(80% 0 0);
    --brand: oklch(70% 0.14 250);
    --border: oklch(35% 0 0);
    --shadow: 0 2px 12px rgba(0,0,0,.2);
}

/* Automatic dark mode based on system preference */
@media (prefers-color-scheme: dark) {
    :root:not([data-theme]) {
        --bg: oklch(18% 0.02 250);
        --surface: oklch(22% 0.02 250);
        --muted: oklch(28% 0.02 250);
        --text: oklch(95% 0 0);
        --text-muted: oklch(80% 0 0);
        --brand: oklch(70% 0.14 250);
        --border: oklch(35% 0 0);
        --shadow: 0 2px 12px rgba(0,0,0,.2);
    }
}






.fullscreen-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.banner-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.banner-slide.active {
  opacity: 1;
  z-index: 1;
}

.banner-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.45);
  z-index: 2;
}

.banner-content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-start;   /* zamiast center – przesuwa ramkę w lewo */
  height: 100%;
  padding-left: 8%;              /* odstęp od lewej krawędzi */
  padding-right: 8%;             /* zachowaj trochę marginesu z prawej */
  text-align: left;              /* tekst w ramce wyrównany do lewej */
}


.hero-card {
  background: #fff;
  color: #111;
  padding: 30px 40px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  max-width: 650px;
}


.hero-card h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #0077ff;
}

.hero-features {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 20px 0;
  justify-content: center;
}

.hero-features .feature {
  background: #f5f5f5;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 0.9rem;
}

.hero-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
}





/* Base HTML Elements */
html {
    font-size: 16px;
    line-height: 1.6;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-base);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-wrap: pretty;
    hanging-punctuation: first last;
}

/* Container Queries Support */
.container {
    container-type: inline-size;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

@container (min-width: 48rem) {
    .container {
        padding: 0 var(--space-6);
    }
}

@container (min-width: 64rem) {
    .container {
        padding: 0 var(--space-8);
    }
}

/* Typography - improved hierarchy and contrast */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: var(--space-4);
    text-wrap: balance;
}

h1 { 
    font-size: clamp(1.75rem, 1.2rem + 2vw, 3rem); 
    line-height: 1.15; 
}
h2 { 
    font-size: clamp(1.4rem, 1.1rem + 1.2vw, 2.1rem); 
    line-height: 1.2; 
}
h3 { 
    font-size: clamp(1.2rem, 1rem + 0.8vw, 1.8rem); 
}
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); }

@media (min-width: 768px) {
    h1 { font-size: clamp(2rem, 1.5rem + 2.5vw, 3.5rem); }
    h2 { font-size: clamp(1.6rem, 1.3rem + 1.5vw, 2.5rem); }
    h3 { font-size: clamp(1.4rem, 1.2rem + 1vw, 2rem); }
}

p {
    margin-bottom: var(--space-4);
    color: var(--text-muted);
    max-width: 72ch;
}

p:has(strong), p:has(b) {
    color: var(--text);
}

a {
    color: var(--brand);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--brand-600);
}

a:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Buttons - high contrast design */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-size: var(--text-sm);
    font-weight: 600;
    line-height: 1;
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    white-space: nowrap;
    min-height: 44px; /* Touch target size */
}

.btn:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 2px;
}

.btn-primary {
    background-color: var(--brand);
    color: var(--bg);
    border-color: var(--brand);
}

.btn-primary:hover {
    background-color: var(--brand-600);
    border-color: var(--brand-600);
    color: var(--bg);
}

.btn-primary:active {
    background-color: var(--brand-700);
    border-color: var(--brand-700);
}

.btn-secondary {
    background-color: transparent;
    color: var(--brand);
    border-color: var(--brand);
}

.btn-secondary:hover {
    background-color: var(--brand);
    color: var(--bg);
}

.btn-large {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
}

/* Header - light theme with high contrast */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--surface);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow);
}

.nav {
    padding: var(--space-3) 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
}

.nav-logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: none;
    align-items: center;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
}

.nav-link {
    font-weight: 500;
    color: var(--text);
    transition: color var(--transition-fast);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-md);
}

.nav-link:hover {
    color: var(--brand);
    background-color: var(--muted);
}

.nav-link:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 2px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-right: var(--space-6);
}

.language-switcher {
    display: flex;
    gap: var(--space-1);
}

.lang-btn {
    padding: var(--space-2) var(--space-3);
    font-size: var(--text-xs);
    font-weight: 600;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    color: var(--text);
    min-height: 32px;
}

.lang-btn:hover,
.lang-btn.active {
    background-color: var(--brand);
    color: var(--bg);
    border-color: var(--brand);
}

.lang-btn:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 2px;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
    padding: var(--space-2);
    background: transparent;
    border: none;
    cursor: pointer;
}

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background-color: var(--gray-700);
    transition: all var(--transition-fast);
}

/* Hero Section - light theme with readable text */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--muted);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0.3; /* Reduced opacity for better text readability */
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: var(--space-20) 0;
}

/* Remove dark overlay - use light background card instead */
.hero-text {
    max-width: 600px;
    background-color: var(--surface);
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow);
    color: var(--text);
}

.hero-title {
    font-size: clamp(1.75rem, 1.2rem + 2vw, 3rem);
    font-weight: 800;
    margin-bottom: var(--space-6);
    color: var(--text);
    line-height: 1.15;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
    }
}

.hero-subtitle {
    display: block;
    font-size: clamp(1rem, 0.8rem + 1vw, 1.5rem);
    font-weight: 400;
    color: var(--brand);
}

.hero-description {
    font-size: var(--text-lg);
    margin-bottom: var(--space-8);
    color: var(--text-muted);
    line-height: 1.6;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

@media (min-width: 768px) {
    .hero-features {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text);
    background-color: var(--muted);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-lg);
}

.feature-icon {
    font-size: var(--text-lg);
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

@media (min-width: 768px) {
    .hero-actions {
        flex-direction: row;
    }
}

/* Booking Section - light theme */
.booking-section {
    padding: var(--space-16) 0;
    background-color: var(--bg);
}

.booking-widget {
    background-color: var(--surface);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.booking-title {
    text-align: center;
    margin-bottom: var(--space-8);
}

.booking-form {
    display: grid;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .booking-form {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .booking-form button {
        grid-column: 1 / -1;
    }
}

@media (min-width: 1024px) {
    .booking-form {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .booking-form button {
        grid-column: 5 / 6;
    }
}

/* Form Elements */
.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

label {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--gray-700);
}

input,
select,
textarea {
    padding: var(--space-3);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-lg);
    font-size: var(--text-base);
    transition: border-color var(--transition-fast);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(15, 76, 117, 0.1);
}

/* Sections */
.section-title {
    text-align: center;
    margin-bottom: var(--space-4);
}

.section-subtitle {
    text-align: center;
    font-size: var(--text-lg);
    color: var(--gray-600);
    margin-bottom: var(--space-12);
}

/* About Section */
.about-section {
    padding: var(--space-20) 0;
}

.about-content {
    display: grid;
    gap: var(--space-12);
    align-items: center;
}

@media (min-width: 1024px) {
    .about-content {
        grid-template-columns: 2fr 1fr;
    }
}

.about-description p {
    font-size: var(--text-lg);
    margin-bottom: var(--space-6);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-8);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--primary-color);
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--gray-600);
}

.image-grid {
    display: grid;
    gap: var(--space-4);
}

.image-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius-xl);
}

/* Rooms Section */
.rooms-section {
    padding: var(--space-20) 0;
    background-color: var(--gray-50);
}

.rooms-grid {
    display: grid;
    gap: var(--space-8);
}

@container (min-width: 48rem) {
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@container (min-width: 64rem) {
    .rooms-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.room-card {
    background-color: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-normal);
}

.room-card:hover {
    transform: translateY(-4px);
}

.room-card.featured {
    border: 2px solid var(--primary-color);
}

.room-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.room-card:hover .room-image img {
    transform: scale(1.05);
}

.room-content {
    padding: var(--space-6);
}

.room-title {
    margin-bottom: var(--space-3);
}

.room-description {
    margin-bottom: var(--space-4);
    color: var(--gray-600);
}

.room-amenities {
    list-style: none;
    margin-bottom: var(--space-6);
}

.room-amenities li {
    padding: var(--space-1) 0;
    font-size: var(--text-sm);
    color: var(--gray-600);
}

.room-amenities li::before {
    content: '✓';
    color: var(--success-color);
    font-weight: bold;
    margin-right: var(--space-2);
}

.room-price {
    display: flex;
    align-items: baseline;
    gap: var(--space-2);
}

.price {
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--primary-color);
}

.price-period {
    font-size: var(--text-sm);
    color: var(--gray-500);
}

/* Facilities Section */
.facilities-section {
    padding: var(--space-20) 0;
}

.facilities-grid {
    display: grid;
    gap: var(--space-8);
}

@container (min-width: 48rem) {
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@container (min-width: 64rem) {
    .facilities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.facility-card {
    text-align: center;
    padding: var(--space-8);
    background-color: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal);
}

.facility-card:hover {
    transform: translateY(-2px);
}

.facility-icon {
    font-size: var(--text-5xl);
    margin-bottom: var(--space-4);
}

.facility-title {
    margin-bottom: var(--space-4);
}

.facility-description {
    color: var(--gray-600);
}

/* Location Section */
.location-section {
    padding: var(--space-20) 0;
    background-color: var(--gray-50);
}

.location-content {
    display: grid;
    gap: var(--space-12);
}

@media (min-width: 1024px) {
    .location-content {
        grid-template-columns: 1fr 1fr;
    }
}

.location-info {
    display: grid;
    gap: var(--space-8);
}

.address-card,
.distances-card {
    background-color: var(--white);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.address {
    margin-bottom: var(--space-6);
    line-height: 1.8;
}

.distances-list {
    display: grid;
    gap: var(--space-3);
}

.distance-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3);
    background-color: var(--gray-50);
    border-radius: var(--radius-lg);
}

.distance-icon {
    font-size: var(--text-lg);
}

.distance-label {
    flex: 1;
    font-weight: 500;
}

.distance-value {
    font-weight: 600;
    color: var(--primary-color);
}

.distances-note {
    margin-top: var(--space-4);
    font-size: var(--text-sm);
    color: var(--gray-500);
    font-style: italic;
}

.location-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-placeholder iframe {
    border-radius: var(--radius-xl);
}

/* Attractions Section */
.attractions-section {
    padding: var(--space-20) 0;
}

.attractions-grid {
    display: grid;
    gap: var(--space-8);
}

@container (min-width: 48rem) {
    .attractions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@container (min-width: 64rem) {
    .attractions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.attraction-card {
    background-color: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-normal);
}

.attraction-card:hover {
    transform: translateY(-4px);
}

.attraction-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.attraction-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.attraction-content {
    padding: var(--space-6);
}

.attraction-title {
    margin-bottom: var(--space-3);
}

.attraction-description {
    margin-bottom: var(--space-4);
    color: var(--gray-600);
}

.attraction-distance {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--primary-color);
}

/* FAQ Section - fixed colors and contrast */
.faq-section {
    padding: var(--space-20) 0;
    background-color: var(--muted);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--surface);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-4);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    padding: var(--space-6);
    background: transparent;
    border: none;
    text-align: left;
    font-size: var(--text-lg);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color var(--transition-fast);
    color: var(--text);
}

.faq-question:hover {
    background-color: var(--muted);
}

.faq-question:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 2px;
}

.faq-icon {
    font-size: var(--text-2xl);
    font-weight: 300;
    transition: transform var(--transition-fast);
    color: var(--brand);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 var(--space-6) var(--space-6);
    display: none;
    color: var(--text-muted);
    line-height: 1.6;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    display: block;
}

/* Contact Section */
.contact-section {
    padding: var(--space-20) 0;
}

.contact-content {
    display: grid;
    gap: var(--space-12);
}

@media (min-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info {
    display: grid;
    gap: var(--space-8);
}

.contact-card {
    background-color: var(--white);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.contact-details,
.checkin-info {
    display: grid;
    gap: var(--space-4);
}

.contact-item,
.checkin-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
}

.contact-icon,
.checkin-icon {
    font-size: var(--text-lg);
    margin-top: var(--space-1);
}

.contact-form-wrapper {
    background-color: var(--white);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: grid;
    gap: var(--space-6);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    cursor: pointer;
    font-size: var(--text-sm);
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-sm);
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

input[type="checkbox"]:checked + .checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: var(--text-xs);
    font-weight: bold;
}

input[type="checkbox"] {
    display: none;
}

/* Footer */
.footer {
    background-color: var(--gray-900);
    color: var(--white);
    padding: var(--space-16) 0 var(--space-8);
}

.footer-content {
    display: grid;
    gap: var(--space-8);
    margin-bottom: var(--space-12);
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: var(--space-4);
}

.footer-description {
    color: var(--gray-300);
    margin-bottom: var(--space-4);
}

.footer-rating {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.rating-stars {
    font-size: var(--text-lg);
}

.rating-text {
    font-size: var(--text-sm);
    color: var(--gray-400);
}

.footer-contact p {
    margin-bottom: var(--space-2);
    color: var(--gray-300);
}

.footer-contact a {
    color: var(--white);
}

.footer-contact a:hover {
    color: var(--primary-light);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-2);
}

.footer-links a {
    color: var(--gray-300);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-languages {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.lang-link {
    color: var(--gray-300);
    font-size: var(--text-sm);
    transition: color var(--transition-fast);
}

.lang-link:hover,
.lang-link.active {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: var(--space-8);
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-legal {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.legal-links {
    display: flex;
    gap: var(--space-4);
}

.legal-links a {
    color: var(--gray-400);
    font-size: var(--text-sm);
}

.legal-links a:hover {
    color: var(--white);
}

/* Utility Classes */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Print Styles */
@media print {
    .header,
    .nav-toggle,
    .booking-section,
    .footer {
        display: none;
    }
    
    .hero {
        min-height: auto;
        page-break-after: always;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000000;
        --gray-600: #000000;
        --gray-700: #000000;
        --gray-800: #000000;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus Visible Support */
.btn:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* View Transitions API Support */
@supports (view-transition-name: none) {
    ::view-transition-old(root),
    ::view-transition-new(root) {
        animation-duration: 0.3s;
    }
}


/* ===== HERO SLIDERS ===== */
.hero-sliders {
    background: var(--surface);
    padding: 3rem 0;
    border-top: 1px solid var(--border);
}

.sliders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.hero-slider {
    background: var(--background);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px oklch(0 0 0 / 0.1);
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.slider-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin: 0;
}

.slider-controls {
    display: flex;
    gap: 0.5rem;
}

.slider-btn {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border);
    background: var(--background);
    color: var(--text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.2s ease;
}

.slider-btn:hover {
    background: var(--brand);
    color: white;
    border-color: var(--brand);
}

.slider-container {
    overflow: hidden;
    border-radius: 8px;
}

.slider-track {
    display: flex;
    transition: transform 0.3s ease;
}

.slider-item {
    min-width: 100%;
    position: relative;
    display: none;
}

.slider-item.active {
    display: block;
}

.slider-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.slider-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, oklch(0 0 0 / 0.8));
    color: white;
    padding: 1rem;
    border-radius: 0 0 8px 8px;
}

.slider-caption h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.slider-caption p {
    font-size: 0.875rem;
    margin: 0;
    opacity: 0.9;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: 4rem 0;
    background: var(--background);
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.gallery-tab {
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
}

.gallery-tab:hover,
.gallery-tab.active {
    background: var(--brand);
    color: white;
    border-color: var(--brand);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    background: var(--surface);
    border: 1px solid var(--border);
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px oklch(0 0 0 / 0.15);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, oklch(0 0 0 / 0.8));
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.gallery-overlay p {
    font-size: 0.875rem;
    margin: 0;
    opacity: 0.9;
}

.gallery-item.hidden {
    display: none;
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: oklch(0 0 0 / 0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.gallery-modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: var(--surface);
    border-radius: 12px;
    overflow: hidden;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: oklch(0 0 0 / 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: oklch(0 0 0 / 0.7);
}

#modal-image {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
}

.modal-caption {
    padding: 1.5rem;
    background: var(--surface);
}

.modal-caption h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: var(--text);
}

.modal-caption p {
    margin: 0;
    color: var(--text-muted);
}

.modal-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
}

.modal-nav {
    width: 50px;
    height: 50px;
    background: oklch(0 0 0 / 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-nav:hover {
    background: oklch(0 0 0 / 0.7);
}

/* ===== MAP IMPROVEMENTS ===== */
.location-map {
    flex: 1;
    min-height: 400px;
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 4px 12px oklch(0 0 0 / 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #25D366;
    color: white !important;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.2s ease;
    font-size: 0.875rem;
}

.whatsapp-link:hover {
    background: #128C7E;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px oklch(0.4 0.15 145 / 0.3);
}

.whatsapp-link::before {
    content: "💬";
    font-size: 1rem;
}

/* ===== RESPONSIVE IMPROVEMENTS ===== */
@media (max-width: 768px) {
    .sliders-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .gallery-tabs {
        gap: 0.5rem;
    }
    
    .gallery-tab {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .modal-content {
        max-width: 95vw;
        max-height: 95vh;
    }
    
    .modal-navigation {
        padding: 0 0.5rem;
    }
    
    .modal-nav {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .map-container {
        min-height: 300px;
    }
    
    .map-container iframe {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-sliders {
        padding: 2rem 0;
    }
    
    .hero-slider {
        padding: 1rem;
    }
    
    .slider-item img {
        height: 180px;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .whatsapp-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}






/* ===== FULLSCREEN BANNER ===== */
.fullscreen-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 2;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: block; /* zamiast flex */
}

.banner-slide.active {
    opacity: 1;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;  /* ramka po lewej */
    height: 100%;
    padding-left: 8%;
    padding-right: 8%;
    text-align: left;
    color: white;
    max-width: 1000px; /* kontrola szerokości */
}

.hero-card {
    background: #fff;
    color: #111;
    padding: 30px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    max-width: 650px;
}

.banner-nav {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-3);
    z-index: 3;
}

.banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-dot.active,
.banner-dot:hover {
    background: white;
    border-color: white;
}

/* Responsive adjustments for banner */
@media (max-width: 768px) {
    .fullscreen-banner {
        height: 70vh;
    }
    
    .banner-content {
        justify-content: center; /* na mobile wraca na środek */
        text-align: center;
        padding: var(--space-6);
    }

    .banner-title {
        font-size: var(--text-3xl);
    }
    
    .banner-description {
        font-size: var(--text-lg);
    }
}

@media (max-width: 480px) {
    .fullscreen-banner {
        height: 60vh;
    }
    
    .banner-title {
        font-size: var(--text-2xl);
    }
    
    .banner-description {
        font-size: var(--text-base);
    }
}
