:root {
    --yellow: rgb(255, 230, 0);
    --orange: rgb(252, 152, 3);
    /* --red: rgba(255, 123, 0, 0.89); */
    --red: rgba(235 93 0 / 89%);
    --darkred: rgb(92, 29, 0);
    --darkred-shade: rgb(66 21 0);
    --white: rgb(235 233 230);

    --brown: rgb(62 28 0);
    --brownred: rgb(116 31 0);
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

body {
    margin: 0px;
    display: flex;
    flex-direction: column;
}

header {
    background-color: var(--darkred);
    top: 0;
    left: 0;
    height: 100px;
    position: fixed;
    width: 100%;
    z-index: 999;
    display: flex;
    padding: 1rem;
    box-sizing: border-box;
    align-items: center;
    justify-content: space-between;
}

#logo {
    font-size: 2rem;
    color: antiquewhite;
    font-family: Lobster;
    text-decoration: none;
    white-space: nowrap;
}

.nav {
    display: flex;
    gap: 1rem;
    font-family: 'Noto Serif';
}

.nav a {
    font-size: 1.4rem;
    color: antiquewhite;
    text-underline-offset: 8px;
}

#mobile-nav {
    background-color: var(--darkred);
    display: none;
}

#hamburger {
    display: none;
    font-size: 3rem;
    color: antiquewhite;
    background: none;
    border: none;
    cursor: pointer;
}

#close-button {
    border: none;
    background: none;
    font-size: 2rem;
    width: 3rem;
    align-self: flex-end;
    color: antiquewhite;
}

@media (width <= 1180px){
    #pc-nav {
        display: none;
    }
    #mobile-nav {
        width: 250px;
        position: fixed;
        right: -250px;
        top: 0;
        height: 100%;
        box-shadow: none;
        display: flex;
        flex-direction: column;
        box-sizing: border-box;
        padding: 2rem;
        gap: 1rem;
        transition: right 0.3s ease;
    }
    #mobile-nav.active {
        right: 0;
        box-shadow: -5px 0px 20px 0px black;
    }

    #hamburger {
        display: block;
    }
}

.main-container {
    box-shadow: 0px 5px 8px 2px black; 
    z-index: 1;
}

.hero {
    background-color: rosybrown;
    display: flex;
    justify-content: center;
    /* align-items: flex-end; */
    min-height: 85vh;
}

/* #hero-img {
    width: 110%;
    height: 100%;
    overflow: hidden;
}

#hero-img img {
    object-fit: cover;
    height: 110%;
    width: 110%;
    margin-left: -10px;
    filter: blur(5px) brightness(0.7);
} */

.hero-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    min-height: 85vh;
    backdrop-filter: blur(5px);
}

#hero-main {
    /* background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('https://static.pochivka.bg/sights.bgstay.com/images/01/1102/54a6764bc0a43.jpg'); */
        background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('images/konak_dvor.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-details {
    /* position: absolute; */
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 200px;
    max-width: 900px;
    /* background-color: lightyellow; */
    margin-bottom: 50px;
    /* justify-content: space-between; */

    /* height: 85vh; */
    padding-top: 80px;
    box-sizing: border-box;
}

.hero-details h1 {
    font-size: clamp(4rem, 18vw, 6rem);
    text-align: center;
    color: white;
    text-shadow: 3px 3px 5px black;

    font-family: Lobster;
    line-height: 1.3;
    letter-spacing: 0.005em;
    font-weight: 500;
    margin-bottom: 0;
    margin-top: 0;

    padding: 1rem;
    padding-bottom: 0;
}

.hero-details p {
    font-size: 1.6rem;
    text-align: center;
    color: white;
    text-shadow: 3px 3px 5px black;
    padding: 1rem;

    font-family: 'Noto Serif';
    font-size: 26px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: 0.005em;
}

.hero-details a {
    /* width: 200px; */
    /* height: 50px; */
    /* margin-top: 2rem; */
    margin-bottom: 3rem;
}

.separator {
    width: 100%;
    height: 40px;
    background-color: var(--darkred);
}

.separator2 {
    width: 100%;
    height: 36px;
    background-color: var(--orange);
}

.rhodope-button {
    --b: 3px;
    --s: 0.4em;
    padding: 1.15rem 1.5rem;
    --_p: var(--s);
    background-image: conic-gradient(from 90deg at 3px 3px, #0000 90deg, #000000 0);
    background-position: var(--_p) var(--_p);
    background-size: calc(100% - var(--b) - 2 * var(--_p)) calc(100% - var(--b) - 2 * var(--_p));
    font-size: 16px;
    border: 0;
    background-color: brown;
    border-radius: 4px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 2px 2px 5px black;
    box-shadow: 2px 2px 5px black;
    cursor: pointer;

    display: inline-block;
    font-family: Arial, Helvetica, sans-serif;
    min-width: 80px;
    text-decoration: none;
    text-align: center;
}

.section-container {
    padding: 4rem 0px;
    background: var(--white);
    display: flex;
    justify-content: center;
}

.info-section {
    /* background-color: lightgray; */
    /* min-height: 500px; */
    width: 100%;
    display: flex;
    justify-content: space-between;
    /* padding: 5rem; */
    flex-wrap: wrap;
    max-width: 1400px;
    gap: 1rem;
}

.section-text {
    /* max-width: 800px; */
    padding: 1rem;
    align-content: center;
    /* background-color: aqua; */
    flex: 5 1 400px;
    min-width: 0;
}

.section-text .section-title {
    font-size: 2rem;
    font-weight: 500;
    font-family: Lobster;
    margin: 0px;
    text-decoration: underline;
    text-underline-offset: 3px;
    margin-bottom: 0.5rem;
}

.section-text .section-details {
    margin-bottom: 1rem;
}

.section-text p {
    white-space: pre-line;
    margin: 0px;
    
    /* font-size: clamp(16px, 2.8vw, 22px); */
    font-size: clamp(18px, 3.9vw, 22px);

    line-height: 1.15;
    font-weight: 400;
    letter-spacing: 0em;
    font-family: 'Noto Serif';
    /* color: antiquewhite; */
}

.window-top {
    aspect-ratio: 14 / 16;
    border-top: 18px solid var(--darkred);
    border-bottom: 18px solid var(--darkred);
    box-sizing: border-box;
    /* background-color: antiquewhite; */
    display: flex;
    justify-content: center;
}

.window-top-mini {
    aspect-ratio: 14 / 16;
    border-top: 14px solid var(--darkred);
    border-bottom: 14px solid var(--darkred);
    box-sizing: border-box;
    /* background-color: antiquewhite; */
    display: flex;
    justify-content: center;
}

.window-sides {
    border-right: 10px solid var(--darkred-shade);
    border-left: 10px solid var(--darkred-shade);
    height: 100%;
    width: 96%;
    box-sizing: border-box;
}

.window-sides-mini {
    border-right: 8px solid var(--darkred-shade);
    border-left: 8px solid var(--darkred-shade);
    height: 100%;
    width: 96%;
    box-sizing: border-box;
}

.section-button-container {
    display: flex;
    justify-content: flex-end;
}

.section-image {
    height: clamp(330px, 100vw, 440px);;
    flex: 2 1 350px;
    min-width: 0;
    /* width: 460px;
    max-width: 460px; */
    /* width: 100%; */
    /* background-color: aquamarine; */
    /* border-top: 18px solid var(--darkred);
    border-bottom: 18px solid var(--darkred); */
    /* box-sizing: border-box; */

    display: flex;
    justify-content: center;
}

.landmarks-container {
    display: flex;
    gap: 2rem;
    row-gap: 5rem;
    flex-wrap: wrap;
    box-sizing: border-box;
    width: clamp(200px, 100vw, 1400px);
    scroll-snap-type: x mandatory;

    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    justify-content: center;
}

.landmark-article {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    
    /* flex: 1 1 calc(33.333% - 2rem); */
    flex: 1 1 300px;
    min-width: 300px;
    max-width: 450px;
    scroll-snap-align: center;
}

.dots {
    display: none;
    justify-content: center;
    gap: 0.5rem;
    align-items: center;
    height: 1rem;
}

.dots span {
    width: 0.5rem;
    height: 0.5rem;
    background: lightgray;
    border-radius: 50%;
    transition: background 0.3s, width 0.3s, height 0.3s;
}

.dots span.active {
    background: gray;
}

@media (width <= 720px){
    .landmarks-container {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-left: 50vw;
        padding-right: 50vw;
        padding-bottom: 1rem;
        justify-content: left;
    }

    .dots {
        display: flex;
    }
}

.landmark-image {
    height: clamp(230px, 100vw, 340px);
    min-width: 0;
    /* background-color: aquamarine; */
    display: flex;
    justify-content: center;
}

.landmark-image-container {
    background-color: lightgray;
    height: 100%;
    width: 100%;
    /* width: 95%;

    border-left: 8px solid var(--darkred-shade);
    border-right: 8px solid var(--darkred-shade);
    box-sizing: border-box; */

    position: relative;
/* 
    video {
        width: 100%;
        height: 100%;
        object-fit: fill;
    } */
    
}

.landmark-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: lightgray;
}

.landmark-image-container::after {
    content: "";
    position: absolute;
    inset: 0;
    box-shadow: inset 0px 0px 15px 0px #000000;
}

.image-credit {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    color: white;
    font-family: 'Noto Serif';
    font-weight: 700;
    background: rgba(0, 0, 0, 0.6);
    padding: 0.3rem 0.6rem;
    font-size: 0.8rem;
    border-radius: 6px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.landmark-image-container:hover .image-credit {
    opacity: 1;
}


.image-credit {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    color: white;
    font-family: 'Noto Serif';
    font-weight: 700;
    background: rgba(0, 0, 0, 0.6);
    padding: 0.3rem 0.6rem;
    font-size: 0.8rem;
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.landmark-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.image-container {
    background-color: lightgray;
    height: 100%;
    /* width: 98%; */

    /* border-left: 10px solid var(--darkred-shade);
    border-right: 10px solid var(--darkred-shade);
    box-sizing: border-box; */

    position: relative;
    
}

.image-container video {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-container::after {
    content: "";
    position: absolute;
    inset: 0;
    box-shadow: inset 0px 0px 20px 2px #000000;
}

/* .image-container::after {
    content: "";
    position: absolute;
    inset: 0;
    box-shadow: inset 0px 0px 20px 2px #000000;
    pointer-events: none;
} */

.landmarks {
    flex-direction: column;
    row-gap: 1rem;
    align-items: center;
}

.landmarks-row {
    display: flex;
    justify-content: space-around;
}

.landmarks-row article {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    align-items: center;
}

/* .landmarks-row article p {
    width: 320px;
    text-align: center;

    white-space: pre-line;
    margin: 0px;
    
    font-size: 22px;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 0em;
    color: antiquewhite;
} */

.landmark-title {
    font-size: 1.75rem;
    font-weight: 500;
    font-family: Lobster;
    margin: 0px;
    text-decoration: underline;
    text-underline-offset: 3px;
    /* margin-bottom: 0.5rem; */
}

.landmark-details {
    /* width: 320px;
    text-align: center;
    white-space: pre-line;
    margin: 0px;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 0em; */

    width: 280px;
    text-align: center;
    white-space: pre-line;
    margin: 0px;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0em;
    font-family: 'Noto Serif';
}

.landmarks-h1 {
    text-align: center;
    font-size: clamp(2rem, 8vw, 3rem);
    font-weight: 500;
    font-family: Lobster;
    margin: 0px;
    text-decoration: underline;
    text-underline-offset: 3px;
    margin-bottom: 0.5rem;
}

.article-image-container {
    width: 320px;
    height: 200px;
    background-color: lightgray;
    border: 10px solid var(--darkred);
    border-top: 18px solid var(--darkred);
    border-bottom: 18px solid var(--darkred);
    /* border-radius: 12px; */
}

footer {
    height: 200px;
    background-color: lightgray;

    /* background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
                url(https://static.vecteezy.com/system/resources/previews/007/452/291/large_2x/old-concrete-wall-texture-background-natural-wallpaper-pattern-for-decoration-abstract-background-retro-color-effect-vintage-old-stone-wall-great-design-for-any-purposes-photo.JPG);
    background-size: cover; */
}

.icon {
    fill: var(--red);
}

.footer-contacts {
    font-family: 'Noto Serif';
    padding-left: 2rem;
    font-size: 1.2rem;
    margin-top: 3rem;
    /* color: antiquewhite; */
}

.footer-contacts .footer-title {
    font-weight: 700;
    margin-bottom: 2px;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-contacts .footer-details {
    font-weight: 400;
    margin: 0px;
}

.about-text {
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    color: antiquewhite;
    white-space: pre-line;
    font-family: 'Noto Serif';
    text-align: justify;
}

/* Accomodations */

/* .accomodation-details {
    padding: 1rem;
} */

.details-title {
    font-size: 1.5rem;
    text-decoration: underline;
    text-underline-offset: 3px;
    margin-top: 0;
    margin-bottom: 0;
    color: antiquewhite;
    font-family: 'Noto Serif';
    text-align: center;
}

.details-info {
    font-size: 1.2rem;
    color: antiquewhite;
    font-family: 'Noto Serif';
    margin-top: 0.5rem;
    text-align: center;
    white-space: pre-line;
}

#rooms-section {
    background-color: var(--brown);
    display: flex;
    flex-direction: column;
    padding-bottom: 2rem;
    align-items: center;
}

#rooms-section article {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: clamp(200px, 100vw, 1400px);
    padding: 1rem;
    box-sizing: border-box;
}

#hero2 {
    background-color: var(--brownred);
    display: flex;
    justify-content: center;
    align-items: center;
    height: min(125vw, 85vh);
}

#hero2 h1 {
    color: antiquewhite;
    font-family: 'Lobster';
    padding-top: 4rem;
    font-size: clamp(2rem, 12vw, 4rem);
}

.room-title {
    font-size: 1.75rem;
    margin-bottom: 0;
    margin-top: 1rem;
    color: antiquewhite;
    width: 100%;
    box-sizing: border-box;
    text-underline-offset: 8px;
    text-decoration: underline;
    font-family: 'Noto Serif';
}


.room-images {
    display: flex;
    width: 100%;
    gap: 1rem;
    box-sizing: border-box;
    justify-content: space-around;
    margin-top: 1rem;
}

.room-images .room-img-container {
    aspect-ratio: 640 / 480;
    flex: 1 1;
    justify-content: center;
    /* background-color: lightgray; */
    border-radius: 12px;
}

.room-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

@media (72px <= width <= 1200px){
    .room-images{
        flex-wrap: wrap;
    }
    .room-images .room-img-container {
        flex: 1 1 calc(50% - 1rem);
    }
}

@media (width <= 720px){

    .room-images {
        display: flex;
        width: clamp(200px, 100vw, 1400px);
        padding: 1rem;
        box-sizing: border-box;
        flex-wrap: nowrap;
        overflow-x: scroll;
        scrollbar-width: none;
        gap: 1rem;
        scroll-snap-type: x mandatory;
    }

    .room-images .room-img-container {
    aspect-ratio: 640 / 480;
    width: clamp(200px, 90vw, 800px);
    height: 100%;
    /* background-color: lightgray; */
    border-radius: 12px;
    flex: 0 0 auto;
    scroll-snap-align: center;
    
    }

    .room-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    }
}


/* asdasd */

.default-section {
    min-height: 800px;
    background-color: var(--brown);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-us-container {
    margin-top: 100px;
    width: clamp(200px, 90vw, 1400px);
    min-height: 600px;
    /* background-color: orange; */
    align-items: center;

    display: flex;
    flex-direction: column;
    gap: 2rem;

    padding-bottom: 5rem;
}

.about-us-image {
    aspect-ratio: 1920 / 1080;
    width: 100%;
    border-radius: 1rem;
    background-color: lightgray;
    align-items: center;
}

.about-us-image-side {

    aspect-ratio: 1 / 1;
    width: clamp(100px, 100%, min(520px, 75vw));
    height: 100%;
    background-color: lightgray;
    border-radius: 1rem;

}

.about-us-part2 {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: center;
}

.about-us-part2 p {
    flex: 1 1 520px;
    width: 100%;
    margin-top: 1rem;
    /* text-align: justify; */
}

@media (width <= 1200px) {
    .about-us-part2 {
        gap: 0;
    }

    .about-text {
        text-align: left;
    }

    /* .about-us-image-side {
        width: 100%;
    } */
}

.about-us-part3 {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    align-items: center;
    flex-direction: row-reverse;
    flex-wrap: nowrap;
    justify-content: center;
}

.about-us-part3 p {
    flex: 1 1 520px;
    width: 100%;
    margin-top: 1rem;
    text-align: justify;
}

@media (width <= 1200px) {
    .about-us-part2 {
        flex-wrap: wrap;
    }

    .about-us-part3 {
        flex-wrap: wrap;
    }
}

.contact-container {
    margin-top: 100px;
    width: clamp(200px, 90vw, 1400px);
    min-height: 600px;
    /* background-color: orange; */

    display: flex;
    flex-direction: column;

    gap: 2rem;
}

.contact-container .contact-part1 {
    width: 100%;
    height: 400px;
    background-color: var(--brownred);
    border-radius: 1rem;
}

.contact-container .contact-part2 {
    width: 50%;
    /* background-color: lightgray; */

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    gap: 0.75rem;
}

.contact-part2 .button-container {
    display: flex;
    justify-content: end;
}

.contact-part2 .email-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.email-container div textarea {
    min-height: 280px;
    width: 100%;
    font-size: 1rem;
}

.email-container div p {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Noto Serif';
    font-size: 1.2rem;
    font-weight: 500;
    color: antiquewhite;
}

.email-container div input {
    width: 100%;
    min-height: 2rem;
    font-size: 1rem;
}

.big-input {
    height: 100%;
}

/* prices  */
.prices-section {
    background-color: var(--brown);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
    flex-direction: column;
}

.price-group {
    width: clamp(200px, 100%, 800px);
    padding: 1.5rem;
    box-sizing: border-box;
    text-align: center;
    background-color: var(--brownred);
    border-radius: 12px;
}

.price-group p {
    margin: 0;
    white-space: unset;
    font-family: 'Noto Serif';
}

.price-title {
    font-size: 1.5rem;
    /* text-decoration: underline; */
    text-underline-offset: 3px;
    font-weight: 450;
    color: antiquewhite;
}

.price {
    font-size: 2.2rem;
    font-weight: 600;
    color: rgb(255 200 117)
}

.price-footer {
    font-size: 1.1rem;
    color: antiquewhite;
}

.image-container img,
.landmark-image-container img,
.room-img-container img {
    min-height: 1px;
}