/*#MARK: variables 
*/

html {
    /* bg colors */
    --bg-orange: #eed8c3;
    --bg-yellow: #f4efce;
    --bg-pink: #f3b0d7;
    --bg-white: #f9f9f3;
    --footer-grey: rgb(81, 81, 81);

    /* fonts */
    --font-heading: Marcellus, serif;
    --font-text: Commissioner, sans-serif;


}

p {
    font-family: var(--font-text);
    line-height: 1.6;
    font-size: 1rem;
    color: #222;
    hyphens: auto;
}

h1 {
    display: flex;
    flex-direction: column;
    font-family: var(--font-heading);

    gap: 2rem;
    text-align: center;
    margin-top: 20px;

}

h2 {
    display: flex;
    flex-direction: column;
    font-family: var(--font-heading);

    gap: 2rem;
    text-align: center;
    margin-top: 20px;

}

h3 {
    font-family: var(--font-heading);
}

[lang="de-CH"] q {
    quotes: '«' '»' '‹' '›';
}

@font-face {
    font-family: 'Marcellus';
    src: url('../fonts/Marcellus/Marcellus-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Commissioner';
    src: url('../assets/fonts/Commissioner.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: black;
}

/*#MARK: Nav Bar 
*/

header {
    position: sticky;
    top: 0;
    z-index: 2000;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: var(--bg-orange);
}

@media (max-width:768px) {
    header {
        display: block;
    }
}

#nav-bar nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1rem;
    align-items: center;
    font-size: large;
}

/* MARK: Hanburger menu
*/
#hamburger {
    position: absolute;
    left: -9999px;
}

label[for="hamburger"] {
    display: none;
}

@media screen and (max-width: 600px) {

    #nav-bar nav ul {
        display: none;
    }

    label[for="hamburger"] {
        display: block;
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        width: 36px;
        height: 28px;
        cursor: pointer;
        z-index: 1500;
    }

    label[for="hamburger"]>span {
        display: block;
        height: 3px;
        margin: 5px 0;
        background-color: #222;
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

    #hamburger:checked~label[for="hamburger"]>span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    #hamburger:checked~label[for="hamburger"]>span:nth-child(2) {
        opacity: 0;
    }

    #hamburger:checked~label[for="hamburger"]>span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    #hamburger~#nav-bar nav {
        display: block;
        position: fixed;
        left: -100%;
        top: 0;
        height: 100vh;
        width: 66vw;
        max-width: 420px;
        background-color: #222;
        z-index: 1400;
        padding-top: 64px;
        box-shadow: 6px 0 24px rgba(0, 0, 0, 0.25);
        transition: left 0.3s ease;
    }

    #hamburger~#nav-bar::before {
        content: '';
        position: fixed;
        left: 0;
        top: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.4);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 1300;
    }

    #hamburger~#nav-bar nav ul {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    #hamburger~#nav-bar nav ul li a {
        display: block;
        padding: 1rem 1.2rem;
        color: white;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    #nav-bar nav .close-menu {
        position: absolute;
        right: 0.5rem;
        top: 2.5rem;
        background: transparent;
        color: white;
        border: none;
        font-size: 1.4rem;
        padding: 0.35rem 0.6rem;
        cursor: pointer;
        z-index: 1501;
    }

    @media screen and (min-width: 601px) {
        #nav-bar nav .close-menu {
            display: none;
        }
    }

    #hamburger:checked~#nav-bar nav {
        left: 0;
    }

    #hamburger:checked~#nav-bar::before {
        opacity: 1;
        pointer-events: auto;
    }
}

#nav-bar nav ul li a {
    text-decoration: none;
    color: #222;
    padding: 0.25rem 0.5rem;
}

#nav-bar nav ul li a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    #nav-bar nav ul {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
}



/* #MARK: picture
*/
#picture {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    margin: 0;
    padding: 0;
}


#picture img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    display: block;
}

.responsive-img {
    max-width: 90%;
}


/* #MARK: offer
*/

#offer {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;

    gap: 2rem;
    text-align: center;

}

#offer h2 {
    font-family: var(--font-heading);
}

#offer-all {
    background-color: var(--bg-pink);
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-bottom: 0;
    padding: 3rem 1rem;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;

}

#offer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

#offer h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 1.5rem;
    width: 800px;
    padding-inline: 1.5rem;
    margin-inline: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

}

#offer-picture {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 700px;
}

#offer-picture img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

#offer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    justify-items: center;
    align-items: start;

    background-color: var(--bg-pink);
    padding: 1rem 2rem;
    font-family: var(--font-text);

    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

#offer-1,
#offer-2, #offer-3 {
    justify-self: right;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 1.5rem;
    max-width: 400px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    line-height: 1.6;
    font-size: 0.95rem;


}

#offer-2 {
    justify-self: left;
}

@media (max-width: 768px) {

    #offer-picture {
        width: 400px;
    }

    #offer h3 {
        width: 400px;
    }

    #offer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    #offer h3,
    #offer-picture {
        width: 90%;
        font-size: 1.4rem;
    }

    #offer-1,
    #offer-2 {
        max-width: 100%;
    }
}


/* #MARK: about us
*/
#about-us {
    display: flex;
    gap: 20px;
    flex-direction: column;
    text-align: center;

    padding-inline: 40px;
    padding-top: 0px;
    padding-bottom: 0;
}


#about-us-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    justify-items: center;
    align-items: start;

    background-color: var(--bg-yellow);
    padding: 4rem 2rem;
    font-family: var(--font-text);

    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

#about-us-text {
    justify-self: left;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 1.5rem;
    max-width: 400px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    line-height: 1.6;
    font-size: 0.95rem;


}

#about-us-picture {
    justify-self: right;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 1.5rem;
    max-width: 400px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

#about-us-picture img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0;

}

@media (max-width: 768px) {

    #about-us-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        justify-items: center;
    }

    #about-us-text,
    #about-us-picture {
        max-width: 400px;
        justify-self: center;
    }
}

/* #MARK: room pictures
*/

#room-title {
    font-family: var(--font-heading);
    padding-bottom: 20px;

}

#room {
    display: flex;
    flex-direction: column;
    margin-top: 20px;

    gap: 2rem;
    text-align: center;


}

#room-content {
    background-color: var(--bg-yellow);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;

    gap: 2rem;
    text-align: center;
    padding: 2rem 1rem;
    margin-inline: 0;
    margin-top: 0;

    background-color: var(--bg-yellow);
}


#room-double-1,
#room-double-2 {
    display: flex;
    flex-direction: column;
    flex: 1 1 45%;
    max-width: 500px;
    box-sizing: border-box;
    align-items: center;
    gap: 1rem;
    text-align: center;
    padding: 2rem 1rem;
}

#room-double-1-title {
    font-family: var(--font-heading);
    background-color: var(--bg-white);
    padding: 10px;
    border-radius: 1.5rem;
    width: 800px;
    padding-inline: 1.5rem;
    margin-bottom: 60px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 430px;

}

#room-double-2-title {
    font-family: var(--font-heading);
    background-color: var(--bg-white);
    padding: 10px;
    border-radius: 1.5rem;
    width: 800px;
    padding-inline: 1.5rem;
    margin-bottom: 60px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 430px;
}

.room-double-img {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 430px;
    margin-bottom: 20px;
    margin-top: 0;
}

#room-double-1-img1,
#room-double-1-img2 {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 430px;
    margin-bottom: 20px;
    margin-top: 0;
}

#room-double-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    padding: 2rem 1rem;
}

#room-double-2-img1,
#room-double-2-img2 {
    justify-self: center;
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 430px;
    margin-bottom: 20px;
}


#room-double-2-img2 {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 430px;
    margin-bottom: 20px;
    gap: 2rem;
}


/* #MARK: room text
*/

#room-description {
    background-color: var(--bg-pink);


}

#room-description-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 1.5rem;
    width: 800px;
    padding-inline: 1.5rem;
    margin-inline: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#room-description-title {
    font-family: var(--font-heading);
    background-color: var(--bg-white);
    padding: 10px;
    border-radius: 1.5rem;
    padding-inline: 1.5rem;
    margin-inline: 20px;
    margin-top: 30px;

    text-align: center;
    justify-self: center;
    width: 800px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

}

#our-rooms {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
    padding: 2rem 1rem;
    background-color: var(--bg-pink);
}

/* #MARK: prices
*/

#room-prices {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
    padding: 1rem;
    background-color: var(--bg-orange);
}

#room-prices-content {

    width: 100vw;

    padding-bottom: 0;


    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#room-prices-title {
    font-family: var(--font-heading);
    padding-bottom: 20px;
    font-family: var(--font-heading);
    background-color: var(--bg-white);
    padding: 10px;
    border-radius: 1.5rem;
    padding-inline: 1.5rem;
    margin-inline: 20px;
    margin-top: 20px;

    text-align: center;
    justify-self: center;
    width: 800px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#room-prices-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 1.5rem;
    width: 800px;
    padding-inline: 1.5rem;
    margin-inline: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#room-prices-offer {
    display: flex;
    gap: 2rem;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    font-family: var(--font-text);


}

#room-prices-offer-1,
#room-prices-offer-2,
#room-prices-offer-3 {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 1.5rem;
    width: 300px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

    text-align: center;
    line-height: 1.6;
    font-size: 0.95rem;
    
}

@media (max-width: 1024px) {

    #room-content {
        flex-direction: column;
        align-items: center;
    }

    #room-double-1,
    #room-double-2 {
        max-width: 90%;
    }

    #room-double-1-title,
    #room-double-2-title,
    #room-description-title,
    #room-prices-title,
    #room-description-text,
    #room-prices-text {
        width: 90%;
        font-size: 1.4rem;
    }

    #room-prices-offer {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    #room-prices-offer-1,
    #room-prices-offer-2,
    #room-prices-offer-3 {
        width: 250px;
    }

    #room-prices {
        padding: 2rem 1rem;
    }

    #our-rooms {
        padding: 2rem 1rem;
    }
}

@media (max-width: 768px) {

    header {
        flex-direction: row;
        justify-content: space-between;
        padding: 1rem;
    }

    #room {
        display: flex;
        flex-direction: column;

        gap: 2rem;
        text-align: center;
        margin-top: 20px;
        padding-bottom: 1rem;
    }

    #room-content {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    #room-double-1,
    #room-double-2 {
        width: 90%;
        max-width: none;
        padding: 1rem;
    }

    #room-double-1-title,
    #room-description-title,
    #room-prices-title,
    #room-description-text,
    #room-prices-text {
        width: 90%;
        margin-inline: auto;
        font-size: 1.2rem;
        padding: 1rem;
    }

    #room-double-1-img1,
    #room-double-1-2,
    #room-double-2-img1,
    #room-double-2-img2 {
        width: 90%;
        max-width: none;
    }

    #room-prices-offer {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 2rem 1rem;
    }

    #room-prices-offer-1,
    #room-prices-offer-2,
    #room-prices-offer-3 {
        width: 90%;
        padding: 1.5rem;
    }

    #room-prices {
        padding: 1.5rem 0.5rem;
    }

    footer address {
        text-align: center;
        font-size: 0.9rem;
    }

    #picture img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

@media (max-width: 480px) {

    h1,
    h2,
    h3,
    h4 {
        font-size: 1.2rem;
    }

    p {
        font-size: 0.9rem;
    }

    #room-prices-offer-1,
    #room-prices-offer-2,
    #room-prices-offer-3 {
        width: 100%;
    }

    #room-double-1-title,
    #room-description-title,
    #room-prices-title {
        font-size: 1.1rem;
    }

}


/* #MARK: location
*/

#location {
    display: flex;
    flex-direction: column;

    gap: 2rem;
    text-align: center;
    margin-top: 20px;

}

#location-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    background-color: var(--bg-white);
    border-radius: 1.5rem;
    width: 950px;
    padding-block: 5px;
    justify-self: center;
    text-align: center;
    margin-top: 48px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

}

#location-info {
    background-color: var(--bg-yellow);
}

#location-content {
    background-color: var(--bg-yellow);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;

    gap: 2rem;
    text-align: center;
    padding: 2rem 1rem;
    margin-inline: 0;

    background-color: var(--bg-yellow);
}

#location-map {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 700px;
    max-width: 100%;
}

#location-adress {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 1.5rem;
    max-width: 400px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    line-height: 1.6;
    font-size: 0.95rem;
    font-family: var(--font-text);
}


/* #MARK: find
*/

#find {
    display: flex;
    flex-direction: column;

    gap: 2rem;
    text-align: center;


}

#find-content {
    background-color: var(--bg-pink);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;

    gap: 2rem;
    text-align: center;
    padding: 2rem 1rem;
    margin-inline: 0;

    background-color: var(--bg-pink);
}

#find-text-title {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

#find-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    background-color: var(--bg-white);

    border-radius: 1.5rem;
    width: 430px;

    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

}

#find-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 1.5rem;
    width: 430px;
    padding-inline: 1.5rem;
    margin-inline: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#find-pictures {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#find-picture-1,
#find-picture-2 {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    justify-self: center;
    align-items: center;
    width: 420px;
    max-width: 100%;
}

@media (max-width: 1024px) {

    #location-title {
        width: 90%;
        font-size: 1.4rem;
    }

    #location-content {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    #location-map,
    #location-adress {
        width: 90%;
        max-width: none;
    }

    #find-content {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    #find-title,
    #find-text,
    #find-picture-1,
    #find-picture-2 {
        width: 90%;
        max-width: 450px;
    }

    #find-pictures {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {

    #location-title {
        width: 90%;
        font-size: 1.3rem;
    }

    #location-content {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 1.5rem 0.5rem;
    }

    #location-map iframe {
        width: 100%;
        height: 300px;
    }

    #location-map,
    #location-adress {
        width: 90%;
        margin-inline: auto;
        padding: 1rem;
    }

    #find-content {
        flex-direction: column;
        align-items: center;
        padding: 1.5rem 0.5rem;
    }

    #find-title,
    #find-text {
        width: 90%;
        font-size: 1.2rem;
    }

    #find-pictures {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    #find-picture-1,
    #find-picture-2 {
        width: 90%;
    }
}

@media (max-width: 480px) {

    #location-title,
    #find-title {
        font-size: 1.1rem;
        width: 95%;
    }

    #location-adress,
    #find-text {
        font-size: 0.9rem;
        width: 95%;
        padding: 1rem;
    }

    #find-picture-1 img,
    #find-picture-2 img {
        width: 100%;
        height: auto;
    }

    #location-map iframe {
        height: 250px;
    }
}



/* #MARK: contact
*/

#contact-top {
    display: flex;
    flex-direction: column;
    margin-top: 20px;

    gap: 2rem;
    text-align: center;

}

#contact-content {
    background-color: var(--bg-yellow);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    text-align: center;
    padding: 2rem 1rem;
    margin-inline: 0;
}

#contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;

}

#contact-data {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;

}

#contact-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    background-color: var(--bg-white);
    border-radius: 1.5rem;
    width: 800px;
    padding-inline: 1.5rem;
    margin-inline: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    justify-self: center;
}

#contact-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 1.5rem;
    width: 800px;
    padding-inline: 1.5rem;
    margin-inline: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#contact-email,
#contact-number {
    font-family: var(--font-text);
    font-size: 1rem;
    background-color: var(--bg-white);
    padding: 1rem 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    line-height: 1.6;
    font-size: 0.95rem;
    width: 320px;
    max-width: 100%;
    margin: 0;
}

#contact h2 {
    font-family: var(--font-heading);
    margin-bottom: 2rem;
    font-size: 2rem;
    background-color: var(--bg-white);
    border-radius: 1.5rem;
    width: 800px;
    padding-inline: 1.5rem;
    padding-block: 30px;
    margin-inline: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    justify-self: center;
}

@media (max-width: 768px) {
    #contact-data {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    #contact-email,
    #contact-number {
        width: 100%;
    }

    #contact-title,
    #contact-text {
        width: 90%;

    }
}

@media (max-width: 1024px) {

    #contact {
        padding: 2rem 1rem;
    }

    #contact-header h2,
    #contact-title h3,
    #contact h2 {
        font-size: 1.6rem;
        width: 90%;
        margin-inline: auto;
    }

    #contact-text p,
    #contact-number p,
    #contact-email p {
        font-size: 1rem;
        width: 90%;
        margin-inline: auto;
    }

    #contact-email a {
        font-size: 1rem;
    }

    #form-wrapper {
        width: 90%;
        margin-inline: auto;
        padding: 1.5rem;
    }

    form#reservation-form {
        width: 100%;
    }
}

@media (max-width: 768px) {

    #contact {
        padding: 1.5rem 0.5rem;
        text-align: center;
    }

    #contact-header h2,
    #contact-title h3 {
        font-size: 1.4rem;
        width: 90%;
    }

    #contact-text p,
    #contact-number p,
    #contact-email p {
        font-size: 0.95rem;
        width: 90%;
    }

    #form-wrapper {
        width: 95%;
        padding: 1rem;
    }

    form#reservation-form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .form-row {
        flex-direction: column;
        gap: 1rem;
    }

    .form-group {
        width: 100%;
    }

    input,
    select,
    textarea {
        width: 100%;
        font-size: 1rem;
        padding: 0.6rem;
    }

    button[type="submit"] {
        width: 100%;
        background-color: var(--bg-orange);
        color: #222;
        border: none;
        border-radius: 1.5rem;
        padding: 0.75rem 1.5rem;
        font-size: 1.1rem;
        cursor: pointer;
        transition: background-color 0.2s ease;
    }

    button[type="submit"]:hover {
        background-color: #f0cfa8;
    }

    #thank-you-message {
        font-size: 1.2rem;
        padding: 2rem;
        width: 90%;
        margin-inline: auto;
    }
}

@media (max-width: 480px) {

    #contact-header h2,
    #contact-title h3 {
        font-size: 1.2rem;
    }

    #contact-text p,
    #contact-number p,
    #contact-email p {
        font-size: 0.9rem;
        width: 95%;
    }

    #form-wrapper {
        width: 95%;
        padding: 0.5rem;
    }

    input,
    select,
    textarea {
        font-size: 0.9rem;
        padding: 0.5rem;
    }

    button[type="submit"] {
        font-size: 1rem;
        padding: 0.6rem 1rem;
    }

    #thank-you-message {
        font-size: 1rem;
        width: 95%;
    }
}


/* #MARK: form
*/
#contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 1rem;
    background-color: var(--bg-pink);
    text-align: center;
}

#contact h2 {
    font-family: var(--font-heading);
    margin-bottom: 2rem;
}

#reservation-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    width: 100%;
    font-family: var(--font-text);
    transition: opacity 0.5s ease;
}

.form-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

#reservation-form input,
#reservation-form select,
#reservation-form textarea {
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 0.8rem;
    font-family: var(--font-text);
    font-size: 1rem;
}

#contact button {
    background-color: var(--bg-orange);
    color: #222;
    font-weight: bold;
    border: none;
    padding: 1rem;
    border-radius: 1rem;
    cursor: pointer;
    font-size: 1.1rem;
    font-family: var(--font-text);
    transition: background-color 0.3s ease, transform 0.1s ease;
}

#contact button:hover {
    background-color: #f8b45c;
    transform: translateY(-2px);
}

#thank-you-message {
    display: none;
    background-color: var(--bg-white);
    color: #222;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    padding: 4rem 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    width: 100%;
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.98);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}



/* #MARK: footer
*/

.footer-header {
    display: block;
    font-size: 1.17em;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    unicode-bidi: isolate;
}

address {
    text-align: center;
    font-style: normal;
    margin: 2rem 0;
    font-family: var(--font-text);
    color: var(--footer-grey);
}

address h4 {
    font-family: var(--font-heading);
}