/*-----variables-----*/

:root
{
    --color-background: #1f1f1f;

    --color-blue-1: #83b6fe;
    --color-blue-2: #4650ff;

    --color-white: #ffffff;

    --color-transparent-white: #ffffff99;

    --color-grey-1: #606060;
    --color-grey-2: #f0f0f0;
    --color-grey-3: #505050;

    --color-black: #000000;
}

/*-----*/


/*-----*.html-----*/

*
{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body
{
    background-color: var(--color-background);
    /*
    background-image: url(Pictures/Background/Seeblick_Greifswalder_Bodden.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;*/
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  background: url(Pictures/Background/Seeblick_Greifswalder_Bodden.jpg) center/cover no-repeat;
  z-index: -1;
  pointer-events: none;
}

#Background_Image
{
    /*
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
    */
    display: none;
}

a
{
    cursor: pointer;
}

.Animated_a_1
{
    transition: all 0.1s ease-in-out;
}

.Animated_a_1:hover
{
    color: var(--color-blue-1);
}

.Nav_Element_Link
{
    display: contents;
}

header
{
    height: 100px;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    margin-bottom: 10px;
}

.Header_Text
{
    font-family: 'Times New Roman', Times, serif;
    color: var(--color-white);
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: 5px;
    text-shadow: 3px 3px 3px rgb(0, 0, 0, 0.5);
    -webkit-user-select: none;
    user-select: none;
}

.Header_Text_Normal_Screen
{
    display: block;
}

.Header_Text_Small_Screen
{
    display: none;
}

#Nav_Container
{
    top: 15px;
    position: sticky;
    padding-left: 60px;
    padding-right: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

#Nav_Bar
{
    height: 55px;
    width: 100%;
    top: 0;
    background-color: var(--color-white);
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    border-radius: 15px;
    box-shadow: 3px 3px 3px rgb(0, 0, 0, 0.5);

    transition: all 0.25s ease-in-out;
}

.Nav_Element
{
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
}

@media (min-width: 800px)
{
    #Nav_Small_Screen_Home_Menu_Link
    {
        display: none;
    }
}

.Nav_Text
{
    font-family: Arial, Helvetica, sans-serif;
    color: var(--color-grey-1);
    font-size: 1.2rem;
    position: relative;
}

#Current_Site
{
    color: var(--color-black);
}

.Nav_Text:hover
{
    color: var(--color-black);
}

#Nav_Logo_Box
{
    height: 100%;
    width: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#Nav_Logo
{
    height: 45px;
}

#Nav_Logo:hover
{
    height: 49px;
}

.Nav_Text::after
{
    content: "";
    height: 2px;
    width: 0%;
    border-radius: 2px;
    background-color: var(--color-blue-2);
    position: absolute;
    left: 0px;
    bottom: -2px;

    transition: all 0.2s ease-in-out;
}

.Nav_Text:hover::after
{
    width: 100%;
}

#Nav_Toggle
{
    display: none;
    appearance: none;
    height: 40px;
    width: 40px;
    background-color: var(--color-blue-1);
    border-radius: 50%;
    cursor: pointer;
}

#Nav_Toggle::after
{
    content: "☰";
    font-size: 2.0rem;
    color: var(--color-white);
    text-shadow: 2px 2px 2px rgb(0, 0, 0, 0.35);
    position: relative;
    bottom: 3px;
    left: 6px;

    transition: content 0.2s ease;
}

#Body_Container
{
    width: 100%;
    min-height: calc(100vh - 60px);
    margin-top: 30px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-left: 60px;
    padding-right: 60px;
}

.Content_Container
{
    background-color: var(--color-transparent-white);
    -webkit-backdrop-filter: blur(10px); /*safari support*/
    backdrop-filter: blur(10px);
    z-index: 1;
    border-radius: 15px;
    box-shadow: 3px 3px 3px rgb(0, 0, 0, 0.5);
    padding: 20px;
    margin: 10px;
}

.Content_Text
{
    background-color: var(--color-grey-2);
    padding: 10px;
    border-radius: 10px;
    font-size: 1.3rem;
    text-align: center;
}

.Content_Text_Headline_1
{
    font-size: 1.5rem;
}

.Headline_1
{
    font-family: 'Times New Roman', Times, serif;
    color: var(--color-white);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-shadow: 2px 2px 2px rgb(0, 0, 0, 0.5);
    -webkit-user-select: none;
    user-select: none;
    margin-bottom: 10px;
    margin-top: 12px;
}

footer
{
    width: 100%;
    height: 400px;
    background-color: var(--color-background);
}

#Unfinished_Site_Logo
{
    width: 150px;
}

/*-----*/



/*-----index.html-----*/

#Index_Image_001
{
    width: 650px;
    max-width: 100%;
    min-width: 0;
    border-radius: 10px;
}

/*-----*/



/*-----appointments.html-----*/

#Appointments_Body_Container
{
    width: 100%;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 30px;
    padding-left: 60px;
    padding-right: 60px;
}

.Appointments_Table
{
    min-width: 0;
    width: 900px;
    max-width: 100%; /* Allows shrinking */
    flex-grow: 0;
    flex-shrink: 1;
    background-color: var(--color-transparent-white);
    -webkit-backdrop-filter: blur(10px); /*safari support*/
    backdrop-filter: blur(10px);
    z-index: -1;
    padding: 10px;
    margin-bottom: 50px;
    border-radius: 15px;
    box-shadow: 3px 3px 3px rgb(0, 0, 0, 0.5);
    border-collapse: separate;
    border-spacing: 10px;
}

.Appointments_Table_tr
{
    height: 50px;
}

.Appointments_Table_tr
{
    background-color: var(--color-grey-2);
}

.Appointments_Table_tr_top
{
    background-color: var(--color-blue-1);
}

.Appointments_Table_th
{
    height: 60px;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 2px 2px 2px rgb(0, 0, 0, 0.2);
    font-size: 1.2rem;
    -webkit-user-select: none;
    user-select: none;
}

.Appointments_Table_td
{
    border-radius: 5px;
    box-shadow: 2px 2px 2px rgb(0, 0, 0, 0.2);
    padding: 10px;
}

.Appointments_Table_Date
{
    width: 77px;
}

.Appointments_Table_Time
{
    width: 86px;
}

.Appointments_Table_Small_Screen
{
    width: 100%;
    display: none;
}

.Appointments_Table_Small_Screen_Text
{
    background-color: var(--color-grey-2);
    padding: 10px;
    border-radius: 10px;
    font-size: 1.0rem;
    text-align: left;
    margin-bottom: 10px;
}

.Appointments_Table_Small_Screen_Title
{
    color: var(--color-blue-2);
    font-weight: 700;
    font-size: 1.7rem;
    text-shadow: 2px 2px 2px rgb(0, 0, 0, 0.2);
}

.Appointments_Table_Small_Screen_Headline
{
    color: var(--color-grey-1);
    font-size: 1.2rem;
}

/*-----*/



/*-----contact.html-----*/

#Contact_Container_1
{
    margin-top: 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

#Contact_Body_Container
{
    width: 100%;
    min-height: 600px;
    margin-top: 20px;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: flex-start;
    padding-left: 60px;
    padding-right: 60px;
}

.Contact_Card
{
    font-size: 1.09rem;
    width: 280px;
}

.Contact_Title
{
    color: var(--color-grey-3);
}

.Contact_Name
{
    font-size: 1.3rem;
}

.Contact_Portrait_Link
{
    display: contents;
}

.Contact_Portrait_Box
{
    display: flex;
    width: 260px;
    height: 260px;
    justify-content: center;
    align-items: center;
}

.Contact_Portrait
{
    width: 250px;
    border-radius: 10px;
    box-shadow: 3px 3px 3px rgb(0, 0, 0, 0.2);
    cursor: pointer;

    transition: all 0.2s ease-in-out;
}

.Contact_Portrait:hover
{
    width: 260px;
}

/*-----*/



/*-----imprint.html-----*/

.Imprint_Text
{
    background-color: var(--color-grey-2);
    padding: 10px;
    border-radius: 10px;
    font-size: 1.3rem;
    text-align: left;
}

.Imprint_Portrait_Link
{
    display: contents;
}

.Imprint_Portrait
{
    width: 40px;
    border-radius: 50%;
    box-shadow: 3px 3px 3px rgb(0, 0, 0, 0.2);
    cursor: pointer;

    transition: all 0.2s ease-in-out;
}

.Imprint_Portrait:hover
{
    box-shadow: 4px 4px 4px rgb(0, 0, 0, 0.4);
}

/*-----*/





/*---------------media: tablets and small screens---------------*/

@media (max-width: 960px)
{

    /*-----*.html-----*/

    header
    {
        height: 75px;
        padding: 30px;
    }

    .Header_Text
    {
        font-size: 3rem;
        letter-spacing: 3px;
    }

    .Content_Container
    {
        padding: 15px;
    }

    /*-----*/

}

/*---------------*/





/*---------------media: smaller tablets and smaller screens---------------*/

@media (max-width: 800px)
{

    /*-----*.html-----*/

    .Header_Text
    {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    #Nav_Container
    {
        position: fixed;
        top: 10px;
        right: 10px;
        width: 100%;
        padding-left: 0px;
        padding-right: 0px;
        justify-content: right;
    }

    #Nav_Bar
    {
        height: 350px;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        margin-left: 19px;
        margin-bottom: 0px;

        transition: all 0.2s ease-in-out;
    }
    
    #Nav_Logo_Box
    {
        display: none;
    }

    #Nav_Toggle
    {
        display: block;

        transition: all 0.2s ease-in-out;
    }

    .Nav_Element_Link div
    {
        opacity: 1;
        transition: opacity 0.2s ease-in-out;
    }

    #Nav_Toggle:not(:checked)
    {
        transform: translate(0.8px, 7.2px);
    }

    #Nav_Toggle:checked
    {
        box-shadow: 2px 2px 2px rgb(0, 0, 0, 0.5);
    }

    #Nav_Toggle:not(:checked) ~ .Nav_Element_Link
    {
        visibility: hidden;
        transition-delay: 0.05s;
    }

    #Nav_Toggle:checked ~ .Nav_Element_Link
    {
        visibility: visible;
    }

    #Nav_Toggle:not(:checked) ~ .Nav_Element_Link div
    {
        opacity: 0;
    }

    #Nav_Toggle:checked ~ .Nav_Element_Link div
    {
        opacity: 1;
        transition-delay: 0.15s;
    }
    

    #Nav_Toggle:checked::after
    {
        content: "✕";
        left: 7px;
    }

    #Body_Container
    {
        margin-top: 10px;
    }

    #Body_Container::before, #Appointments_Body_Container:before, #Contact_Container_1:before
    {
        content: "";
        height: 2px;
        width: 100%;
        border-radius: 1px;
        background-color: var(--color-transparent-white);
    }

    /*-----*/

    

    /*-----appointments.html-----*/

    #Appointments_Body_Container
    {
        margin-top: 10px;
    }

    /*-----*/



    /*-----contact.html-----*/

    #Contact_Container_1
    {
        margin-top:10px
    }

    /*-----*/

}

@supports (-webkit-hyphens: none)
{
    #Nav_Toggle:checked::after
    {
        left: 11.2px;
        bottom: 1.2px;
    }
}

/*---------------*/





/*---------------media: phone and small devices---------------*/

@media (max-width: 600px)
{

    /*-----*.html-----*/

    header
    {
        height: 50px;
        padding: 10px;
        margin-top: 10px;
        margin-bottom: 15px;
        width: calc(100% - 80px);
    }

    .Header_Text
    {
        font-size: 1.7rem;
        letter-spacing: 1px;
    }

    #Body_Container
    {
        padding-left: 5px;
        padding-right: 5px;
        margin-top: 10px;
    }

    .Content_Container
    {
        padding: 10px;
        margin-bottom: 30px;
    }

    .Appointments_Table_Small_Screen
    {
        padding-bottom: 0px;
        display: block;
    }

    .Content_Text_Headline_1
    {
        font-size: 1.2rem;
    }

    .Content_Text
    {
        font-size: 1.1rem;
    }

    /*-----*/



    /*-----appointments.html-----*/

    #Appointments_Body_Container
    {
        padding-left: 15px;
        padding-right: 15px;
        margin-top: 10px;
    }

    .Appointments_Table
    {
        display: none;
    }

    /*-----*/



    /*-----contact.html-----*/

    #Contact_Container_1
    {
        margin-top: 10px;
    }

    #Contact_Body_Container
    {
        padding-left: 5px;
        padding-right: 5px;
        margin-top: 0px;
    }

    /*-----*/



    /*-----imprint.html-----*/

    .Imprint_Text
    {
        font-size: 0.9rem;
    }

    /*-----*/

}

/*---------------*/





/*---------------media: very small devices---------------*/

@media (max-width: 460px)
{

    /*-----*.html-----*/

    .Header_Text_Normal_Screen
    {
        display: none;
    }

    .Header_Text_Small_Screen
    {
        display: block;
    }

    /*-----*/



    /*-----contact.html-----*/

    .Contact_Card
    {
        font-size: 0.9rem;
        width: 270px;
    }

    .Contact_Name
    {
        font-size: 1.1rem;
    }

    .Contact_Portrait_Box
    {
        width: 250px;
        height: 250px;
    }

    .Contact_Portrait
    {
        width: 240px;
    }

    .Contact_Portrait:hover
    {
        width: 250px;
    }

    /*-----*/

}

/*---------------*/
