/* =============================================
   GOOGLE FONT – dünne elegante Schrift
============================================= */
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600;700&display=swap');

/* =============================================
   RESET + BASE
============================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    background: #fafafa;
    color: #222;
    line-height: 1.6;
    font-size: 20px;
    font-weight: 300;
}

h2 {
    font-weight: 300;
    letter-spacing: 0.3px;
}

/* =============================================
   TOPBAR
============================================= */
.topbar {
    width: 100%;
    height: 90px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3000;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar-logo {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.topbar-text h2 {
    color: #1f4e79;
    margin: 0;
    padding: 0;
    line-height: 1.1;
}

#menu-button {
    background: rgba(0, 0, 0, 0.45);
    border: none;
    color: white;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 26px;
    cursor: pointer;
    backdrop-filter: blur(5px);
    z-index: 4000;
}

#menu-button:hover {
    background: rgb(4, 4, 4);
}

/* =============================================
   SIDE MENU
============================================= */
#menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 260px;
    height: 100%;
    background: #1f4e79;
    backdrop-filter: blur(6px);
    padding-top: 120px;
    display: flex;
    flex-direction: column;
    transition: 0.3s ease;
    z-index: 3500;
}

#menu.hidden {
    right: -300px;
}

#menu a {
    color: white;
    text-decoration: none;
    padding: 18px 22px;
    font-size: 19px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

#menu a:hover {
    background: rgba(255,255,255,0.12);
}

/* =============================================
   SECTIONS
============================================= */
section {
    width: 100%;
}



.img-section {
    width: 100%;
    height: 70vh;
    background-size: cover;
    background-position: center;
    padding: 0;
    margin: 0;
}

#hero-image {
    margin-top: 90px;
    height: 70vh; /* oder 80vh oder 65vh – justieren wie du willst */
    background-size: cover;
    background-position: top;
}

.img-section:last-of-type {
    height: 50vh;
}

/* =============================================
   WILLKOMMEN
============================================= */
.welcome-section {
    background: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding-top: 90px;
    padding-bottom: 90px;
}

.big-round {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #e8e8e8;
}

/* =============================================
   BLUE BLOCKS (Therapie / Behandlung / Kontakt)
============================================= */
.blue-section {
    background: #f1f4f1;
    padding-top: 70px;
    padding-bottom: 70px;
}

.blue-section h2 {
    color: #1f4e79;
    font-size: 32px;
    text-align: center;
    margin-bottom: 25px;
}

.blue-section h3 {
    color: #1f4e79;
    font-size: 22px;
    margin-top: 18px;
    margin-bottom: 6px;
    font-weight: 200;
}

.blue-section p {
    margin-bottom: 12px;
    font-size: 18px;
}

/* =============================================
   KONTAKT – FINAL PERFECT
============================================= */

/* KONTAKT Überschrift in der Mitte */

#contact h2 {
    text-align: center;
    width: 280%;
    margin-bottom: 40px;
}

/* 2 Spalten unter der Überschrift */
#contact.contact-grid,
#contact .contact-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 140px; /* symmetrischer Abstand links/rechts */
}

/* Linke Spalte leicht nach rechts */
#contact .contact-left {
    text-align: left;
    margin-left: 40px;
}

/* Rechte Spalte NICHT verschieben */
#contact .contact-right {
    text-align: left;
    margin-top: 90px;
}

/* Buttons */
#contact .btn-blue,
#contact .btn-blue-outline {
    display: inline-block;
    min-width: 160px;
}

#contact .btn-blue-outline {
    margin-top: 10px;
}

/* =============================================
   FOOTER
============================================= */
.footer {
    width: 100%;
    background: #ffffff;
    padding: 30px;
    border-top: 1px solid #ccc;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer a {
    font-size: 18px;
    color: #1f4e79;
}

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

/* =============================================
   MOBILE
============================================= */
@media (max-width: 900px) {

    .welcome-section {
        flex-direction: column;
        text-align: center;
    }

    .big-round {
        width: 260px;
        height: 260px;
    }

    .img-section {
        height: 50vh;
    }

    #contact .contact-grid {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    #contact .contact-left,
    #contact .contact-right {
        margin-left: 0;
        text-align: center;
    }
}

/* =============================================
   BUTTON FIX – wieder schön wie vorher
============================================= */

.btn-blue {
    display: inline-block;
    background: #1f4e79;
    color: #ffffff;
    padding: 14px 26px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600; /* wieder schön kräftig */
    letter-spacing: 0.3px;
    transition: 0.2s ease;
}

.btn-blue:hover {
    background: #163956;
    transform: translateY(-1px);
}

.btn-blue-outline {
    display: inline-block;
    background: transparent;
    color: #1f4e79;
    border: 2px solid #1f4e79;
    padding: 14px 26px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600; /* ebenfalls schön kräftig */
    letter-spacing: 0.3px;
    transition: 0.2s ease;
}

.btn-blue-outline:hover {
    background: #d0e2f7;
    transform: translateY(-1px);
}

/* Pfeile vor allen H3 im Therapieangebot */
#offers h3::before {
    content: "→";
    margin-right: 10px;
    color: #1f4e79;
    font-weight: 400;
    position: relative;
    top: -1px;
    margin-left: 50px;
}

/* p-Texte passend zur H3-Ausgerichtet */
#offers p {
    margin-left: 50px; /* exakt hinter dem Pfeil */
}

/* Behandlung – Text komplett zentriert */
#treatments p {
    text-align: center;
    margin-left: 0;   /* falls vorher was verschoben war */
    margin-right: 0;
}


.full-img {
    width: 100%;
    height: auto;
    display: block;
}



#contact.blue-section {
    padding-top: 0 !important;
}
/*

section.img-section {
    padding: 0 !important;
    margin: 0 !important;
}
 */




section.img-section img.full-img {
    display: block;
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
}





