* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0.8em;
    color: #263238;
}

p {
    margin-bottom: 1em;
}

.navbar {
    background-color: #ffffff;
    padding: 18px 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    font-size: 1.5em;
    font-weight: 700;
    color: #1976D2;
    font-family: 'Montserrat', sans-serif;
}

.navbar-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 35px;
}

.nav-link {
    position: relative;
    color: #495057;
    font-weight: 500;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #1976D2;
    transition: width 0.3s ease-out;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: #1976D2;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 5px;
}

.hamburger-menu .bar {
    width: 30px;
    height: 3px;
    background-color: #1976D2;
    transition: all 0.3s ease;
}

.hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 992px) {
    .navbar-nav .nav-list {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        background-color: #ffffff;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        padding: 15px 0;
        text-align: center;
        border-top: 1px solid #eee;
        max-height: calc(100vh - 70px - 20px);
        overflow-y: auto;
    }

    .navbar-nav .nav-list.active {
        display: flex;
    }

    .nav-list .nav-item {
        margin: 10px 0;
    }

    .nav-link {
        font-size: 1.1em;
        padding: 10px 0;
    }

    .nav-link::after {
        height: 3px;
    }

    .hamburger-menu {
        display: flex;
    }
}

.hero {
    height: 80vh;
    min-height: 420px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 45%;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-content h1 {
    font-size: 4.5em;
    margin-bottom: 0;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
    font-family: 'Montserrat', sans-serif;
    height: 0;
    visibility: hidden;
    margin: 0;
    padding: 0;
}

.hero-content p {
    font-size: 1.4em;
    max-width: 800px;
    margin: 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
    font-weight: 300;
    visibility: hidden;
    height: 0;
}

.content-section {
    padding: 100px 0;
    text-align: center;
    min-height: 500px;
}

.content-section:nth-of-type(odd) {
    background-color: #ffffff;
}

.content-section:nth-of-type(even) {
    background-color: #E3F2FD;
}

.content-section h2 {
    position: relative;
    display: inline-block;
    font-size: 2.8em;
    margin-bottom: 40px;
    color: #1565C0;
    font-family: 'Montserrat', sans-serif;
}

.content-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    width: 60px;
    height: 4px;
    background-color: #1976D2;
    border-radius: 2px;
}

.content-section p {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 1.1em;
    color: #555;
}

.ubytovanie-gallery {
    margin-top: 50px;
}

.gallery-category {
    margin-bottom: 60px;
}

.gallery-category h3 {
    font-size: 2em;
    color: #1976D2;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.gallery-category h3::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 40px;
    height: 3px;
    background-color: #1565C0;
    border-radius: 1.5px;
}

.gallery-category .gallery-subtitle {
    font-size: 1em;
    color: #777;
    margin-top: 10px; /* Adjusted margin-top */
    margin-bottom: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 10px;
}

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease-in-out;
    cursor: pointer;
}

.gallery-grid img:hover {
    transform: scale(1.03);
}

.floor-categories-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.floor-trigger-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.floor-trigger-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.floor-trigger-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #eee;
    transition: transform 0.3s ease;
}

.floor-trigger-card:hover img {
    transform: scale(1.05);
}

.floor-trigger-card h3 {
    font-size: 1.6em;
    color: #1976D2;
    margin: 20px 0;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
}

.floor-trigger-card h3::before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 10px;
    color: #1976D2;
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.floor-trigger-card:hover h3::before {
    transform: translateX(5px);
}


.floor-trigger-card h3::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: #1976D2;
    border-radius: 1px;
}


.lightbox-overlay {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

.lightbox-overlay.active {
    opacity: 1;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    display: block;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
}

.lightbox-prev, .lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 40px;
    transition: 0.3s ease;
    user-select: none;
    -webkit-user-select: none;
    background-color: rgba(0,0,0,0.5);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.lightbox-next {
    right: 15px;
}

.lightbox-prev {
    left: 15px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(0,0,0,0.8);
}

.modal-overlay {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease-out;
    padding: 20px;
    box-sizing: border-box;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 40px;
    border-radius: 10px;
    width: 90%;
    max-width: 900px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
    animation: fadeIn 0.5s;
    text-align: center;
    box-sizing: border-box;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-content h2 {
    color: #1565C0;
    margin-bottom: 30px;
    font-size: 2.2em;
}

.modal-close {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.modal-close:hover,
.modal-close:focus {
    color: #777;
    text-decoration: none;
}

.modal-items-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.modal-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.modal-item h4 {
    color: #333;
    font-size: 1.4em;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.modal-item h4::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -5px;
    width: 25px;
    height: 2px;
    background-color: #1976D2;
    border-radius: 1px;
}

.room-description {
    margin-bottom: 15px;
}

.room-description p {
    font-size: 0.9em;
    margin-bottom: 5px;
    color: #666;
    line-height: 1.4;
}


.modal-item-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    width: 100%;
}

.modal-item-images img {
    width: 100%;
    max-width: 300px;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: block;
    flex-grow: 1;
    flex-basis: calc(33.333% - 10px);
}

@media (max-width: 768px) {
    .modal-item-images img {
        flex-basis: calc(50% - 10px);
    }
}

@media (max-width: 480px) {
    .modal-item-images img {
        flex-basis: 100%;
    }
}


@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        padding: 25px;
    }

    .modal-content h2 {
        font-size: 1.8em;
    }

    .modal-close {
        font-size: 30px;
        top: 10px;
        right: 20px;
    }

    .modal-items-container {
        gap: 20px;
    }

    .modal-item h4 {
        font-size: 1.2em;
        margin-bottom: 10px;
    }

    .floor-categories-wrapper {
        gap: 20px;
        margin-top: 40px;
    }

    .floor-trigger-card {
        width: 100%;
        max-width: 350px;
    }
}


.restaurant-list {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.restaurant-item {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    padding: 35px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s ease-in-out;
}

.restaurant-item:hover {
    transform: translateY(-5px);
}

.restaurant-item h3 {
    font-size: 1.8em;
    color: #404F60;
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
}

.restaurant-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 30px;
}

.restaurant-content.reverse-order {
    flex-direction: row-reverse;
}

.restaurant-info {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.restaurant-info p strong {
    font-weight: bold;
    color: #333;
}

.restaurant-info p {
    font-size: 1em;
    margin-bottom: 10px;
    color: #555;
    text-align: left;
    width: 100%;
}

.restaurant-info a {
    display: inline-block;
    margin-top: 15px;
}

.restaurant-image {
    flex-shrink: 0;
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.restaurant-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: block;
}

.restaurant-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #3F51B5;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    margin-right: 10px;
    margin-bottom: 10px;
}

.restaurant-btn:hover {
    background-color: #303F9F;
    transform: translateY(-2px);
}

.restaurant-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    justify-content: flex-start;
}


.ski-resort-list {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.ski-resort-item {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    padding: 35px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s ease-in-out;
}

.ski-resort-item:hover {
    transform: translateY(-5px);
}

.ski-resort-item h3 {
    font-size: 1.8em;
    color: #0D47A1;
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
}

.ski-resort-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 30px;
}

.ski-resort-content.reverse-order {
    flex-direction: row-reverse;
}

.ski-resort-info {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ski-resort-info p strong {
    font-weight: bold;
    color: #333;
}

.ski-resort-info p {
    font-size: 1em;
    margin-bottom: 10px;
    color: #555;
    text-align: left;
    width: 100%;
}

.ski-resort-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #1976D2;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    margin-top: 15px;
}

.ski-resort-btn:hover {
    background-color: #1565C0;
    transform: translateY(-2px);
}

.ski-resort-image {
    flex-shrink: 0;
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.ski-resort-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: block;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.contact-details {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    text-align: left;
}

.contact-details p {
    font-size: 1.1em;
    color: #495057;
    margin-bottom: 15px;
    line-height: 1.8;
}

.contact-details p:last-child {
    margin-bottom: 0;
}

.contact-divider {
    margin: 30px 0;
    border-color: #eee;
}

.contact-info-item {
    text-align: left;
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    text-align: left;
}

.contact-form-container h3 {
    font-size: 1.8em;
    color: #1565C0;
    margin-bottom: 30px;
    text-align: center;
}

.contact-form .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 0.95em;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #1976D2;
    box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.25);
    outline: none;
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form .submit-btn {
    display: block;
    width: 100%;
    padding: 15px 25px;
    background-color: #1976D2;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
}

.contact-form .submit-btn:hover {
    background-color: #1565C0;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.map-container {
    margin-top: 80px;
}

.map-iframe-wrapper {
    margin-top: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

#footer {
    background-color: #263238;
    color: #ffffff;
    padding: 60px 0 20px;
    text-align: center;
    font-size: 0.95em;
}

#footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
    gap: 40px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    margin-bottom: 20px;
    text-align: left;
}

.footer-section h3 {
    color: #1976D2;
    font-size: 1.4em;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background-color: #ffffff;
    border-radius: 1px;
}

.footer-section p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 10px;
}

.footer-section p i {
    margin-right: 10px;
    color: #1976D2;
}

.footer-section.social .social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: flex-start;
}

.footer-section.social .social-links a {
    color: #ffffff;
    font-size: 1.5em;
    width: 40px;
    height: 40px;
    background-color: #3b5998;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.footer-section.social .social-links a:nth-child(2) {
    background-color: #C13584;
}

.footer-section.social .social-links a:nth-child(3) {
    background-color: #FF7700;
}

.footer-section.social .social-links a:hover {
    transform: translateY(-3px);
    background-color: #1565C0;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.9em;
}

@media (max-width: 992px) {
    .hero {
        height: 60vh;
    }

    .hero-content h1 {
        font-size: 3.5em;
    }

    .hero-content p {
        margin: 0;
        height: 0;
    }

    .content-section {
        padding: 80px 0;
    }

    .content-section h2 {
        font-size: 2.2em;
        margin-bottom: 30px;
    }

    .content-section h2::after {
        bottom: -10px;
        width: 50px;
        height: 3px;
    }

    .gallery-category {
        margin-bottom: 50px;
    }

    .gallery-category h3 {
        font-size: 1.8em;
        margin-bottom: 25px;
    }

    .gallery-category h3::after {
        bottom: -8px;
        width: 35px;
        height: 2.5px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .gallery-grid img {
        height: 180px;
    }

    .lightbox-image {
        max-width: 95%;
        max-height: 85%;
    }

    .lightbox-close {
        font-size: 35px;
        right: 25px;
    }

    .lightbox-prev, .lightbox-next {
        font-size: 30px;
        width: 50px;
        height: 50px;
        margin-top: -25px;
    }

    .restaurant-content,
    .restaurant-content.reverse-order {
        flex-direction: column;
        align-items: center;
    }

    .restaurant-info {
        align-items: center;
        text-align: center;
        margin-bottom: 20px;
    }
    .restaurant-info p {
        text-align: center;
    }

    .restaurant-buttons {
        justify-content: center;
        margin-top: 10px;
    }

    .restaurant-image {
        max-width: 100%;
    }

    .ski-resort-content,
    .ski-resort-content.reverse-order {
        flex-direction: column;
        align-items: center;
    }

    .ski-resort-info {
        align-items: center;
        text-align: center;
        margin-bottom: 20px;
    }

    .ski-resort-info p {
        text-align: center;
    }

    .contact-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .contact-details,
    .contact-form-container {
        max-width: 100%;
        padding: 30px;
    }

    #footer .container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .footer-section {
        text-align: center;
        max-width: 90%;
        min-width: unset;
        width: 100%;
        margin-bottom: 0;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-section.social .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.6em;
    }

    .hero {
        height: 55vh;
    }

    .hero-content h1 {
        font-size: 2.8em;
    }

    .hero-content p {
        margin: 0;
        height: 0;
    }

    .content-section {
        padding: 60px 0;
    }

    .content-section h2 {
        font-size: 1.8em;
        margin-bottom: 25px;
    }

    .content-section h2::after {
        bottom: -8px;
        width: 40px;
        height: 2px;
    }

    .gallery-category {
        margin-bottom: 40px;
    }

    .gallery-category h3 {
        font-size: 1.5em;
        margin-bottom: 20px;
    }

    .gallery-category h3::after {
        bottom: -7px;
        width: 30px;
        height: 2px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 0 20px;
    }

    .gallery-grid img {
        height: 220px;
    }

    .lightbox-prev, .lightbox-next {
        font-size: 25px;
        width: 40px;
        height: 40px;
        margin-top: -20px;
    }

    .restaurant-item {
        padding: 20px;
    }

    .restaurant-item h3 {
        font-size: 1.6em;
        margin-bottom: 15px;
    }

    .ski-resort-item {
        padding: 20px;
    }

    .ski-resort-item h3 {
        font-size: 1.6em;
        margin-bottom: 15px;
    }

    .contact-details,
    .contact-form-container {
        padding: 25px;
        min-width: unset;
        max-width: 90%;
        margin: 0 auto;
        width: 100%;
    }

    .contact-form-container h3 {
        font-size: 1.5em;
        margin-bottom: 25px;
    }

    .contact-form label {
        font-size: 1em;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 12px;
        font-size: 1em;
    }

    .contact-form .submit-btn {
        padding: 15px 25px;
        font-size: 1.1em;
    }

    #footer {
        padding: 40px 0 15px;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-section {
        max-width: 100%;
        padding: 0 20px;
    }

    .footer-section h3 {
        font-size: 1.3em;
        margin-bottom: 15px;
    }

    .footer-section p {
        font-size: 0.9em;
    }

    .footer-section.social .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 15px 0;
    }

    .navbar-brand {
        font-size: 1.4em;
    }

    .hero {
        height: 40vh;
    }

    .hero-content h1 {
        font-size: 2.2em;
        margin-bottom: 0;
    }

    .hero-content p {
        margin: 0;
        height: 0;
    }

    .content-section {
        padding: 50px 0;
    }

    .content-section h2 {
        font-size: 1.6em;
    }

    .content-section h2::after {
        bottom: -7px;
        width: 30px;
    }

    .gallery-category h3 {
        font-size: 1.3em;
        margin-bottom: 15px;
    }

    .gallery-category h3::after {
        bottom: -5px;
        width: 25px;
        height: 1.5px;
    }

    .gallery-grid img {
        height: 180px;
    }

    .lightbox-close {
        font-size: 30px;
        right: 15px;
    }

    .restaurant-btn {
        font-size: 0.9em;
        padding: 8px 15px;
    }

    .ski-resort-btn {
        font-size: 0.9em;
        padding: 8px 15px;
    }

    .contact-details,
    .contact-form-container {
        padding: 20px;
        max-width: 95%;
    }

    .contact-form-container h3 {
        font-size: 1.3em;
        margin-bottom: 20px;
    }

    .contact-form label {
        font-size: 1em;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 12px;
        font-size: 1em;
    }

    .contact-form .submit-btn {
        padding: 12px 20px;
        font-size: 1em;
    }

    #footer {
        padding: 30px 0 10px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .footer-section {
        text-align: center;
        max-width: 100%;
        padding: 0 15px;
        margin-bottom: 0;
    }

    .footer-section h3 {
        font-size: 1.2em;
        margin-bottom: 10px;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-section p {
        font-size: 0.85em;
    }

    .footer-section.social .social-links {
        justify-content: center;
    }
    .footer-bottom {
        margin-top: 30px;
    }
}

.price-list-container {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.price-list-container h3 {
    font-size: 1.6em;
    color: #1976D2;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.price-list-container h3::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
    width: 40px;
    height: 2px;
    background-color: #1976D2;
    border-radius: 1px;
}

.price-table {
    width: 100%;
    max-width: 700px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 20px;
}

.price-table table {
    width: 100%;
    border-collapse: collapse;
}

.price-table th, .price-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.price-table thead th {
    background-color: #1976D2;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1em;
}

.price-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.price-table tbody tr:hover {
    background-color: #e0f2f7;
}

.price-table td {
    color: #555;
}

.price-note {
    font-size: 0.95em;
    color: #777;
    margin-top: 20px;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .price-table table,
    .price-table thead,
    .price-table tbody,
    .price-table th,
    .price-table td,
    .price-table tr {
        display: block;
    }

    .price-table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .price-table tr {
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 8px;
        overflow: hidden;
    }

    .price-table td {
        border: none;
        position: relative;
        padding-left: 50%;
        text-align: right;
        font-size: 0.9em;
    }

    .price-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
        font-weight: 600;
        color: #333;
    }

    .price-table tbody tr td:nth-of-type(1)::before { content: "Osoby"; }
    .price-table tbody tr td:nth-of-type(2)::before { content: "Počet izieb"; }
    .price-table tbody tr td:nth-of-type(3)::before { content: "Cena (€)"; }
    .price-table tbody tr td:nth-of-type(4)::before { content: "Minimálny počet nocí"; }
}

.chata-info-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 40px auto 0;
    max-width: 900px;
}

.chata-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 1px solid #dde8f5;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 0.95em;
    color: #444;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(25, 118, 210, 0.08);
}

.chata-info-item i {
    color: #1976D2;
    font-size: 1.1em;
}

.rooms-section {
    margin-top: 60px;
}

.floor-heading {
    font-size: 1.6em;
    color: #1565C0;
    margin: 50px 0 25px;
    text-align: left;
    padding-left: 5px;
    border-left: 4px solid #1976D2;
    padding-left: 15px;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    align-items: start;
}

.room-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.room-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.room-card-images {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.room-card-images::-webkit-scrollbar {
    display: none;
}

.room-card-img {
    flex-shrink: 0;
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    scroll-snap-align: start;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.room-card-img:hover {
    opacity: 0.9;
}

.room-card-info {
    padding: 15px 18px 18px;
    text-align: left;
}

.room-card-info h4 {
    font-size: 1.1em;
    color: #1a237e;
    margin-bottom: 10px;
}

.room-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.room-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #E3F2FD;
    color: #1565C0;
    font-size: 0.8em;
    font-weight: 600;
    border-radius: 20px;
    padding: 4px 10px;
}

.room-badge i {
    font-size: 0.9em;
}

.okolie-section {
    margin-top: 70px;
}

@media (max-width: 768px) {
    .chata-info-bar {
        gap: 10px;
    }

    .chata-info-item {
        font-size: 0.88em;
        padding: 8px 14px;
    }

    .rooms-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .floor-heading {
        font-size: 1.3em;
        margin: 35px 0 18px;
    }
}

@media (max-width: 480px) {
    .rooms-grid {
        grid-template-columns: 1fr;
    }
}

.room-card {
    display: flex;
    flex-direction: column;
    align-self: start;
}

.room-card-thumb {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.room-card-cover {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

.room-card-thumb:hover .room-card-cover {
    transform: scale(1.03);
}

.room-card-overlay {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(25, 118, 210, 0.85);
    color: #fff;
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 0.8em;
    pointer-events: none;
    transition: background 0.2s;
}

.room-card.open .room-card-overlay {
    background: rgba(21, 101, 192, 0.9);
}

.room-card-expanded {
    border-top: 1px solid #e8eef6;
}

.room-card-all-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    padding: 10px;
}

.room-card-all-images .room-card-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    object-position: center;
    border-radius: 6px;
    cursor: zoom-in;
    transition: opacity 0.2s;
    display: block;
}

.room-card-all-images .room-card-img:hover {
    opacity: 0.88;
}

.room-card-all-images .room-card-img:only-child,
.room-card-all-images .room-card-img:nth-child(odd):last-child {
    grid-column: 1 / -1;
    height: 200px;
}

.price-factors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin: 50px 0 40px;
    text-align: left;
}

.price-factor-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 28px 24px;
    box-shadow: 0 3px 12px rgba(25, 118, 210, 0.1);
    border-top: 3px solid #1976D2;
}

.price-factor-item i {
    font-size: 1.8em;
    color: #1976D2;
    margin-bottom: 14px;
    display: block;
}

.price-factor-item h4 {
    font-size: 1.05em;
    color: #1a237e;
    margin-bottom: 8px;
}

.price-factor-item p {
    font-size: 0.9em;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.price-cta {
    background: #1976D2;
    border-radius: 14px;
    padding: 35px 40px;
    text-align: center;
    color: #ffffff;
}

.price-cta p {
    color: rgba(255,255,255,0.9);
    font-size: 1.05em;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.price-contact-btn {
    display: inline-block;
    background: #ffffff;
    color: #1976D2;
    font-weight: 700;
    padding: 13px 32px;
    border-radius: 30px;
    font-size: 1em;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.price-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

@media (max-width: 600px) {
    .price-cta {
        padding: 25px 20px;
    }
    .price-factors {
        grid-template-columns: 1fr;
    }
}

.room-card-clickable {
    cursor: pointer;
}

.room-card-clickable:hover .room-card-cover {
    transform: scale(1.03);
}

.room-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.65);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.room-modal-overlay.active {
    display: flex;
}

.room-modal-content {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 35px 30px;
    max-width: 780px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.room-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2em;
    color: #888;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.2s;
}

.room-modal-close:hover {
    color: #333;
}

.room-modal-content h2 {
    font-size: 1.6em;
    color: #1a237e;
    margin-bottom: 14px;
    padding-right: 30px;
}

.room-modal-badges {
    margin-bottom: 22px;
    justify-content: flex-start;
}

.room-modal-images {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.room-modal-img-wrap {
    border-radius: 8px;
    overflow: hidden;
    background: #f0f0f0;
}

.room-modal-images img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    object-position: center;
    display: block;
}

@media (max-width: 540px) {
    .room-modal-content {
        padding: 25px 18px 20px;
    }

    .room-modal-images img {
        max-height: 60vh;
    }
}

.room-modal-description {
    font-size: 0.95em;
    color: #555;
    line-height: 1.6;
    margin-bottom: 18px;
    padding: 12px 16px;
    background: #f0f6ff;
    border-left: 3px solid #1976D2;
    border-radius: 0 6px 6px 0;
}

.self-catering-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #ffffff;
    border-radius: 12px;
    padding: 28px 30px;
    margin: 30px 0 50px;
    box-shadow: 0 3px 12px rgba(25, 118, 210, 0.1);
    border-left: 4px solid #1976D2;
    text-align: left;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.self-catering-icon {
    font-size: 2em;
    color: #1976D2;
    flex-shrink: 0;
    margin-top: 2px;
}

.self-catering-text h3 {
    font-size: 1.2em;
    color: #1a237e;
    margin-bottom: 8px;
}

.self-catering-text p {
    font-size: 0.95em;
    color: #555;
    margin: 0;
    line-height: 1.65;
}

@media (max-width: 540px) {
    .self-catering-box {
        flex-direction: column;
        gap: 12px;
        padding: 20px;
    }
}

.self-catering-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 10px auto 45px;
    color: #1976D2;
}

.self-catering-divider::before,
.self-catering-divider::after {
    content: '';
    flex: 1;
    max-width: 200px;
    height: 1px;
    background: #c5d8f0;
}

.self-catering-divider i {
    font-size: 1.4em;
}

.self-catering-note {
    max-width: 680px;
    margin: 0 auto 45px;
    font-size: 1em;
    color: #555;
    line-height: 1.65;
    text-align: center;
}

.map-bg {
    background-color: #E3F2FD;
    margin: 60px -25px -100px;
    padding: 60px 25px 100px;
}

#form-message {
    margin-top: 20px;
}