/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
    font-size: 24px;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* --- CSS RESET END --- */

body {
    margin: auto;
    background-color: #262626;
    color: white;
    width: 100%;
    line-height: 1;
    font-style: italic;
}

a {
    color: white;
    text-decoration: none;
}

section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 30px;
    line-height: 1.5;
    @media (max-width: 1030px) {
        line-height: 1.5;
        text-align: center;
        padding: 40px 30px;
    }
}

section[id] {
    scroll-margin-top: 88px;
}

.emoji {
    font-style: normal;
}
/* UI Components */
.cta-button {
    display: inline-block;
    padding: 12px 24px;
    font-size: 20px;
    font-style: italic;
    border: 1px solid #c0bcb2;
    background: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    line-height: 1;
    color: white;
}

.cta-button:hover {
    background: white;
    color: #262626;
}

.icon {
    width: 30px;
    height: 30px;
}

/* UI Components end */
header {
    @media (max-width: 1030px) {
        position: sticky;
        top: 0;
        transition: box-shadow 0.3s ease;
    }
    background-color: #262626;
    z-index: 100;
}

section {
    h1 {
        font-size: 50px;
        @media (max-width: 1030px) {
            font-size: 33px;
        }
    }

    h2 {
        color: #d5c18e;
        font-size: 30px;
        @media (max-width: 1030px) {
            font-size: 25px;
            margin-top: 20px;
            line-height: 1.5;
        }
    }

    h3 {
        font-size: 25px;
        color: #c0bcb2;
        margin-top: 60px;
        @media (max-width: 1030px) {
            font-size: 25px;
        }
    }
}

.shadow {
    @media (max-width: 1030px) {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    }
}

.only-desktop {
    @media (max-width: 1030px) {
        display: none;
    }
}

.only-mobile {
    display: none;
    @media (max-width: 1030px) {
        display: block;
    }
}

nav {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    position: sticky;

    .logo {
        width: 270px;
        @media (max-width: 1030px) {
            width: 150px;
        }
    }

    .menu {
        margin: auto 0;
        font-size: 28px;
        @media (max-width: 1030px) {
            display: none;
        }
    }

    .menu li {
        display: inline;
        margin-right: 100px;
    }

    .menu li:hover {
        text-decoration: underline;
    }

    .hamburger-menu {
        display: none;
        @media (max-width: 1030px) {
            display: flex;
            flex-direction: row;
            gap: 40px;
            align-items: center;
        }
        .icon {
            width: 35px;
            height: 35px;
        }
    }

    .hamburger-btn {
        height: 40px;
        display: none;
        font-size: 26px;
        color: white;
        cursor: pointer;
        margin: auto 0;
        background: none;
        border: none;
        padding: 0;
        align-items: center;
        justify-content: center;
        @media (max-width: 1030px) {
            display: block;
        }
        .icon {
            width: 40px;
            height: 40px;
        }
    }

    .lang-btn {
        height: 35px;
        width: 35px;
        font-size: 20px;
        color: white;
        cursor: pointer;
        margin: auto 0;
        background: none;
        border: none;
        padding: 0;
        align-items: center;
        justify-content: center;
        display: flex;
        .icon {
            margin-right: 5px;
        }
    }

    .language-switcher {
        display: inline-block;
        position: relative;
    }

    .language-switcher-inner {
        top: -26px;
        position: absolute;
    }

    .hamburger-btn img {
        object-fit: contain;
        width: 100%;
        height: 100%;
        display: block;
    }

    .telephone-btn {
        display: block;
        width: 35px;
        height: 35px;

        img {
            width: 100%;
            height: 100%;
        }
    }

    @media (max-width: 1030px) {
        padding-right: 30px;
    }
}

.hero {
    position: relative;
    z-index: 1;
    overflow: hidden;

    .schedule {
        margin-top: 30px;
        font-size: 23px;
        margin-bottom: 30px;
        white-space: nowrap;
        border-collapse: separate;
        border-spacing: 30px 0;
        text-align: left;
        @media (max-width: 1030px) {
            font-size: 20px;
            margin: 40px auto;
        }
    }
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("img/svadlenka.png");
    background-size: contain;
    opacity: 0.2;
    background-repeat: no-repeat;
    z-index: -1;
    background-position: right -143px;
    min-height: 800px;
    @media (max-width: 1030px) {
        background-position: right -117px;
        opacity: 0.1;
    }
}

.section-title {
    font-size: 50px;
    @media (max-width: 1030px) {
        font-size: 33px;
    }
    text-align: center;
}

.services {
    margin-top: 80px;
    display: flex;
    text-align: center;
    gap: 45px 120px;
    flex-wrap: wrap;
    justify-content: center;

    @media (max-width: 1030px) {
        margin-top: 40px;
    }

    .service {
        width: 300px;

        img {
            border-radius: 50%;
            width: 250px;
            display: block;
            margin: 0 auto;
        }

        .service-title {
            line-height: 1.5;
            font-size: 35px;
        }

        .service-subtitle {
            line-height: 1.5;
            color: #d5c18e;
            font-size: 20px;
        }
    }
}

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

.sidebar {
    position: fixed;
    top: 88px;
    right: -100%;
    width: 60%;
    height: 100%;
    background-color: #2f2e2e;
    z-index: 999;
    padding: 40px 20px;
    transition: right 0.3s ease;
    ul {
        display: block;
        margin: 20px;
        font-size: 30px;

        li {
            margin-top: 20px;
        }

        li a {
            color: #d5c18e;
        }
    }
}

.sidebar-lang {
    position: fixed;
    top: 88px;
    right: -100%;
    width: 60%;
    height: 100%;
    background-color: #2f2e2e;
    z-index: 999;
    padding: 40px 20px;
    transition: right 0.3s ease;
    @media (min-width: 1030px) {
        top: 0;
        width: 50%;
    }
    ul {
        margin: auto;
        width: fit-content;
        font-size: 32px;

        li {
            display: inline;
            margin-top: 20px;
            margin-right: 20px;
        }

        li a {
            text-decoration: underline;
            color: #d5c18e;
        }
    }
}

.sidebar.open {
    right: 0;
}

.sidebar-lang.open {
    right: 0;
}


.sidebar-overlay {
    position: fixed;
    top: 88px;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 998;
    @media (min-width: 1030px) {
        top: 0px;
    }
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.review-sidebar {
    position: absolute;
    bottom: 165px;
    @media (min-width: 1030px) {
        bottom: 65px;
    }
    margin-left: -20px;
}

.contact-info {
    display: flex;
    flex-direction: row;
    margin-top: 80px;
    gap: 80px;
    flex-wrap: wrap;
    justify-content: space-between;
    @media (max-width: 1030px) {
        margin-top: 40px;
        justify-content: center;
        gap: 40px;
    }
}

.place-photo {
    img {
        border-radius: 5%;
        border: 1px solid white;
    }
}

.address {
    li {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 25px;
        font-size: 25px;
        white-space: nowrap;
        overflow: hidden;
        @media (max-width: 1030px) {
            font-size: 20px;
            margin-bottom: 20px;
        }

        a {
            @media (max-width: 1030px) {
                text-decoration: underline;
            }
        }
    }
}

.contact-schedule {
    display: flex;
    flex-direction: row;
    align-self: flex-start;
    gap: 10px;
}

.bottom-place-img {
    img {
        width: 100%;
        object-fit: cover;
        max-height: 500px;
    }
}

footer {
    min-height: 100px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    color: #c0bcb2;
    line-height: 1.5;
    flex-direction: row;
    font-size: 16px;
    gap: 10px;
    @media (max-width: 1030px) {
        padding: 30px 40px;
        flex-direction: column;
    }
}

.sluzby-list {
    font-size: 24px;
    @media (max-width: 1030px) {
        font-size: 20px;
    }
}

.sluzby-list li {
    display: flex;
    line-height: 1.5;
    justify-content: space-between;
    gap: 30px;
    margin-top: 20px;
    max-width: 800px;

    .title {
        position: relative;
        text-align: left;
    }

    .price {
        white-space: nowrap;
    }
}


.services-more li {
    margin-top: 20px;
}

.sluzby-wrapper {
    width: fit-content;
    margin: auto;
}

.review-bar {
    color: white;
    padding-top: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.review-bar .star {
    width: 24px;
    height: 24px;
}

.review-bar .star-link {
    display: flex;
    gap: 10px;
}

.review-bar .review-text {
    font-size: 20px;
    font-style: italic;
    color: #c0bcb2;
}

.review-btn {
    .review-btn-icon {
        width: 20px;
    }
    gap: 10px;
    display: flex;
}

.sluzby-big-picture {
    width: 100%;
    overflow: hidden;
    max-height: 600px;
    img {
        object-fit: cover;
        width: 100%;
    }
}

.alt-text {
    color: #d5c18e;
}