:root {
            --primary: #01467F;
            --secondary: #AF1C21;
            --accent: #8e1e2e;
            --light: #f8f7f4;
            --dark: #2c2c2c;
            --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            --radius: 12px;
        }

/* Footer credit (moved out of critical inline styles) */
.footer-bottom{display:flex;flex-direction:column;gap:6px;align-items:center;font-size:0.95rem;color:#444}
.footer-credit{font-size:0.82rem;color:#dadada;margin:0}
.footer-credit a{color:#d8d8d8;text-decoration:none;border-bottom:1px dotted rgba(180, 180, 180, 0.08); text-decoration: none;}
.footer-credit a:hover{color:#333;border-bottom-color:rgba(0,0,0,0.16)}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: var(--light);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

/* Critical above-the-fold elements should use system fonts to avoid visible font swaps on desktop */
.critical-font-fallback,
header, .site-header, .main-nav, .hero, .hero h1, .hero p, .site-title {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
}

        h1, h2, h3, h4, h5 {
            /* Use system serif to avoid loading Playfair and reduce CLS */
            font-family: Georgia, 'Times New Roman', Times, serif;
            font-weight: 600;
            line-height: 1.2;
            color: var(--primary);
        }

        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 36px;
            background-color: var(--secondary);
            color: white;
            text-decoration: none;
            font-weight: 600;
            border-radius: 50px;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: 1.05rem;
            text-align: center;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(198, 167, 118, 0.3);
            text-transform: uppercase;
            gap: 10px;
        }

        .btn:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(198, 167, 118, 0.4);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--secondary);
            color: var(--secondary);
            box-shadow: none;
        }

        .btn-outline:hover {
            background-color: var(--secondary);
            color: white;
        }

        .btn-primary {
            background-color: var(--primary);
            box-shadow: 0 4px 15px rgba(26, 58, 95, 0.3);
        }

        .btn-primary:hover {
            background-color: #152b47;
            box-shadow: 0 8px 25px rgba(26, 58, 95, 0.4);
        }

        .section {
            padding: 100px 0;
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.8rem;
            color: var(--primary);
            display: inline-block;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 15px;
        }

        .section-title h2::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--secondary);
            margin: 15px auto 0;
            border-radius: 2px;
        }

        .section-title p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            color: var(--dark);
            opacity: 0.85;
        }

       /* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.header-scrolled {
    padding: 8px 0; /* Zmienione z 12px 0 */
}

.navbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0; /* Zmienione z 20px 0 */
}

.logo img {
    width: 180px; /* Zmienione z 220px */
    height: auto;
    object-fit: contain;
    margin-right: 8px;
    filter: drop-shadow(0 2px 6px rgba(30,58,95,0.10));
    transition: filter 0.3s;
}

.nav-item {
    margin: 0 8px; /* Zmienione z 0 12px */
}

.nav-link {
    font-size: 0.95rem; /* Zmienione z 1.05rem */
    padding: 6px 4px; /* Zmienione z 8px 5px */
}

.btn {
    padding: 12px 28px; /* Zmienione z 16px 36px */
    font-size: 0.95rem; /* Zmienione z 1.05rem */
}

        .nav-menu {
            display: flex;
            align-items: center;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-item {
            margin: 0 12px;
            display: flex;
            align-items: center;
        }

        .nav-link {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            font-size: 1.05rem;
            transition: var(--transition);
            position: relative;
            padding: 8px 5px;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--secondary);
            transition: var(--transition);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-link:hover {
            color: var(--primary);
        }

        .hamburger {
            display: none;
            cursor: pointer;
            z-index: 1001;
            font-size: 1.5rem;
            color: var(--primary);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            min-height: 800px;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            margin-top: 80px;
        }

       .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(1, 70, 127, 0.3) 0%, rgba(1, 70, 127, 0.5) 70%);
    z-index: 2;
}

    /* Swiper removed: hero uses static background via .hero-image */

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 30px;
            color: white;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 25px;
            color: white;
            text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
            line-height: 1.1;
        }

        .hero p {
            font-size: 1.4rem;
            margin-bottom: 40px;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
            max-width: 600px;
        }

        .hero-btns {
            display: flex;
            gap: 20px;
            margin-top: 30px;
        }

           .hero-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr); /* 2 kolumny na desktop */
            gap: 20px;
            margin-top: 60px;
        }

        .feature-box {
            display: flex;
            align-items: center;
            gap: 15px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            padding: 18px 25px;
            border-radius: var(--radius);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: var(--transition);
        }

        .feature-box:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.25);
        }

        .feature-box i {
            font-size: 1.8rem;
            color: var(--secondary);
        }

        .feature-text h4 {
            color: white;
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .feature-text p {
            font-size: 0.9rem;
            margin-bottom: 0;
            opacity: 0.9;
        }

        /* About Section */
        .about {
            background-color: white;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-text h3 {
            font-size: 2.2rem;
            margin-bottom: 25px;
            color: var(--primary);
        }

        .about-text p {
            margin-bottom: 25px;
            font-size: 1.1rem;
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin-top: 40px;
        }

        .feature {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .feature i {
            color: var(--secondary);
            font-size: 1.8rem;
            min-width: 40px;
        }

        .feature h4 {
            margin-bottom: 8px;
            font-size: 1.2rem;
        }

        .about-image {
            border-radius: var(--radius);
            max-width: 400px;
            overflow: hidden;
            margin: auto;
            box-shadow: var(--shadow);
            position: relative;
        }

        .about-image img {
            height: auto;
            transition: var(--transition);
            display: block;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        /* Rooms Section */
        .rooms {
            background: linear-gradient(to bottom, #f8f7f4 0%, #ffffff 100%);

        }

        .rooms-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 50px;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .tab-btn {
            padding: 14px 32px;
            background: white;
            border: none;
            cursor: pointer;
            font-weight: 600;
            border-radius: 50px;
            transition: var(--transition);
            box-shadow: var(--shadow);
            font-size: 1.05rem;
            border: 2px solid transparent;
        }

        .tab-btn.active, .tab-btn:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        .rooms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 35px;
        }

        .room-card {
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
             display: flex;
                flex-direction: column;
                height: 100%; /* Upewnij się, że karty mają tę samą wysokość */
        }

        .room-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }

        .room-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--accent);
            color: white;
            padding: 8px 18px;
            border-radius: 50px;
            font-weight: 600;
            z-index: 2;
            font-size: 0.9rem;
        }

        .room-image {
            height: 300px;
            overflow: hidden;
            position: relative;
        }

        .room-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .room-card:hover .room-image img {
            transform: scale(1.08);
        }

        .room-content {
    flex: 1; /* Rozciąga zawartość, aby wypełnić dostępną przestrzeń */
    display: flex;
    flex-direction: column;
    padding: 30px;
}

        .room-content h3 {
            font-size: 1.7rem;
            margin-bottom: 15px;
            color: var(--primary);
        }

        .room-price {
            color: var(--secondary);
            font-weight: 700;
            font-size: 1.4rem;
            margin: 15px 0;
            display: block;
        }

        .room-price span {
            font-size: 1rem;
            color: var(--dark);
            opacity: 0.8;
            font-weight: normal;
        }

        .room-features {
            list-style: none;
            margin: 20px 0;
            margin-bottom: 20px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }
        .room-footer {
    margin-top: auto; /* Przycisk zostanie wypchnięty na dół */
    padding-top: 20px; /* Stały odstęp od reszty zawartości */
}
        .room-features li {
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
        }

        .room-features li i {
            color: var(--secondary);
            font-size: 0.9rem;
        }
    /* Floating language switcher */
    .lang-switcher {
        position: fixed;
        right: 18px;
        bottom: 18px;
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 6px 18px rgba(0,0,0,0.18);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10050;
        border: 1px solid rgba(0,0,0,0.06);
    }

    .lang-switcher:focus { outline: 2px solid #ffffff; }

    .lang-switcher img {
        width: 28px;
        height: 18px;
        border-radius: 3px;
        display: block;
    }

    .lang-menu {
        position: fixed;
        right: 18px;
        bottom: 86px;
        background: var(--accent);
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        z-index: 10049;
        padding: 8px;
        display: none;
        min-width: 160px;
        font-family: inherit;
        max-height: 320px; /* cap height */
        overflow-y: auto;
        -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
        padding-right: 4px; /* room for scrollbar */
    }

    .lang-menu.open { display: block; }

    .lang-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 8px 10px;
        border-radius: 6px;
        cursor: pointer;
        color: inherit;
        text-decoration: none;
    }

    .lang-item:hover { background: #f5f7fb; }

    .lang-item img {
        width: 20px;
        height: 14px;
        display: inline-block;
        object-fit: cover;
    }
    .lang-badge{
        display:inline-flex;
        align-items:center;
        justify-content:center;
        width:36px;height:20px;
        background:var(--primary);
        color:#fff;
        font-weight:700;
        border-radius:4px;
        font-size:0.8rem
    }
.lang-item span{
    display:inline-block
}
.lang-item .lang-badge{
    width:30px;
    height:20px;
    margin-right:2px;
    background:var(--primary);
    padding-left: 4px;
}
#langSwitcher .lang-badge{
    width:40px;
    height:24px;
    font-size:0.9rem;
    border-radius:2px;
    background:var(--secondary)
}
        /* Facilities Section */
        .facilities {
            background: var(--primary);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .facilities::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../img/hero/photo.webp') no-repeat center center/cover;
            opacity: 0.08;
        }

        .facilities .section-title h2 {
            color: white;
        }

        .facilities .section-title p {
            color: rgba(255, 255, 255, 0.8);
        }

        .facilities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .facility-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: var(--radius);
            padding: 40px 30px;
            text-align: center;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .facility-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.1);
        }

        .facility-card i {
            font-size: 3.5rem;
            color: var(--secondary);
            margin-bottom: 25px;
        }

        .facility-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: white;
        }

        /* Gallery Section */
        .gallery {
            background: #f5f5f5;
            padding: 80px 0;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            margin-top: 50px;
        }

        .gallery-item {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            cursor: pointer;
            height: 250px;
        }

        .gallery-item:hover {
            transform: scale(1.02);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Booking Section */
        .booking {
            background: linear-gradient(135deg, var(--primary) 0%, #0e2439 100%);
            color: white;
            text-align: center;
        }

        .booking-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .booking h2 {
            color: white;
            font-size: 2.8rem;
            margin-bottom: 20px;
        }

        .booking p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        /* Contact Section */
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }

        .contact-info h3 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 25px;
        }

        .contact-details {
            margin: 30px 0;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 30px;
        }

        .contact-item i {
            color: var(--secondary);
            font-size: 1.5rem;
            min-width: 40px;
            margin-top: 5px;
        }

        .contact-text h4 {
            margin-bottom: 8px;
            font-size: 1.2rem;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            transition: var(--transition);
            font-size: 1.3rem;
        }

        .social-links a:hover {
            background: var(--secondary);
            transform: translateY(-5px);
        }

        .map-container {
            height: 400px;
            border-radius: var(--radius);
            overflow: hidden;
            margin-top: 30px;
            box-shadow: var(--shadow);
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .contact-form {
            background: white;
            padding: 50px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }

        .contact-form h3 {
            font-size: 1.8rem;
            margin-bottom: 25px;
            color: var(--primary);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark);
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 16px 20px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-family: 'Montserrat', sans-serif;
            transition: var(--transition);
            font-size: 1rem;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: var(--secondary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(198, 167, 118, 0.2);
        }

        .form-group textarea {
            height: 150px;
            resize: vertical;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 80px 0 30px;
            position: relative;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
        }

        .footer-col h4 {
            font-size: 1.4rem;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
            color: white;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--secondary);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: var(--transition);
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--secondary);
            transform: translateX(5px);
        }

        .contact-info-footer {
            margin-top: 20px;
        }

        .contact-info-footer p {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .contact-info-footer i {
            color: var(--secondary);
            min-width: 20px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.95rem;
            color: #aaa;
        }

        /* Make lang menu scrollable when list is long */
.lang-menu{
    max-height:320px; /* cap height */
    overflow-y:auto;
    -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
    padding-right:4px; /* room for scrollbar */
}

/* Optional: thin custom scrollbar for WebKit */
.lang-menu::-webkit-scrollbar{ width:8px }
.lang-menu::-webkit-scrollbar-track{ background: transparent }
.lang-menu::-webkit-scrollbar-thumb{ background: rgba(0,0,0,0.12); border-radius:6px }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .hero h1 {
                font-size: 3.5rem;
            }
        }

        @media (max-width: 992px) {
            .section {
                padding: 80px 0;
            }
            
            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
            }
            
            .about-image {
                order: -1;
                /* allow the image block to grow to container width on small screens */
                max-width: 100%;
                margin: 20px 0;
            }

            /* ensure the actual img scales correctly and keeps aspect ratio */
            .about-image img {
                width: 100%;
                height: auto;
                display: block;
                object-fit: cover;
            }
            
            .hero h1 {
                font-size: 3rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
            
            .feature-box {
                padding: 15px 20px;
            }
            
            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .gallery-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 0;
                flex-direction: column;
                background: white;
                width: 80%;
                height: 100vh;
                text-align: left;
                transition: var(--transition);
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                padding: 100px 30px 30px;
                z-index: 999;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-item {
                margin: 15px 0;
            }
            
            .hamburger {
                display: block;
            }
            
            .hero-btns {
                flex-direction: column;
                gap: 15px;
            }
            
            .hero-features {
                gap: 15px;
            }
            
            .feature-box {
                width: 100%;
            }
            
            .section-title h2 {
                font-size: 2.4rem;
            }
            
            .rooms-grid {
                grid-template-columns: 1fr;
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            
            .gallery-item {
                height: 200px;
            }
        }

        @media (max-width: 576px) {
            .section {
                padding: 60px 0;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .section-title p {
                font-size: 1rem;
            }
            
            .about-features {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }
            
            .gallery-item {
                height: 250px;
            }
        }

        /* Hero responsive tweaks: make content fit smaller viewports */
    @media (max-width: 992px) {
            .hero {
                min-height: 420px; /* reduce height for tablets */
                margin-top: 60px;
            }

            .hero-content {
                max-width: 100%;
                padding: 0 24px;
                text-align: center;
            }
        }

        @media (max-width: 768px) {
            .hero {
                min-height: 360px; /* phones in landscape */
            }

            .hero-content {
                padding: 0 18px;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .hero p {
                font-size: 1.05rem;
            }
        }

        @media (max-width: 576px) {
            .hero {
                min-height: 300px; /* small phones */
                margin-top: 50px;
            }

            .hero-content {
                padding: 0 12px;
            }

            .hero h1 {
                font-size: 1.9rem;
                line-height: 1.1;
            }

            .hero p {
                font-size: 1rem;
            }
        }

        /* Specific override for devices <= 932px where 100vh may cause clipping (addressing reported issue) */
        @media (max-width: 932px) {
            .hero {
                height: auto !important; /* allow hero to grow with content */
                min-height: 360px; /* provide a comfortable minimum */
                padding-top: 28px;
                padding-bottom: 28px;
                overflow: visible !important;
            }

            .hero-content { padding-top: 6px; padding-bottom: 6px; }
            .hero-features { margin-top: 18px;
                grid-template-columns: 1fr; /* 1 kolumna na mobile */
 }
        }
