/* ==========================================================
   EVA VENETI
   Main stylesheet
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:wght@400;700&display=swap');


/* ==========================================================
   RESET
   ========================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 50px 20px;
    background: #f8e2d6;
    color: #2f2f2f;
    font-family: "Noto Serif", serif;
    font-size: 18px;
    line-height: 1.9;
}

::selection {
    background: #d7b79b;
    color: #000;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background: #d5b89d;
    border-radius: 20px;
}

/* ==========================================================
   PAGE
   ========================================================== */

.page {
    max-width: 1050px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .15);
    overflow: hidden;
}

/* ==========================================================
   HEADER
   ========================================================== */

.site-header {
    padding: 40px 70px 30px;
}

.site-header h1 {
    margin: 45px 0;
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.5;
    color: #2a2a2a;
}

.site-header::after {
    content: "";
    display: block;
    width: 140px;
    height: 1px;
    margin: auto;
    background: #dddddd;
}

/* ==========================================================
   LANGUAGE SWITCHER
   ========================================================== */

.language-switcher {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.language-switcher a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 30px;
    color: #444;
    text-decoration: none;
    transition: .25s;
}

.language-switcher a:hover {
    background: #f5f5f5;
}

.language-switcher a.active {
    background: #f8e2d6;
    font-weight: bold;
}

.language-switcher img {
    width: 22px;
    vertical-align: middle;
    margin-right: 6px;
}

/* ==========================================================
   CONTENT
   ========================================================== */

.content {
    padding: 0px 40px 50px;
}

.content p {
    margin-top: 0;
    margin-bottom: 15px;
    text-align: justify;
    hyphens: auto;
}

.text-align-right {
    text-align: right !important;
}

/* ==========================================================
   IMAGES
   ========================================================== */

.photo-left,
.photo-right {
    display: block;
    height: auto;
}

.photo-left {
    float: left;
}

.photo-right {
    float: right;
}

.photo-01 {
    width: 159px;
    margin: 0 15px 0 0;
}

.photo-02 {
    width: 235px;
    margin: 0 0 0 15px;
}

.photo-03 {
    width: 235px;
    margin: 0 15px 0 0;
}

.photo-04 {
    width: 235px;
    margin: 5px 0 0 15px;
}

.photo-05 {
    width: 235px;
    margin: 10px 15px 0 0;
}

.photo-06 {
    width: 235px;
    margin: 10px 0 0 15px;
}

.photo-07 {
    width: 235px;
    margin: 10px 15px 0 0;
}

.photo-08 {
    width: 235px;
    margin: -30px 0 0 15px;
}

.photo-09 {
    width: 235px;
    margin: 0 15px 0 0;
}

.photo-10 {
    width: 235px;
    margin: -25px 0 0 15px;
}

/* ==========================================================
   CLEAR FLOATS
   ========================================================== */

.clear {
    clear: both;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 991px) {

    body {
        padding: 20px 10px;
        font-size: 16px;
        line-height: 29px;
    }

    .site-header,
    .content {
        padding-left: 30px;
        padding-right: 30px;
    }

    .language-switcher {
        justify-content: center;
    }

    .photo-01 {
        margin: 0 15px 0 0;
    }

    .photo-02 {
        margin: 0 0 0 15px;
    }

    .photo-03 {
        margin: 0 15px 0 0;
    }

    .photo-04 {
        margin: 0 0 0 15px;
    }

    .photo-05 {
        margin: 0 15px 0 0;
    }

    .photo-06 {
        margin: 0 0 0 15px;
    }

    .photo-07 {
        margin: 0 15px 0 0;
    }

    .photo-08 {
        margin: 0 0 0 15px;
    }

    .photo-09 {
        margin: 0 15px 0 0;
    }

    .photo-10 {
        margin: 0 0 0 15px;
    }

}

@media (max-width: 767px) {

    .site-header h1 {
        font-size: 1.6rem;
    }


}

@media (max-width: 500px) {

    .site-header,
    .content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .site-header h1 {
        font-size: 1.35rem;
    }

    .photo-01 {
        width: 40%;
    }

    .photo-02,
    .photo-03,
    .photo-04,
    .photo-05,
    .photo-06,
    .photo-07,
    .photo-08,
    .photo-09,
    .photo-10 {
        width: 50%;
    }

}