/* Grundlayout */

/* -- Global Styles -- */
:root {
    --primary-color: #d6b752;
    --secondary-color: #f5f5f5;
    --text-dark: #222;
    --text-light: #666;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    letter-spacing: 0;
    color: #000;
}

#home {
    background-image: url('../bilder/icons/background.png');
    background-size: cover;
    background-position: center 30%; /* zeigt nur oberen Drittelbereich */
    background-repeat: no-repeat;
    background-attachment: scroll;

    min-height: 70vh;  /* nicht mehr volle Höhe */
    padding-bottom: 60px;
    text-align: center;
}
#home h1 {
    margin-top: 100px;
    color: var(--text-dark);
    font-size: 3.5em;
}

#home i {
    color: var(--text-dark);
    font-size: 1.5em;
    margin-bottom: 20px;
    font-style: italic;
}

body {
    font-family: "Helvetica Neue", Arial, sans-serif;
    background: var(--secondary-color);
    color: var(--text-dark);
    line-height: 1.6;
}

p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0 0 1rem;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: white;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

body { padding-top: 90px; }

.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
    z-index: 1000;
    padding: 10px 20px;
}

.logo {
    height: 60px;


}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: bold;
    position: relative;
}

nav a::after {
    content: '';
    display: block;
    width: 0%;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
    position: absolute;
    bottom: -4px;
    left: 0;
}

nav a:hover::after {
    width: 100%;
}

/* Hauptinhalt */
.hero{
    text-align: center;
    padding: 100px 20px;
    background: white
}

.hero h1 {
    font-size: 3.8em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.hero i {
    color: var(--text-dark);
    font-size: 1.5em;
    margin-bottom: 20px;
}
.hero p {
    font-size: 1.2em;
    color: var(--text-light);
}

/* Header Text */

.header-text h3 {
    font-weight: larger;
    font-size: 1.7em;
    text-align: center;
    padding: 20px;
    background: white;
    border-bottom: 1px solid #eee;
}

.header-text button {
    background: white;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    position: center;
}

.header-text button:hover {
    background: var(--text-light);
    color: var(--text-dark);
}

.header-text a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: bold;
    position: center;
}

/* -- Sections -- */
section {
    padding: 60px 20px;
}

h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2em;
    color: #000;
    font-weight: 400;
}


.btn  {
    color: var(--text-dark); /* Primärfarbe für den Text */
    text-decoration: none; /* Unterstreichung entfernen */
    font-weight: bold; /* Fettschrift für bessere Sichtbarkeit */
    border-bottom: 2px solid transparent; /* Unterstreichung als Linie */
    transition: border-color 0.3s ease, color 0.3s ease; /* Weicher Hover-Effekt */
}

.btn:hover {
    border-color: var(--primary-color); /* Unterstreichung bei Hover */
}

/* Dienstleistungen */
#leistungen {
    padding: 50px 20px;
    background: #fff;
}

#leistungen h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2em;
}

/* -- Grid Layout for Services -- */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.card {
    background: #fffdf6;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-height: 330px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    display: flex;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.8);
}

.card h2 {
    margin-bottom: 15px;
    color: var(--text-dark);
    font-size: 1.6em;
    text-align: center;
    padding: 10px 5px; /* sorgt für Abstand nach innen */
    hyphens: auto;
    word-wrap: break-word; /* falls das Wort zu lang wird */
}

.card p {
    color: var(--text-dark);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25em;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.2px;
    text-align: center;
    margin: 6px 0;
}



/* Preise */

.accordion-item {
    border-bottom: 1px solid #eee;
}

.accordion-header {
    background: none;
    border: none;
    outline: none;
    width: 100%;
    text-align: left;
    padding: 15px 0;
    font-size: 1.1em;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s ease;    
}

.accordion-header:hover {
    color: var(--primary-color);
}

.accordion-content {
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding:  0 10px;
    color: var(--text-light);
    line-height: 1.5;
}

.treatment {
    margin-bottom: 20px;
}

.treatment-header {
    display: flex;
    justify-content: space-between; /* Abstand zwischen Titel und Preis */
    align-items: center; /* Vertikale Ausrichtung */
    width: 100%;
    gap: 10px;
}

.treatment-row {
    display: flex; /* Flexbox für die horizontale Ausrichtung */
    justify-content: space-between; /* Titel links, Preis rechts */
    margin-bottom: 8px; /* Abstand zwischen Titel und Beschreibung */
}

.treatment-title {
    font-size: 1.1em;
    text-align: left;
    color: var(--text-light);
    font-style: italic;
}

.price {
    color: var(--text-dark);
    text-align: right;
    font-weight: bold;
    font-size: 1.1em;
    text-align: right;
    min-width: 80px;
}

.accordion-content p {
    margin: 5px 0;
    font-weight: bold;
}

.accordion-item.active .accordion-content {
    max-height: 200px; /* Angepasste Höhe für den Inhalt */
    padding: 15px 10px;
}


.accordion-description {
    font-size: 0.9em;
    font-style: italic;
    color: var(--text-light);
}

/* about */
#about {
    text-align: center;
}

#about a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: bold;
    font-style: italic;
    position: center;
}

#about a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Kontakt */
#kontakt {
    padding: 50px 20px;
    background: white;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    text-align: center;
}

#kontakt p {
    text-align: center;
    font-size: 1.1em;
    color: var(--text-dark);
    margin-bottom: 10px;
}

#kontakt a {
    color: #3a7ca5;
    text-decoration: none;
}

#kontakt a:hover {
    color: var(--primary-color);
}


#kontakt h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2em;
}

.whatsapp-icon {
    width: 20px;
    height: auto;
    text-align: center;
    margin-top: 20px 0;
}

/* Social Media Icons */
.social-media {
    text-align: center;
    margin-top: 20px 0;
}

.social-icon {
    width: 50px;
    height: auto;
}

.social-media a {
    margin: 0 10px;
    color: var(--text-dark);
    font-size: 1.5em;
    transition: color 0.3s ease;
}

.social-media a:hover {

    padding: 5px;
    transition: all 0.3s ease;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: white;
    color: var(--text-light);
    border-top: 1px solid black;
    font-size: 0.9em;
}

footer a {
    color: #3a7ca5; /* Primärfarbe für den Text */
    text-decoration: none; /* Unterstreichung entfernen */
    font-weight: bold; /* Fettschrift für bessere Sichtbarkeit */
    border-bottom: 2px solid transparent; /* Unterstreichung als Linie */
    transition: border-color 0.3s ease, color 0.3s ease; /* Weicher Hover-Effekt */
}
footer a:hover {
    border-color: var(--primary-color); /* Unterstreichung bei Hover */
}

.about-logo {
    text-align: center;
    margin-bottom: 20px;
}

.about-logo img {
    height: 85px;
    width: auto;
    display: inline-block;
}
.prose {
    max-width: 70ch;
    margin: 0 auto;
    padding: 24px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}
.prose h1 { font-size: 2.2rem; margin-bottom: .75rem; }
.prose h2 { font-size: 1.6rem; margin: 1.5rem 0 .75rem; text-align: left; color: #000; }
.prose ul { padding-left: 1.2rem; margin: .5rem 0 1rem; }
.prose li { margin: .35rem 0; }
.prose a { color: inherit; border-bottom: 1px solid var(--primary-color); text-decoration: none; }
.prose a:hover { border-color: transparent; }

.page-hero {
    position: relative;
    padding: 140px 20px;
    background: #fff;
    overflow: hidden;
}
.page-hero.small { padding: 110px 20px; }
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../bilder/icons/background.png');
    background-size: cover;
    background-position: center 30%;
    opacity: .15; /* dezente Einbindung des Bildes */
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: 2.4rem; margin-bottom: .5rem; }
.page-hero p { font-size: 1.1rem; color: var(--text-dark); opacity: .9; }