
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('poppins/poppins-regular-webfont.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('poppins/poppins-regular-webfont.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('poppins/poppins-bold-webfont.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('poppins/poppins-bold-webfont.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('poppins/poppins-semibold-webfont.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('poppins/poppins-semibold-webfont.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --primary-color: #1D3557;
    --primary-light: #457B9D;
    --primary-lighter: #A8DADC;
    --primary-dark: #0B253A;
    --accent-color: #E63946;
    --accent-light: #F57F82;
    --background-color: #F8F9FA;
    --background-dark: #E5E5E5;
    --text-color: #343A40;
    --text-light: #6C757D;
    --hover-color: #2C5985;
    --success-color: #2D6A4F;
    --warning-color: #FFB703;
    --error-color: #D62828;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}
h2, h3, h4, h5, h6 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-all;
    hyphens: auto;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--hover-color);
}

button {
    font-family: inherit;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

button.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

button.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

button.btn-secondary {
    background-color: var(--primary-lighter);
    color: var(--primary-dark);
}

button.btn-secondary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

button.btn-accent {
    background-color: var(--accent-color);
    color: #fff;
}

button.btn-accent:hover {
    background-color: var(--accent-light);
    transform: translateY(-2px);
}

.card {
    background-color: #fff;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.card-text {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.5;
}

input, textarea, select {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    margin-bottom: 1rem;
    border: 1px solid var(--primary-lighter);
    border-radius: 5px;
    background-color: var(--background-color);
    color: var(--text-color);
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 4px var(--primary-light);
}

.footer {
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}

.footer a {
    color: var(--accent-color);
}

.footer a:hover {
    color: var(--primary-lighter);
    text-decoration: underline;
}

.static-nav {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nav-icon {
    background-color: var(--primary-color);
    padding: 0.5rem;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.nav-icon img {
    width: 24px;
    height: 24px;
}

.nav-icon:hover {
    background-color: var(--primary-light);
    transform: scale(1.1);
}

.modal-content {
    border-radius: 10px;
    border: none;
}

.modal-header {
    background-color: var(--primary-color);
    color: #fff;
    border-bottom: none;
    padding: 1rem 1.5rem;
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    border-top: none;
    padding: 1rem 1.5rem;
}

.modal-footer .btn {
    font-size: 1rem;
}

.section {
    padding: 3rem 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.section-alt {
    background-color: var(--primary-lighter);
    color: var(--primary-dark);
}



.immo-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.immo-list li {
    position: relative;
    padding: 10px 0 10px 40px;
    margin-bottom: 10px;
    background-color: var(--background-color);
    border-left: 4px solid var(--primary-color);
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.immo-list li:hover {
    background-color: var(--primary-light);
    border-color: var(--accent-color);
    color: #fff;
}

.immo-list li::before {
    content: "✔";
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.immo-list li:hover::before {
    color: #fff;
}


#branchen {
    padding: 2.5rem 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

#branchen h2 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
}

#branchen p {
    font-size: 1rem;
    color: var(--text-light);
}

.card {
    background-color: #ffffff;
    border: none;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
}

.card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
}

small {
    color: var(--text-secondary);
    font-size: 0.85rem;
}



#info-note {
    background-color: #1D3557;
    color: #ffffff;
    border-radius: 10px;
    padding: 3rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    animation: fadeIn 1.2s ease-in-out;
}

.info-container {
    max-width: 800px;
    margin: 0 auto;
}

.info-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFD700;
}

.info-text {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.info-highlight {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.6;
    color: #A8DADC;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.btn {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    background-color: #FFD700;
    border: none;
    color: #1D3557;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #FFC300;
    color: #ffffff;
    transform: scale(1.05);
}


@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}




#header {
    background-color: #1D3557;
    color: #ffffff;
    padding: 3rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1.2s ease-in-out;
}

#header .header-content {
    max-width: 800px;
    margin: 0 auto;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1D3557;
    margin-bottom: 1rem;
}

#header p {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
    color: #A8DADC;
}

#header .btn {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    background-color: #FFD700;
    color: #1D3557;
    border: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

#header .btn:hover {
    background-color: #FFC300;
    color: #ffffff;
    transform: scale(1.05);
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}





#footer {
    background-color: #1D3557; 
    color: #F1FAEE; 
    padding: 3rem 1.5rem;
    border-radius: 10px;
}
#footer p {
    font-size: 1rem;
    color: #F1FAEE;
    margin-bottom: 1rem;
}

#footer a {
    font-size: 1rem;
    color: #A8DADC;
    text-decoration: none;
}

#footer a:hover {
    color: #FFD700;
    text-decoration: underline;
}
.footer-content, .footer-content p{
    color: #FFD700 !important;
}

#footer .btn {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    background-color: #457B9D; 
    color: #ffffff;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#footer .btn:hover {
    background-color: #A8DADC; 
    color: #1D3557;
}

.footer-nav .list-inline-item {
    margin: 0 15px;
}

.footer-nav .list-inline-item a {
    font-size: 0.95rem;
    color: #F1FAEE;
}

.footer-nav .list-inline-item a:hover {
    color: #FFD700;
}






.modal-content {
    background-color: #F8FAFC;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    color: #1D3557;
}

.modal-header {
    background-color: #1D3557;
    color: #F1FAEE;
    font-size: 1.25rem;
    font-weight: 600;
    border-bottom: 2px solid #457B9D;
}

.modal-title {
    font-size: 1.5rem;
    color: #F1FAEE;
}

.modal-body {
    padding: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    color: #1D3557;
}

.modal-body p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #457B9D;
}

.modal-body p:first-child {
    font-weight: 500;
    font-size: 1.2rem;
    color: #1D3557;
}

.modal-body a {
    color: #457B9D;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
}

.modal-body a:hover {
    color: #A8DADC;
}

.modal-footer {
    background-color: #F8FAFC;
    border-top: 1px solid #A8DADC;
    text-align: right;
    padding: 1rem;
}

.modal-footer .btn {
    font-size: 1rem;
    font-weight: 600;
    background-color: #457B9D;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    padding: 0.8rem 1.5rem;
    transition: all 0.3s ease;
}

.modal-footer .btn:hover {
    background-color: #1D3557;
    color: #FFD700;
}


/* Vorteile */

.connect-container .connect-header h2{
    color: #fff;
}
.connect-header {
    text-align: center;
    background: var(--primary-color);
    color: #fff;
    padding: 20px;
    border-radius: 5px;
}

.connect-intro {
    text-align: center;
    padding: 15px;
    font-size: 1.2em;
    color: #444;
}

/* Vorteile */
.connect-benefits {
    padding: 20px;
}

.connect-benefit {
    margin-bottom: 20px;
    padding: 15px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.connect-benefit h3 {
    margin: 0 0 10px;
    color: var(--primary-color);
}

.connect-benefit p {
    margin: 0 0 10px;
}

.connect-benefit a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: bold;
}

.connect-benefit a:hover {
    color: #ff6600;
}

/* Call to Action */
.connect-call-to-action {
    text-align: center;
    background: #eee;
    padding: 20px;
    margin-top: 20px;
    border-radius: 5px;
}

.connect-contact {
    text-align: center;
    padding: 20px;
}

.connect-button {
    display: inline-block;
    padding: 10px 20px;
    background: #ff6600;
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 5px;
}

.connect-button:hover {
    background: #cc5500;
}

/* Footer */
.connect-footer {
    text-align: center;
    padding: 10px;
    background: var(--primary-color);
    color: white;
    margin-top: 20px;
    border-radius: 5px;
}
