@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --main-color: #084041;
    --main-text-color: #ffffff;

    --second-color: #ffffff;
    --second-text-color: #000000;

    --third-color: #f5f5f5;
    --third-text-color: #111111;

    --rating-color: #fbbc04;
}

/***** GLOBAL *****/

/* base */

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    color: var(--third-text-color);
    background: var(--second-color);
    overflow-x: clip;
}

h1,
h2,
h3,
h4,
h5,
h6,
.heading {
    margin-top: 0;
    font-family: "Inter", sans-serif;
}

.spec-font {
    font-family: "Inter", sans-serif;
}

.container {
    padding-left: 25px;
    padding-right: 25px;
}

/* buttons */

.t-btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 25px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.03em;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s ease;
}

.t-btn.theme {
    background: var(--main-color);
    color: var(--main-text-color);
    border-color: var(--main-color);
}

.t-btn.theme2 {
    background: var(--second-color);
    color: var(--second-text-color);
    border-color: var(--second-color);
}

.t-btn.theme3 {
    background: var(--third-color);
    color: var(--third-text-color);
    border-color: var(--third-color);
}

.t-btn.theme:hover,
.t-btn.theme2:hover,
.t-btn.theme3:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

/***** HEADER *****/

/* header */

.header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.16);
    color: var(--main-text-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: 0 8px 30px rgba(3, 22, 22, 0.08);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.header .navbar {
    min-height: 100px;
}

.header .navbar .container {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 1600px;
}

/* logo */

.header .logo,
.footer .logo {
    display: inline-flex;
    align-items: center;
    color: inherit;
    text-decoration: none;
}

.header .logo img {
    display: block;
    width: 150px;
    height: auto;
}

.footer .logo img {
    display: block;
    width: 130px;
    height: auto;
}

.header .navbar > .container > .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
}

.header .navbar > .container > .logo img {
    filter: brightness(0) invert(1);
}

.footer .logo img {
    filter: brightness(0) invert(1);
}

/* navigation */

.header .navigation {
    display: flex;
    align-items: center;
    gap: clamp(14px, 1.35vw, 24px);
    min-width: 0;
}

.header .navigation.left {
    justify-content: flex-end;
}

.header .navigation.right {
    justify-content: flex-start;
}

.header .navigation a,
.header .mobile-menu a {
    color: inherit;
    font-weight: 300;
    text-decoration: none;
}

.header .navigation a {
    font-size: 14px;
    letter-spacing: 0.045em;
    white-space: nowrap;
}

/* actions */

.header .actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.header .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    border: 0;
    color: inherit;
    background: transparent;
}

/* offcanvas */

.header .offcanvas {
    background: var(--second-color);
    color: var(--second-text-color);
}

.header .mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 1400px) {
    .header .navbar .container {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        column-gap: 32px;
    }

    .header .navbar > .container > .logo {
        position: static;
        grid-column: 2;
        grid-row: 1;
        transform: none;
    }

    .header .navigation.left {
        grid-column: 1;
        grid-row: 1;
    }

    .header .navigation.right {
        grid-column: 3;
        grid-row: 1;
    }
}

/***** PAGE BANNER *****/

/* banner */

.page-banner {
    position: relative;
    display: flex;
    min-height: 640px;
    align-items: flex-end;
    overflow: hidden;
    color: var(--main-text-color);
    background-image: url('../images/herobanner3.webp');
    background-position: center;
    background-size: cover;
}

.galeria-body .page-banner,
.okolie-body .page-banner,
.rezervacia-body .page-banner {
    background-image: url('../images/herobanner1.webp');
}

.vybavenie-body .page-banner,
.dlhodobe-ubytovanie-body .page-banner,
.kontakt-body .page-banner {
    background-image: url('../images/herobanner2.webp');
}

.page-banner .overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(3, 22, 22, 0.42) 0%, rgba(3, 22, 22, 0.08) 38%, rgba(3, 22, 22, 0.9) 100%),
        linear-gradient(90deg, rgba(3, 22, 22, 0.36) 0%, rgba(3, 22, 22, 0) 68%);
}

.page-banner .container {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 640px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
    padding-top: 150px;
    padding-bottom: 62px;
}

.page-banner .content {
    max-width: 760px;
}

.page-banner .eyebrow {
    display: block;
    margin-bottom: 14px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.page-banner .heading {
    margin-bottom: 16px;
    color: var(--main-text-color);
    font-size: clamp(48px, 4.6vw, 72px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.05em;
}

.page-banner .text {
    max-width: 700px;
    margin-bottom: 0;
    color: var(--main-text-color);
    font-size: 17px;
    line-height: 1.7;
}

.page-banner .rating {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 14px;
    padding-bottom: 6px;
}

.page-banner .rating .stars {
    color: var(--rating-color);
    font-size: 19px;
    line-height: 1;
    letter-spacing: 0.12em;
}

.page-banner .rating .label {
    font-size: 14px;
    white-space: nowrap;
}

@media (max-width: 767.98px) {
    .page-banner,
    .page-banner .container {
        min-height: 560px;
    }

    .page-banner .container {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        gap: 28px;
        padding-top: 140px;
        padding-bottom: 36px;
    }

    .page-banner .heading {
        font-size: clamp(42px, 11vw, 56px);
    }

    .page-banner .text {
        font-size: 15px;
    }

    .page-banner .rating {
        padding-bottom: 0;
    }
}

/***** HOME *****/

/* hero */

.home-page .hero-section {
    position: relative;
    display: flex;
    min-height: 100vh;
    min-height: 100svh;
    align-items: center;
    overflow: hidden;
    color: var(--main-text-color);
}

.home-page .hero-section .carousel,
.home-page .hero-section .carousel-inner,
.home-page .hero-section .carousel-item {
    position: absolute;
    inset: 0;
    height: 100%;
}

.home-page .hero-section .carousel-item .image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-page .hero-section .carousel-fade .carousel-item {
    transition: opacity 1.5s ease-in-out;
}

.home-page .hero-section .overlay {
    position: absolute;
    z-index: 1;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(3, 22, 22, 0.42) 0%, rgba(3, 22, 22, 0.05) 38%, rgba(3, 22, 22, 0.86) 100%),
        linear-gradient(90deg, rgba(3, 22, 22, 0.42) 0%, rgba(3, 22, 22, 0) 68%);
}

.home-page .hero-section .container {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 100vh;
    min-height: 100svh;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
    padding-top: 170px;
    padding-bottom: 64px;
}

.home-page .hero-section .content {
    max-width: 720px;
}

.home-page .hero-section .eyebrow {
    display: block;
    margin-bottom: 16px;
    color: var(--main-text-color);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.home-page .hero-section .heading,
.home-page .hero-section .text {
    color: var(--main-text-color);
}

.home-page .hero-section .heading {
    max-width: 700px;
    margin-bottom: 22px;
    font-size: clamp(48px, 5.2vw, 80px);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.home-page .hero-section .text {
    max-width: 620px;
    margin-bottom: 28px;
    font-size: 17px;
    line-height: 1.7;
}

.home-page .hero-section .buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.home-page .hero-section .t-btn.theme3 {
    background: transparent;
    color: var(--main-text-color);
    border-color: rgba(255, 255, 255, 0.72);
}

.home-page .hero-section .rating {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 14px;
    padding-bottom: 8px;
    color: var(--main-text-color);
}

.home-page .hero-section .rating .stars {
    color: var(--rating-color);
    font-size: 19px;
    line-height: 1;
    letter-spacing: 0.12em;
}

.home-page .hero-section .rating .label {
    font-size: 14px;
    font-weight: 400;
    white-space: nowrap;
}

@media (max-width: 767.98px) {
    .home-page .hero-section .container {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        gap: 28px;
        padding-top: 140px;
        padding-bottom: 36px;
    }

    .home-page .hero-section .heading {
        font-size: clamp(42px, 12vw, 58px);
    }

    .home-page .hero-section .text {
        font-size: 15px;
    }

    .home-page .hero-section .rating {
        padding-bottom: 0;
    }
}

/* benefits */

.home-page .benefits-section {
    min-height: 220px;
    padding: 48px 0;
    background: var(--third-color);
}

.home-page .benefits-section .list {
    padding-left: 20px;
}

/* jobs */

.home-page .jobs-section {
    min-height: 220px;
    padding: 48px 0;
}

/* contact */

.home-page .contact-section {
    min-height: 220px;
    padding: 48px 0;
    background: var(--third-color);
}

/***** GALLERY *****/

/* categories */

.gallery-page .categories-section {
    padding: 0 0 48px;
}

.gallery-page .category {
    display: flex;
    min-height: 120px;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: var(--third-color);
    color: var(--third-text-color);
    text-align: center;
    text-decoration: none;
}

.gallery-page .category .title {
    font-weight: 700;
}

/* photos */

.gallery-page .photos-section {
    padding: 48px 0;
}

.gallery-page .photos-section:nth-of-type(odd) {
    background: var(--third-color);
}

.gallery-page .photos-section .heading {
    margin-bottom: 24px;
}

.gallery-page .gallery-grid {
    min-height: 80px;
}

/***** SURROUNDINGS *****/

/* activities */

.surroundings-page .activities-section {
    padding: 48px 0;
}

.surroundings-page .card {
    height: 100%;
    padding: 24px;
    background: var(--third-color);
}

.surroundings-page .card .title {
    margin-bottom: 16px;
}

.surroundings-page .card .link {
    color: var(--third-text-color);
}

/* local */

.surroundings-page .local-section {
    padding: 48px 0;
    background: var(--third-color);
}

.surroundings-page .local-section .t-btn {
    padding: 12px 18px;
}

/***** ACCOMMODATION *****/

/* rooms */

.accommodation-page .rooms-section {
    min-height: 220px;
    padding: 48px 0;
}

.accommodation-page .card,
.facilities-page .card {
    height: 100%;
    padding: 24px;
    background: var(--third-color);
}

.accommodation-page .card .title,
.facilities-page .card .title {
    margin-bottom: 16px;
}

.accommodation-page .booking-section {
    padding: 48px 0;
    background: var(--third-color);
}

/***** FACILITIES *****/

/* facilities */

.facilities-page .facilities-section {
    min-height: 220px;
    padding: 48px 0;
}

/***** PRICE *****/

/* price */

.price-page .price-section {
    min-height: 220px;
    padding: 48px 0;
}

.price-page .list,
.facilities-page .list,
.reservation-page .list {
    padding-left: 20px;
}

/***** LONG-STAY ACCOMMODATION *****/

/* intro */

.long-stay-page .corporate-section,
.long-stay-page .workers-section,
.long-stay-page .benefits-section,
.long-stay-page .contact-section {
    min-height: 220px;
    padding: 48px 0;
}

/* list */

.long-stay-page .list {
    padding-left: 20px;
}

/***** CONTACT *****/

/* contact */

.contact-page .contact-section {
    min-height: 260px;
    padding: 48px 0;
}

/***** RESERVATION *****/

/* form */

.reservation-page .form-section {
    min-height: 260px;
    padding: 48px 0;
}

/***** FOOTER *****/

/* main */

.footer {
    background: var(--main-color);
    color: var(--main-text-color);
}

.footer .main {
    padding: 48px 0;
}

/* links */

.footer .links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer .links a {
    color: inherit;
    text-decoration: none;
}

/* contact */

.footer .contact {
    min-height: 24px;
}

/* bottom */

.footer .bottom {
    padding: 16px 0;
    border-top: 1px solid var(--main-text-color);
}
