

@font-face {
    font-family: 'Roboto';
    src: url('fonts/roboto/Roboto-Regular.ttf') format('truetype');
}




html {
    overflow-x: hidden;
}



body::after {
    content: '';
    display: block;
    height: 1px;
    clear: both;
    visibility: hidden;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.header {
    align-items: center;
}

/* LOGO */
img {
    display: block;
    width: auto;
    height: 15em;
    margin: auto;
}

/* NAVIGATION */
nav {
    border-top: 0.6rem solid green;
    border-bottom: 0.6rem solid green;
    background-color: #333; /* Your preferred color */
    width: 100%;
}

nav ul {
    display: flex;
    justify-content: space-around;
    margin: 0 auto;
    max-width: 1200px;
    list-style: none;
    padding-inline-start: 0;
}

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

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

ul li {
    float: none;
    position: relative;
}

ul li a {
    display: block;
    text-align: center;
    padding: 14px 16px;
}

ul li a:hover {
    background-color: #111;
}

ul li ul.dropdown-menu {
    display: none;
    position: static;
    background-color: #333;

}

ul li:hover ul.dropdown-menu {
    display:block;
}

ul li:active > ul.dropdown-menu,
ul li:focus > ul.dropdown-menu {
    display: block;
}


/* BODY */

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
    max-width: 100%;
    overflow-wrap: break-word;



        font-family: "Roboto", sans-serif;
        font-weight: 400;
        font-style: normal;



}


section {


    width: 60%;
    margin: 2rem auto;
    text-align: center;


}

@media (max-width: 768px) {
    section {
        width: 90%;
    }
}



h1 {

    margin-bottom: 2rem;


}

#introPart1  {
    text-align: left;
    hyphens: auto;
    line-height: 1.2;
    word-break: break-word;

    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 400;



}



#introPart2 {

    text-align: left;
    hyphens: auto;
    line-height: 1.2;
    word-break: break-word;

    margin-top: 1rem;
    font-size: 1rem;

    font-weight: 400;

}




.image-container {
    display: flex;
    justify-content: center;
    padding: 2.5rem;
}

.image-container img {
    height: auto;
    width: 25%;
    margin: 0 1rem;
}

@media (max-width: 768px) {
    .image-container img {
        width: 50%;
        margin: 0 0.5rem;
    }
}




footer {
    margin-top: auto;
    width: 100%;
    box-sizing: border-box;
    background-color: green;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
}


.footer-content a {

    color: white;
    text-decoration: none;

}


.footer-links {
    display: flex;
    gap: 10px;
    order: 2;
}

.footer-links a {
    color: white;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}



@media (max-width: 768px) {
    footer {
        padding: 10px;
    }

    .footer-content {
        flex-direction: row;
        align-items: center;
        justify-content: center;

    }

    .footer-links {
        order: 1;
        width: 100%;
        justify-content: center;
        padding: 10px 0;
    }

    img {
        height: 10em;
    }
}


.contact_heading {



    color: green;


}


/* Background Image   */

#energieheilung_main,
#energetisches_coaching_main,
#entstörung,
#yoga_meditation_main,
#home_main {
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    min-height: 100vh;
}

#energieheilung_main {
    background-image: linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5)), url("energieheilung.JPG");
}

#energetisches_coaching_main {
    background-image: linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5)), url('energetisches-coaching.JPG');
    background-position: center bottom 40%;
}

#entstörung {
    background-image: linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5)), url('entstörung.JPEG');
    background-position: center bottom 10%;
}

#yoga_meditation_main {
    background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url("yoga-meditation.JPEG");
    background-position: center;
}



/* Moves image more into the background on main page  */

#home_main {
    background-image: linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5)), url('background-home.JPG');
    background-position: center 10%;
    background-repeat: no-repeat;
    background-size: cover;
}

main section {
    color: black;
    background: rgba(255, 255, 255, 0.6);
    padding: 20px;
}





.fontsize_email_address {
    font-size: 1rem;
}



/* Copy Protection */

main:not(#kontakt-page-main, #impressum-page-main, #datenschutz-page-main) {
    -webkit-user-select: none;  /* For Chrome, Safari and Opera */
    -moz-user-select: none;     /* For Firefox */
    -ms-user-select: none;      /* For IE 10+ */
    user-select: none;         /* Standard syntax */
}



/* Increasing font size for larger displays  */


/* For screens larger than a certain amount */
@media (min-width: 2400px)  {
    main, main p, main h1, main a, main h2, main h3, main #introPart1, main #introPart2, .fontsize_email_address

    {
        font-size: 2rem; /* adjust as required */
    }
}


/* For high resolution desktop (between 1920px and 2560px, typical for 27-30 inch screens) */
@media (min-width: 1900px)  {
    main, main p, main h1, main a, main h2, main h3, main #introPart1, main #introPart2, .fontsize_email_address

    {
        font-size: 1.5rem;
    }
}

/* Large desktop screen (between 1600px and 1919px, typical for 22-26 inch screens) */
@media (min-width: 1600px) and (max-width: 1899px) {
    main, main p, main h1, main a, main h2, main h3, main #introPart1, main #introPart2, .fontsize_email_address
    {
        font-size: 1.2rem;
    }
}

/* Desktop screens (between 1440px and 1599px, typical for 19-21 inch screens) */
@media (min-width: 1440px) and (max-width: 1599px) {
    main, main p, main h1, main a, main h2, main h3, main #introPart1, main #introPart2, .fontsize_email_address

    {
        font-size: 1.1rem;

    }
}



