:root {
    /* Textfarben Grau */
    --primary-backround-colour: hsla(220, 27%, 98%, 1);
    --primary-text-color: hsla(212, 17%, 30%, 1);
    --primary-text-color-grau-700: hsla(214, 11%, 49%, 1);
    --primary-text-color-grau-300: hsla(206, 24%, 87%, 1);
    --primary-black: hsla(215, 22%, 17%, 1);
    /* Akzentfarben */
    --akzent-schneewittchen: hsla(46, 35%, 99%, 1);
    --akzent-0-weiß: hsla(48, 33%, 97%, 1);
    --akzent-50-hintergrund: hsla(40, 86%, 97%, 1);
    --akzent-100:hsla(40, 100%, 97%, 1);
    --akzent-300: hsla(41, 34%, 74%, 1);
    --akzent-400: hsla(34, 40%, 67%, 1);
    --akzent-500: hsla(35, 39%, 39%, 1);
    /* Grüne Farbe */
    --grüne-farbe-100: hsla(180, 100%, 95%, 1);
    --grüne-farbe-500: hsla(174, 56%, 36%, 1);
    /* Gradients */
    --gradient-1: radial-gradient(174.12% 143.82% at -1.74% -1.66%, rgba(211, 197, 166, 0.75) 9.68%, #E9E3D7 59.62%, rgba(255, 250, 239, 0.75) 100%);
    --gradient-2: radial-gradient(174.12% 143.82% at 101.74% -1.66%, rgba(211, 197, 166, 0.75) 9.68%, #E9E3D7 59.62%, rgba(255, 250, 239, 0.75) 100%);
    --glass-gradient: linear-gradient(-137deg, rgba(219, 216, 216, 0.05) 17.77%, rgba(255, 255, 255, 0.50) 78.66%);
    /* Textgrößen */
    --heading-1: 4rem;
    --heading-2: 3rem;
    --heading-3: 2rem;
    --heading-4: 1.5rem;
    --heading-5: 1rem;
    --heading-6: 0.875rem;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: "Montserrat", sans-serif;
    color: var(--primary-text-color);
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    color: var(--primary-text-color);
    font-style: normal;
    line-height: normal;
    text-align: center;
}

h1 {
    font-size: clamp(2rem, calc(7vw - 1rem), var(--heading-1));
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 1.3385rem + 2.4615vw, 3rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.25rem, calc(5vw - 1rem), var(--heading-3));
    font-weight: 700;
}

h4 {
    font-size: clamp(1rem, calc(3vw - 1rem), var(--heading-4));
    font-weight: 600;
}

h5 {
    font-size: clamp(0.875rem, calc(2vw - 1rem), var(--heading-5));
    font-weight: 500;
    text-align: left;
}

h6 {
    font-size: clamp(0.75rem, calc(2vw - 1rem), var(--heading-6));
    font-weight: 500;
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    margin: 0;
}

/* ************************************************ */
/* ************************************************ */
/* ********************* Hero ********************* */
/* ************************************************ */
/* ************************************************ */

.hero {
    background-image: url('../img/hero.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    border-bottom: 3px solid var(--akzent-500);
}

.glassmorph-nav {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(219, 216, 216, 0.9));
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    border-radius: 32px;
    max-width: 1142px;
    width: calc(100% - 48px);
    transition: top 0.3s ease-in-out;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 8px 24px;
}

.logo img {
    width: 152px;
    height: 60px;
    margin: 0;
}

.nav-links {
    display: flex;
    align-items: baseline;
    list-style: none;
    gap: 24px;
}

.nav-links a {
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    color: var(--primary-text-color);
}

.nav-links a:hover {
    color: var(--akzent-500);
}

.dropbtn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-content {
    display: none;
    overflow: hidden;
}

.dropdown-content a {
    color: var(--primary-text-color);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-weight: 500;
    font-size: 14px;
    background: transparent;
}


/* Desktop-Ansicht (Hover-Effekt) */
@media (min-width: 431px) {
    .dropdown {
        position: relative;
        display: inline-block;
    }

    .dropdown::before {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        right: 0;
        height: 20px;
    }

    .dropdown-content {
        display: none;
        position: absolute;
        min-width: 160px;
        z-index: 1;
        border-radius: 1rem;
        top: 30px;
        background: linear-gradient(to right, rgba(219, 216, 216, 0.9), rgba(255, 255, 255, 0.9));
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }
}


.hero-alle-elemente {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    transform: translateY(-100px);
}

.hero-text-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.hero-header {
    color: var(--akzent-0-weiß);
    text-decoration: underline;
}

.hero-subheader {
    color: var(--akzent-0-weiß);
}


/* ****************************************************** */
/* ****************************************************** */
/* ********************* ueber-mich ********************* */
/* ****************************************************** */
/* ****************************************************** */


#ueber-mich {
    background: var(--akzent-0-weiß);
    width: 100%;
    height: auto;
    padding: 8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    border-bottom: 2px solid var(--akzent-300);
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1142px;
}

.flex-item-1 {
    flex: 50%;
    max-height: 718px;
}

.flex-item-1 img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 32px;
    border: 2px solid var(--akzent-400);
    box-shadow: -2px -2px 5px 0px rgba(0, 0, 0, 0.10), 2px 2px 5px 0px rgba(0, 0, 0, 0.10);
}

.flex-item-2 {
    flex: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 600px;
    max-height: 718px;
}

.flex-item-2 > * {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.container-header-unterstrich {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.container-heading-unterstrich > * {
    align-self: flex-start;
}

#steckbrief-heading {
    text-align: left;
}

.unterstrich {
    width: 128px;
    height: 4px;
    background-color: var(--akzent-400);
}

.steckbrief-qualifikationen {
    max-width: 100%;
    height: auto;
    flex-shrink: 1;
    background: var(--glass-gradient);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 32px;
    padding: max(1rem, 2rem);
    border: 1px solid rgba(255, 255, 255, 0.30);
    box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.10);
}

.steckbrief-qualifikationen ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.steckbrief-qualifikationen li {
    padding-left: 36px;
    position: relative;
    padding-bottom: 16px;
    font-size: clamp(1rem, 0.8346rem + 0.6154vw, 1.25rem);
    font-weight: 500;
    line-height: 100%;
}

.steckbrief-qualifikationen li:last-child {
    padding-bottom: 0;
}

.steckbrief-qualifikationen li::before {
    content: url("../icons/02_steckbrief/checkmark.svg");
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
}

.steckbrief-quote-button-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.steckbrief-quote {
    margin: 0;
    max-width: 100%;
    height: auto;
    padding: 24px;
    padding-left: 36px;
    position: relative;
}

.steckbrief-quote::before {
    content: '“';
    font-family: "Georgia", serif;
    font-weight: 800;
    color: var(--grüne-farbe-500);
    font-size: 5rem;
    position: absolute;
    top: 0px;
    left: 5px;
}

.steckbrief-quote p {
    margin: 0 0 12px 12px;
    font-size: clamp(0.875rem, 0.7923rem + 0.3077vw, 1rem);
    font-style: italic;
    font-weight: 500;
    line-height: 24px;
}

.steckbrief-quote p:last-child {
    margin-bottom: 0;
}

.contact-button {
    background-color: var(--primary-black);
    color: var(--akzent-0-weiß);
    border: none;
    padding: 18px 46px;
    margin-left: 56px;
    margin-top: 0;
    margin-bottom: 0;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(0.875rem, 0.7923rem + 0.3077vw, 1rem);
    font-weight: 700;
    border-radius: 32px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
    gap: 8px;
    display: flex;
    align-items: center;
    letter-spacing: 0.5px;
}

.contact-button:hover {
    background-color: var(--akzent-500);
}

#send-icon-contact-button {
    color: var(--akzent-0-weiß);
}

/* ************************************************************** */
/* ************************************************************** */
/* ********************* Immobilienangebote ********************* */
/* ************************************************************** */
/* ************************************************************** */


#immobilienangebote {
    background: var(--akzent-0-weiß);
    width: 100%;
    height: auto;
    padding: 8rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    box-sizing: border-box;
    border-bottom: 2px solid var(--akzent-300);
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.section-subheader {
    max-width: 80%;
}

.no-home {
    margin: 10rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
}

.no-home .material-symbols-outlined {
    font-size: 120px;
    color: var(--primary-text-color-grau-300);
    font-variation-settings:
      'FILL' 0,
      'wght' 400,
      'GRAD' 0,
      'opsz' 80;
}



/* ****************************************************** */
/* ****************************************************** */
/* ********************* Leistungen ********************* */
/* ****************************************************** */
/* ****************************************************** */

#leistungen {
    background: var(--akzent-0-weiß);
    min-height: 1024px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 8rem;
    box-sizing: border-box;
    border-bottom: 2px solid var(--akzent-300);
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.section-subheader {
    max-width: 80%;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 80px;
    max-width: 1142px;
}

.card-link {
    text-decoration: none;
    color: inherit;
}

.grid-element {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
    height: 100%;
    max-width: 560px;
    box-sizing: border-box;
    background: var(--glass-gradient);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 32px;
    padding: min(3rem, 16%);
    border: 1px solid rgba(255, 255, 255, 0.30);
    box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.10);
}


.grid-icon-header {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-direction: column;
    text-align: center;
}


.grid-element-icon {
    margin: 0;
    width: 64px;
    height: 64px;
}

.grid-element-icon img {
    width: 100%;
    height: 100%;
}

.grid-element-description-link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 24px;
    width: 100%;
}

.grid-element-description {
    color: var(--primary-text-color);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    margin: 0;
}

.mehr-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mehr-link-text {
    font-size: 14px;
    font-weight: 700;
    font-style: normal;
    color: var(--grüne-farbe-500);
    margin: 0;
}

/* Hover Effekte */

.grid-element:hover {
    background: var(--akzent-400);
}

.grid-element:hover .grid-element-icon path {
    fill: var(--akzent-500);
}

.grid-element:hover .grid-element-header {
    color: var(--akzent-100);
}

.grid-element:hover .grid-element-description {
    color: var(--akzent-0-weiß);
}

.grid-element:hover .mehr-link-text {
    color: var(--primary-black);
}

.grid-element:hover .arrow-rechts-icon path {
    fill: var(--primary-black);
}


/* ************************************************ */
/* ************************************************ */
/* ******************** Schritte ******************** */
/* ************************************************ */
/* ************************************************ */

#schritte {
    background: var(--akzent-0-weiß);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 8rem;
    box-sizing: border-box;
    border-bottom: 2px solid var(--akzent-300);
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.section-subheader {
    max-width: 80%;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 80px;
    max-width: 1142px;
}

.grid-element-schritte {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
    height: 100%;
    max-width: 560px;
    box-sizing: border-box;
    background: var(--akzent-200);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 32px;
    padding: min(3rem, 16%);
    border: 1px solid rgba(255, 255, 255, 0.30);
    box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.10);
}


.grid-icon-header-schritte {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-direction: column;
    text-align: center;
}


.grid-element-icon-schritte {
    margin: 0;
    width: 64px;
    height: 64px;
}

.grid-element-description-schritte {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    gap: 24px;
    width: 100%;
}

.grid-element-description-schritte p {
    color: var(--primary-text-color);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    margin: 0;
}

.grid-element-icon-schritte .material-symbols-outlined {
    font-size: 48px;
    color: var(--akzent-400);
    font-variation-settings:
      'FILL' 0,
      'wght' 400,
      'GRAD' 0,
      'opsz' 48;
}

/* ************************************************** */
/* ************************************************** */
/* ******************* Verkaufen ******************** */
/* ************************************************** */
/* ************************************************** */

#verkaufen {
    background: var(--akzent-0-weiß);
    border-bottom: 2px solid var(--akzent-300);
    min-height: 1024px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid-abschnitt {
    max-width: 1142px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    box-sizing: border-box;
    margin-left: clamp(2rem, calc(4vw - 1rem), 3rem);
    margin-right: clamp(2rem, calc(4vw - 1rem), 3rem);
    align-items: flex-start;
}

.linke-spalte {
    align-self: start;
    justify-self: start;
    height: 100%;
}

.rechte-spalte {
    height: 100%;
}

.wrapper-text-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    align-self: flex-start;
    height: 100%;
    gap: max(32px, 1rem);
}

.text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
}

.container-header-unterstrich {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.unterstrich {
    width: 128px;
    height: 4px;
    background-color: var(--akzent-400);
}

.container-description {
    font-size: 16px;
    font-style: italic;
    font-weight: 500;
    margin: 0;
}


.glassmorph-liste {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: clamp(2rem, calc(4vw - 1rem), 3rem);
    margin-bottom: 5px;
    width: 100%;
    box-sizing: border-box;
    background: var(--glass-gradient);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.30);
    box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.10);
    flex-grow: 1;
}

.glassmorph-liste-element {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    align-self: stretch;
    justify-content: start;
}

.glassmorph-liste-element-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    
}

.material-symbols-outlined {
    font-size: 24px;
    color: var(--grüne-farbe-500);
    font-variation-settings:
      'FILL' 1,
      'wght' 400,
      'GRAD' 0,
      'opsz' 24;
}

.card-link:hover .material-symbols-outlined {
    color: var(--primary-black);
}

.glassmorph-liste-element-text-container {
    display: flex;
    flex-direction: column;
}

.glass-element-header {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}

.glass-element-text {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    margin: 0;
}

.container-bild-rechts {
    align-self: end;
    justify-self: end;
}   

.container-bild-rechts img {
    width: clamp(400px, 100%, 469px);
    height: auto;
    flex-shrink: 1;
    border-radius: 32px;
    border: 2px solid var(--akzent-400);
    filter: drop-shadow(-2px -2px 5px rgba(0, 0, 0, 0.10)) drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.10));
}


/* ************************************************** */
/* ************************************************** */
/* ******************* Vermieten ******************** */
/* ************************************************** */
/* ************************************************** */

#vermieten {
    background: var(--akzent-0-weiß);
    border-bottom: 2px solid var(--akzent-300);
    min-height: 1024px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container-bild-links {
    align-self: start;
    justify-self: start;
}   

.container-bild-links img {
    width: 469px;
    height: 714px;
    flex-shrink: 0;
    border-radius: 32px;
    border: 2px solid var(--akzent-400);
    filter: drop-shadow(-2px -2px 5px rgba(0, 0, 0, 0.10)) drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.10));
}


/* ************************************************ */
/* ************************************************ */
/* ******************** Gewerbe ******************* */
/* ************************************************ */
/* ************************************************ */

#gewerbe {
    background: var(--akzent-0-weiß);
    border-bottom: 2px solid var(--akzent-300);
    min-height: 1024px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#gewerbe .rechte-spalte {
    text-align: right;
}


/* ************************************************************** */
/* ************************************************************** */
/* ****************** Immobilienaufgaben ****************** */
/* ************************************************************** */
/* ************************************************************** */


#immobilienaufgaben {
    background: var(--akzent-0-weiß);
    border-bottom: 2px solid var(--akzent-300);
    min-height: 1024px;
    display: flex;
    align-items: center;
    justify-content: center;
}



/* ********************************************************** */
/* ********************************************************** */
/* ******************* Kontaktformular ****************** */
/* ********************************************************** */
/* ********************************************************** */


#kontaktformular {
    background: linear-gradient(180deg, #E9E3D7 40%, var(--akzent-0-weiß) 60%);
    min-height: 100%; 
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    border-bottom: none;
    margin: 0;
    padding: 64px;
}

.form-container {
    max-width: 1142px;
    width: 100%;
    display: grid;
    grid-template-columns: 35% 65%;
    background: var(--glass-gradient);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.30);
    box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin: 48px;
}

.visitenkarte {
    max-width: 100%;
    padding: clamp(32px, 48px, 80px);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    background-color: var(--akzent-0-weiß);
    box-shadow: -2px -2px 5px 0px rgba(0, 0, 0, 0.10), 2px 2px 5px 0px rgba(0, 0, 0, 0.10);
}

.logo-formular {
    width: clamp(160px, 100%, 210px);
    height: auto;
    align-self: center;
}

.logo-text-formular {
    font-weight: 700;
    font-size: 14px;
    margin: 0;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--akzent-300);
}

.visitenkarte p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: var(--primary-text-color);
}

.visitenkarte p:last-of-type {
    border-bottom: solid 0.5px var(--akzent-300);
    padding-bottom: 24px;
}

.kontakt-liste {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.kontakt-liste li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 18px;
    font-weight: 500;
    color: var(--grüne-farbe-500);
}

.formular {
    padding: 80px;
    display: flex;
    flex-direction: column;
    width: auto;
    max-width: 100%;
    box-sizing: border-box;
}

.formular form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.formular label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-text-color);
}

.form-group-checkbox #datenschutz-hacken {
    color: var(--primary-text-color-grau-700);
}

.formular input[type="text"],
.formular input[type="email"],
.formular input[type="tel"],
.formular textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--akzent-300);
    border-radius: 8px;
    background-color: var(--akzent-0-weiß);
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    box-sizing: border-box;
}

.formular input:focus,
.formular textarea:focus {
    outline: none;
    border-color: var(--akzent-500);
}

.formular textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group-full-width {
    grid-column: 1 / -1;
}

.form-group-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-group-checkbox input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    accent-color: var(--grüne-farbe-500);
}

.form-group-checkbox label {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
}

.submit-btn {
    background-color: var(--primary-black);
    color: var(--akzent-0-weiß);
    border: none;
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-size: clamp(0.875rem, 0.7923rem + 0.3077vw, 1rem);
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-end;
    letter-spacing: 1px;
    font-family: "Montserrat", sans-serif;
}

.submit-btn:hover {
    background-color: var(--akzent-500);
}



/* ******************************************************** */
/* ******************************************************** */
/* ******************* Kontakt-Board ****************** */
/* ******************************************************** */
/* ******************************************************** */



#kontakt-board {
    display: flex;
    justify-content: center;
    align-items: center;
}

.kontakt-board-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    width: 1100px;
    height: auto;
    padding: 24px 64px;
    box-sizing: border-box;
    background-color: var(--akzent-0-weiß);
    border-radius: 24px;
    margin: -74px 0;
    position: relative;
    z-index: 1;
    box-shadow: -2px -2px 5px 0px rgba(0, 0, 0, 0.10), 2px 2px 5px 0px rgba(0, 0, 0, 0.10);
}

.kontakt-board-avatar img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.kontakt-board-text {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-width: 0;
    gap: 16px;
}



.kontakt-board-text p {
    margin: 0;
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    color: var(--primary-text-color);
}

.kontakt-board-details {
    display: flex;
    width: 240px;
    flex-direction: column;
    align-items: start;
    gap: 8px;
}

.kontakt-board-details h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}

.kontakt-board-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.kontakt-board-details li {
    display: flex;
    align-items: flex-start;
    gap: 2px;
    font-size: 14px;
    font-weight: 500;
    color: var(--grüne-farbe-500);

}

.kontakt-board-details .material-symbols-outlined {
    color: var(--grüne-farbe-500);
    font-size: 18px;
    font-variation-settings:
    'FILL' 1,
    'wght' 400,
    'GRAD' 0,
    'opsz' 18;
}



/* ********************************************** */
/* ********************************************** */
/* ******************** Footer ******************** */
/* ********************************************** */
/* ********************************************** */


footer {
    background-color: var(--akzent-0-weiß);
    padding: 24px;
}

.footer-content {
    align-self: center;
}

.footer-nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    padding: 0 1.5rem;
}

.footer-nav a {
    text-decoration: none;
    color: var(--primary-text-color);
    font-size: 14px;
}

.footer-nav a:hover {
    color: var(--akzent-500);
}

#menu-icon {
    display: none;
    cursor: pointer;
    color: var(--primary-text-color-grau-700);
    font-size: 24px;
    font-variation-settings:
    'FILL' 0,
    'wght' 700,
    'GRAD' 0,
    'opsz' 24;
}



/* ************************************************************** */
/* ************************************************************** */
/* ****************** Scroll to Top Button ****************** */
/* ************************************************************** */
/* ************************************************************** */



#scrollToTopBtn {
    display: none; 
    position: fixed; 
    bottom: 20px; 
    right: 30px; 
    z-index: 99; 
    border: none; 
    outline: none; 
    background-color: transparent; 
    color: var(--primary-text-color-grau-700); 
    cursor: pointer; 
    padding: 15px;
    border-radius: 50%; 
}

#scrollToTopBtn .material-symbols-outlined {
    font-size: 48px;
    color: var(--primary-text-color-grau-700);
    font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 48;
}

/* ************************************************************ */
/* ************************************************************ */
/* ****************** Seitenleiste Button ***************** */
/* ************************************************************ */
/* ************************************************************ */


#seitenleiste-btn {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1000;
    cursor: pointer;
    background-color: var(--akzent-400);
    width: 72px;
    height: 64px;
    box-sizing: border-box;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 3px var(--akzent-500);
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    border-style: outside;
    box-shadow: -4px 0px 12px 0px rgba(0, 0, 0, 0.05);
}   


#seitenleiste-btn .material-symbols-outlined {
    font-size: 40px;
    color: var(--akzent-0-weiß);
    font-variation-settings:
    'FILL' 1,
    'wght' 400,
    'GRAD' 0,
    'opsz' 40;
}

#seitenleiste-btn:hover {
    background-color: var(--akzent-400);
    border-color: var(--akzent-500);
}

#seitenleiste-btn:hover .material-symbols-outlined {
    font-size: 40px;
    color: var(--akzent-500);
    font-variation-settings:
    'FILL' 1,
    'wght' 400,
    'GRAD' 0,
    'opsz' 40;
}



/* ************************************************************ */
/* ************************************************************ */
/* ****************** Toast Notifications ******************* */
/* ************************************************************ */
/* ************************************************************ */
.toast {
    visibility: hidden;
    opacity: 0;
    transform: translateY(-100%);
    transition: all 0.5s ease-in-out;
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 2000;
    border: 2px solid var(--grüne-farbe-500);
    border-radius: 2rem;
    padding: 1rem;
    width: 20rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    background-color: rgb(206, 253, 206);
}

.toast.show {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.toast-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.toast-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
}

.toast-icon .material-symbols-outlined {
    color: var(--grüne-farbe-500);
    font-size: 32px;
    font-variation-settings:
    'FILL' 1,
    'wght' 400,
    'GRAD' 0,
    'opsz' 32;
}

.toast-content {
    flex-grow: 1;
}

.toast-content p {
    margin: 0;
    color: #333;
}

.toast-title {
    font-weight: bold;
    font-size: 1rem;
}

.toast-message {
    font-size: 0.875rem;
}

.toast-close {
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    cursor: pointer;
    padding: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.toast-close .material-symbols-outlined {
    font-size: 20px;
    color: #555;
}

#toast-error {
    background-color: #fde8e8;
    border: 2px solid hsl(0, 76%, 57%);
}

#toast-error .toast-icon .material-symbols-outlined {
    color: hsl(0, 76%, 57%);
}

#toast-error .toast-title {
    color: hsl(0, 76%, 57%);
}

#toast-error .toast-message {
    color: #718096;
    background-color: #fdecea;
    border-color: hsl(0, 76%, 57%);
}

.toast-error .toast-icon {
    background-color:hsl(0, 76%, 57%);
}

.toast-error .toast-message a {
    color: #333;
    text-decoration: underline;
}


/* ********************************************************* */
/* ********************************************************* */
/* ********************* MEDIA QUERIES ********************* */
/* ********************************************************* */
/* ********************************************************* */



/* **************************************************************** */
/* **************************************************************** */
/* ********************* Responsivität Toasts ********************* */
/* **************************************************************** */
/* **************************************************************** */


@media (max-width: 430px) {
    .toast {
        width: 80%;
        left: 50%;
        right: auto;
        transform: translate(-50%, -100%);
    }

    .toast.show {
        transform: translate(-50%, 0);
    }
}


/* ****************************************************************** */
/* ****************************************************************** */
/* ****************** Responsivität Seitenleiste ****************** */
/* ****************************************************************** */
/* ****************************************************************** */

#seitenleiste {
    display: none;
    width: 430px;
    height: 100vh;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000;
    background-color: var(--akzent-50-hintergrund);
    box-sizing: border-box;
}




/* **************************************************************** */
/* **************************************************************** */
/* ********************* Responsivität Navbar ********************* */
/* **************************************************************** */
/* **************************************************************** */



@media (max-width: 1024px) {

    #menu-icon {
        display: block;
    }

    .glassmorph-nav {
        width: calc(100% - 48px);
    }

    .glassmorph-nav.menu-open {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }


    .nav-links {
        margin: 0;
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%; /* Positioniert das Menü direkt unter der Navbar */
        left: 0;
        background: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(219, 216, 216, 0.9));
        backdrop-filter: blur(20px);
        padding: 10px 0 30px; /* Oben weniger, unten mehr Padding */
        border-bottom-left-radius: 32px;
        border-bottom-right-radius: 32px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        text-align: center;
        padding: 10px 0;
        width: 100%;
        transition: background-color 0.3s ease;
    }

    .nav-links li:not(.dropdown):hover {
    background-color: rgba(0,0,0,0.05);
    border-radius: 8px;
    }

    /* Stile für das Akkordeon-Dropdown auf mobilen Geräten */
    .dropdown-content {
        position: static;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        padding-left: 0;
        background: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(219, 216, 216, 0.9));
        backdrop-filter: blur(20px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); 
    }

    .dropdown-content a {
        text-align: center;
        padding: 1rem 0;   
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .dropdown.active .dropbtn {
        color: var(--akzent-500);
    }

    .dropbtn {
        display: flex;
        align-items: center;
    }

}

@media (max-width: 430px) {
    .glassmorph-nav {
        width: 90%;
    }

    .logo img {
        width: auto;
        height: 50px;
    }
}

/* ********************* Responsive Hero ******************** */



@media (max-width: 430px) {

    .hero-text-content {
        width: 90%;
    }
    .hero-header {
        font-size: 32px;
    }
    .hero-subheader {
        font-size: 16px;
        width: 90%;
    }

    .logo-hero {
        display: none;
    }
}

/* ********************* Responsivität Über mich ********************* */

@media only screen and (max-width: 992px) {
    #ueber-mich {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 56px 20px;
    }
}


@media only screen and (max-width: 430px) {

    #ueber-mich {
        display: flex;
        flex-direction: column;
        align-items: start;
        padding: 3.5rem 1.25rem 10rem;
    }

    .flex-container {
        flex-direction: column;
        gap: 40px;
    }


    .flex-item-2 {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 1rem;
    }

    .container-heading-unterstrich {
        align-items: center;
    }

    .container-heading-unterstrich {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .steckbrief {
        padding: 48px 24px;
    }
    
    .flex-item-1 {
        width: 100%;
    }

    .container-heading-unterstrich {
        align-items: center;
    }

    .steckbrief-quote-button-container {
        width: 100%;
        margin: 0;
    }

    .steckbrief-quote {
        padding: 24px 0;
    }

    .steckbrief-qualifikationen {
        font-size: 14px;
        padding: 24px;
        width: 100%;
        height: auto;
        margin: 0 auto;
        box-sizing: border-box; /* Verhindert Überlaufen durch Padding */
    }

    .steckbrief-qualifikationen ul {
        margin: 0 auto;
        padding: 0;
    }

    .steckbrief-qualifikationen li {
        display: flex;
        align-items: center; /* Vertikales Zentrieren */
        font-size: 16px;
        list-style-type: none; /* Versteckt Standard-Listenpunkte */
        margin-bottom: 8px; 
        padding-top:2px;
    }

    .steckbrief-qualifikationen li::before {
        content: ''; /* Muss leer sein, um background-image zu verwenden */
        background-image: url("../icons/02_steckbrief/checkmark.svg");
        background-size: contain; /* Skaliert das Bild auf die Containergröße */
        background-repeat: no-repeat;
        width: 20px;
        height: 20px;
        margin-right: 8px; /* Abstand zwischen Icon und Text */
        flex-shrink: 0; /* Verhindert, dass das Icon schrumpft */
    }

    
    .steckbrief-quote::before {
        font-size: 64px;
    }
    
    .steckbrief-quote {
        margin: 0;
        padding-top: 16px;
        padding-left: 36px;
    }

    .steckbrief-quote p {
        font-size: 16px;
        margin: 1rem;
    }


    .contact-button-mobile {
        display: none;
    }

    .contact-button {
        display: flex;
        margin: 0;
        margin-top: 1rem;
        font-size: 14px;
        padding: 16px 32px;
        text-align: center;
        align-self: center;
        width: auto;
        gap: 8px;
        align-items: center;
        justify-content: center;
    }
}




/* ********************* Responsive Leistungen ******************** */

@media only screen and (max-width: 992px) {
    .grid {
        grid-template-columns: 1fr;
        margin: 40px 20px;
    }

    .grid-element {
        padding: 32px;
    }

    #leistungen {
        padding: 56px 20px;
    }
}

@media only screen and (max-width: 430px) {

    .header-content {
        width: 100%;
        margin: 0 auto;
    }

    .section-subheader {
        font-size: 12px;
    }

    .grid {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }

    .grid-element {
        margin: 0 auto; /* Zentriert das Element */
    }

    .grid-element-icon {
        width: 48px;
        height: 48px;
    }   

    .grid-element-header {
        font-size: 20px;
    }
    .mehr-link {
        gap: 2px;
    }

    .mehr-link .material-symbols-outlined {
        font-size: 20px;
        font-variation-settings:
        'FILL' 1,
        'wght' 400,
        'GRAD' 0,
        'opsz' 20;
    }
}

/* ********************* Immobilienangebote Responsive ******************** */


@media only screen and (max-width: 430px) {

    #immobilienangebote {
        padding: 3.5rem 1.25rem;
    }
}


/* ********************* Schritte Responsive ******************** */


@media only screen and (max-width: 430px) {

    #schritte {
        padding: 3.5rem 1.25rem;
    }

    .header-content {
        width: 100%;
        margin: 0 auto;
    }

    .section-subheader {
        font-size: 0.75rem;
    }

    .grid-3 {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .grid-element-schritte {
        margin: 0 auto; 
        padding: 2rem;
    }

    .grid-element-header-schritte {
        font-size: clamp(1.25rem, calc(5vw - 1rem), 2rem);
        font-weight: 700;
    }

    .material-symbols-outlined {
        font-size: 48px;
        font-variation-settings:
        'FILL' 1,
        'wght' 400,
        'GRAD' 0,
        'opsz' 48;
    }
}



/* ********************* Responsive Verkaufen ******************** */

@media only screen and (max-width: 992px) {

    #verkaufen {
        width: 100%;
        box-sizing: border-box;
    }
    
    .grid-abschnitt {
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box;
    }

    .wrapper-text-content {
        box-sizing: border-box;
        justify-content: center;
        align-items: center;
        align-self: center;
    }

    .text-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        box-sizing: border-box;
    }
}

@media only screen and (max-width: 430px) {

    #verkaufen {
        width: 100%;
        box-sizing: border-box;
    }

    .grid-abschnitt {
        width: 100%;
        margin: 0;
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        box-sizing: border-box;
    }

    .linke-spalte {
        width: 100%;
    }
    .wrapper-text-content {
        width: 100%;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 3.5rem 1.25rem;
        box-sizing: border-box;
    }

    .text-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        box-sizing: border-box;
    }

    .unterstrich {
        width: 80px;
    }

    #verkaufen-header {
        font-size: 28px;
        margin: 0;
        width: 100%;
        text-align: center;
        display: block;
     }

    #verkaufen-description {
        font-size: 14px;
        margin: 0;
        width: 100%;
        text-align: center;
        display: block;
    }
    
    .glassmorph-liste {
        width: 100%;
        padding: 32px;
    }


    .rechte-spalte {
        width: 100%;
    }

    .container-bild-rechts {
        width: 100%;
    }

    .container-bild-rechts img {
        width: 100%;
        height: 300px;
        margin: 0;
        display: block;
        box-sizing: border-box;
        border-top-left-radius: 0px;
        border-top-right-radius: 0px;
        border-bottom-left-radius: 32px;
        border-bottom-right-radius: 32px;
        border-top: none;
        border-bottom: 2px solid var(--akzent-400);
    }

    #container-bild-verkaufen img {
        content: url('../img/normales_haus_mobile.jpg');
    }

    /* Vermieten Section */

    #vermieten {
        width: 100%;
        box-sizing: border-box;
        flex-direction: column-reverse;
    }

    #grid-abschnitt-vermieten {
        display: flex;
        flex-direction: column; /* Bild ist in der linken Spalte, also normale Reihenfolge */
        align-items: center;
        width: 100%;
        box-sizing: border-box;
    }

    .wrapper-text-content-vermieten {
        width: 100%;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 56px 20px;
        box-sizing: border-box;
    }

    #vermieten-header {
        font-size: 28px;
        margin: 0;
        width: 100%;
        text-align: center;
        display: block;
    }

    #vermieten-description {
        font-size: 14px;
        margin: 0;
        width: 100%;
        text-align: center;
        display: block;
    }

    .container-bild-links {
        width: 100%;
    }

    .container-bild-links img {
        width: 100%;
        height: auto;
        margin: 0;
        display: block;
        box-sizing: border-box;
        border-top-left-radius: 0px;
        border-top-right-radius: 0px;
        border-bottom-left-radius: 32px;
        border-bottom-right-radius: 32px;
        border-top: none;
        border-bottom: 2px solid var(--akzent-400);
    }

    #container-bild-vermieten img {
        content: url('../img/vermieten_mobile.jpg');
    }

    /* Gewerbe Section */
    #gewerbe .grid-abschnitt {
        flex-direction: column-reverse;
    }

    #gewerbe-description {
        font-size: 14px;
        margin: 0;
        width: 100%;
        text-align: center;
        display: block;
    }

    #container-bild-gewerbe img {
        content: url('../img/gewerbe_mobile.jpg');
    }

    /* Immobilienaufgaben Section */
    #immobilienaufgaben .grid-abschnitt {
        flex-direction: column;
    }

    #immobilienaufgaben-header {
        font-size: 28px;
        margin: 0;
        width: 100%;
        text-align: center;
        display: block;
    }

    #immobilienaufgaben-description {
        font-size: 14px;
        margin: 0;
        width: 100%;
        text-align: center;
        display: block;
    }

    #container-bild-immobilienaufgaben img {
        content: url('../img/immobilienaufgaben_mobile.jpg');
    }
}


/* ********************* Responsivität Kontaktboard ********************* */
@media (max-width: 992px) {
    
    #kontakt-board {
        display:none;
    }
}


@media (max-width: 430px) {
    
    #kontakt-board {
        display:none;
    }
}

/* ********************* Responsivität Kontaktformular ********************* */

@media (max-width: 992px) {
    #kontaktformular {
        gap: 40px;
    }

    #scrollToTopBtn {
        right: 20px;
    }

    .form-container {
        grid-template-columns: 1fr;
        max-width: 100%;
        margin: 0 20px;
    }

    .visitenkarte {
        padding: 32px;
        text-align: center;
        align-items: center;
    }

    .visitenkarte .material-symbols-outlined {
        font-size: 20px;
        color: var(--grüne-farbe-500);
        font-variation-settings:
          'FILL' 1,
          'wght' 400,
          'GRAD' 0,
          'opsz' 20;
    }

    .logo-formular {
        width: 160px;
        height: auto;
    }

    .formular {
        padding: 32px;
    }

    .form-row {
        flex-direction: column;
    }

    .visitenkarte p {
        font-size: 14px;
    }

    .kontakt-liste {
        border: none;   
        padding: 0;
    }

    .kontakt-liste li {
        font-size: 14px;
    }

    .formular label {
        font-size: 14px;
    }

    .form-group-checkbox label {
        font-size: 10px;
    }

    .submit-btn {
        width: 100%;
    }
}




@media (max-width: 430px) {

    #kontaktformular {
        padding: 56px 20px;
    }
}

/* ********************* Responsivität Footer ********************* */

@media (max-width: 430px) {

    footer {
        width: 90%;
        margin: 0 auto;
    }

    .footer-nav ul {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        padding: 0;
        margin: 0;
    }

    .footer-nav li {
        padding: 0;
        margin: 0;
    }

    .footer-nav a {
        font-size: 12px;
    }
}

/* ********************************************************************* */
/* ********************************************************************* */
/* ****************** Responsivität Seitenleiste Button ****************** */
/* ********************************************************************* */
/* ********************************************************************* */

@media (max-width: 430px) {

    #seitenleiste-btn {
        position: fixed;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        z-index: 1000;
        cursor: pointer;
        background-color: var(--akzent-400);
        padding: 0.5rem 0.75rem;
        display: flex;
        align-items: center;
        justify-content: center;
        border: solid 2px var(--akzent-500);
        border-top-left-radius: 0.75rem;
        border-bottom-left-radius: 0.75rem;
        border-style: outside;
        box-shadow: -4px 0px 12px 0px rgba(0, 0, 0, 0.05);
    }   


    #seitenleiste-btn .material-symbols-outlined {
        font-size: 32px;
        color: var(--akzent-0-weiß);
        font-variation-settings:
        'FILL' 1,
        'wght' 400,
        'GRAD' 0,
        'opsz' 32;
    }

    #seitenleiste-btn:hover {
        background-color: var(--akzent-400);
        border-color: var(--akzent-500);
    }

    #seitenleiste-btn:hover .material-symbols-outlined {
        font-size: 32px;
        color: var(--akzent-500);
        font-variation-settings:
        'FILL' 1,
        'wght' 400,
        'GRAD' 0,
        'opsz' 32;
    }
}

/* ********************* Seitenleiste ********************* */

#seitenleiste {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 700px;
    height: 100%;
    background: var(--akzent-50-hintergrund);
    z-index: 2000;
    box-shadow: -4px 0px 12px 0px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease-in-out;
    transform: translateX(100%);
    overflow-y: auto;
    padding: 128px 0;
    box-sizing: border-box;
    display: none;
}

#seitenleiste.sichtbar {
    display: flex;
    flex-direction: column;
    transform: translateX(0);
    padding-left: 1rem;
    padding-right: 1rem;
}

#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1999;
}

#overlay.sichtbar {
    display: block;
}

#close-seitenleiste-btn {
    position: absolute;
    top: 20px;
    right: 40px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 32px;
    color: var(--primary-black);
    z-index: 2001;
}

#close-seitenleiste-btn .material-symbols-outlined {
    font-size: 48px;
    color: var(--primary-text-color-grau-700);
    font-variation-settings:
    'FILL' 1,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24;
}

.form-container-seitenleiste {
    display: grid;
    grid-template-columns: 1fr;
    background: var(--glass-gradient);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.30);
    box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.visitenkarte-seitenleiste {
    margin: 0;
    padding: 48px;
    border-radius: 24px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    background-color: var(--akzent-0-weiß);
    box-shadow: -2px -2px 5px 0px rgba(0, 0, 0, 0.10), 2px 2px 5px 0px rgba(0, 0, 0, 0.10);
}

.visitenkarte-seitenleiste-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 12px;
}

.seitenleiste-avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
}

.visitenkarte-seitenleiste p {
    margin: 0;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: var(--primary-text-color);
}

.seitenleiste-avatar img {
    width: 100%;
}

#header-visitienkarte-seitenleiste {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    font-style: normal;
    color: var(--primary-text-color);
}

#first-p-seitenleiste {
    width: 100%;
    border-top: 1px solid var(--akzent-300);
    padding-top: 24px;
    text-align: center;
}

.kontakt-liste-seitenleiste {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 24px;
}

.kontakt-liste-seitenleiste li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 500;
    color: var(--grüne-farbe-500);
}

.formular-seitenleiste {
    padding: 48px;
    display: flex;
    flex-direction: column;
    width: auto;
    max-width: 100%;
    box-sizing: border-box;
    flex-grow: 1;
}

.formular-seitenleiste form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row-seitenleiste {
    display: flex;
    gap: 16px;
}

.form-group-seitenleiste {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.formular-seitenleiste label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-text-color);
}

.form-group-checkbox #datenschutz-hacken {
    color: var(--primary-text-color-grau-700);
}

.formular-seitenleiste input[type="text"],
.formular-seitenleiste input[type="email"],
.formular-seitenleiste input[type="tel"],
.formular-seitenleiste textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--akzent-300);
    border-radius: 8px;
    background-color: var(--akzent-0-weiß);
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    box-sizing: border-box;
}

.formular-seitenleiste input:focus,
.formular-seitenleiste textarea:focus {
    outline: none;
    border-color: var(--akzent-500);
}

.formular-seitenleiste textarea {
    resize: vertical;
    min-height: 240px;
}

.form-group-full-width {
    grid-column: 1 / -1;
}

.form-group-checkbox-seitenleiste {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-group-checkbox-seitenleiste input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    accent-color: var(--grüne-farbe-500);
}

.form-group-checkbox-seitenleiste label {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
}

.submit-btn-seitenleiste {
    background-color: var(--primary-black);
    color: var(--akzent-0-weiß);
    border: none;
    padding: 16px 32px;
    border-radius: 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-end;
    letter-spacing: 1px;
    font-family: "Montserrat", sans-serif;
}

.submit-btn-seitenleiste:hover {
    background-color: var(--akzent-500);
}

/* ****************************************************************** */
/* ****************************************************************** */
/* ****************** Responsivität Seitenleiste ****************** */
/* ****************************************************************** */
/* ****************************************************************** */

@media (max-width: 430px) {
    #seitenleiste {
        padding: 96px 48px;
    }

    #seitenleiste.sichtbar {
        width: 100%;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }

    .form-container-seitenleiste {
        width: 100%;
        box-sizing: border-box;
    }

    .visitenkarte-seitenleiste {
        width: 100%;
    }
    
    .visitenkarte-seitenleiste p {
        font-size: 0.875rem;
        text-align: center;
    }
    #first-p-seitenleiste {
        text-align: center;
    }

    .visitenkarte-seitenleiste-container {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }



    .seitenleiste-avatar {
        width: 96px;
        height: 96px;
    }

    .visitenkarte-seitenleiste-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #header-visitienkarte-seitenleiste {
        font-size: 1.5rem;
    }

    .kontakt-liste-seitenleiste .material-symbols-outlined {
        font-size: 20px;
        color: var(--grüne-farbe-500);
        font-variation-settings:
          'FILL' 1,
          'wght' 400,
          'GRAD' 0,
          'opsz' 20;
    }

    .kontakt-liste-seitenleiste {
        text-align: left;
        display: block;
    }

    .kontakt-liste-seitenleiste li {
        font-size: 0.875rem;
        display: flex;
        align-items: flex-start;
        gap: 0.5rem;
    }



    .formular-seitenleiste {
        width: 100%;
        padding-right: 2rem;
        padding-left: 2rem;
    }

    .form-row-seitenleiste {
        flex-direction: column;
    }

    .submit-btn-seitenleiste {
        width: 100%;
    }

    .formular-seitenleiste textarea {
        min-height: 180px;
    }
}