:root {
    --bg-color: #310D09;
    --text-main: #F2E1D2;
    --text-sub: #C5A593;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
    margin: 0;
    padding: 0;
}

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

html {
    scroll-behavior: smooth;
}

@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/montserrat-v31-latin-regular.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 400;
  src: url('/fonts/montserrat-v31-latin-italic.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  src: url('/fonts/montserrat-v31-latin-600.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: url('/fonts/montserrat-v31-latin-700.woff2') format('woff2');
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Montserrat', sans-serif;
    padding-top: 240px !important; 
    text-align: center;
}

.mobile-break {
    display: none;
}

p a {
    color: #F2E1D2; 
    text-decoration: underline; 
    font-weight: bold;
}


p a:hover {
    color: #F2E1D2;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #310D09;
    display: flex;
    flex-direction: column;
    align-items: center;  /* Zentriert die Container */
    justify-content: center;
    padding: 20px 0;
    box-sizing: border-box;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.logo {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

h1 {
    font-size: clamp(1.2rem, 2.0vw, 1.4rem);    
    letter-spacing: 0.08em;   
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

h2 {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-sub);
    margin-bottom: 30px;
    font-size: 1.2rem;
}

h3 {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    font-size: 1.0rem;
}

nav {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: transparent;
    padding: 10px 0;
}

nav a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding-bottom: 4px;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

nav a:hover {
    color: var(--text-sub);
    border-bottom: 1px solid var(--text-sub);
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 30px;
}

nav ul li {
    list-style: none;
    padding: 0;
    margin: 0;
}

main {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

section {
    padding: 80px 0;
    scroll-margin-top: 120px;
}

footer {
    padding: 20px 20px;
    font-size: 0.8rem;
    color: var(--text-main);
    opacity: 0.8; 
}

#faq {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center; /* Hält die Überschriften mittig */
}

.faq-container {
    margin-top: 40px;
    text-align: left; /* Antworten und Fragen lieber linksbündig lesen */
}

.faq-item {
    border-bottom: 1px solid rgba(197, 165, 147, 0.3);
    padding: 10px 0;
}

.faq-question {
    background: none;
    border: none;
    color: var(--text-main);
    font-family: inherit;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    outline: none;
    width: 100%;
    text-align: left;  
    text-wrap: pretty;  
    line-height: 1.4;
}

.faq-question:focus {
    outline: none; /* Entfernt den hässlichen Standard-Rahmen beim Klicken */
}

.faq-answer {
    display: none; /* Versteckt die Antwort initial */
    padding: 0 0 20px 0;
    color: var(--text-main);
    opacity: 0.8;
    line-height: 1.8; /* Gibt dem Text mehr Luft zum Atmen */
    margin-top: 10px;
}

.faq-question::after {
    content: '+';
    font-size: 1.2rem;
    color: var(--text-sub);
}

.faq-item.active .faq-question::after {
    content: '-';
}

.copyright {
    margin-top: 40px;    
    line-height: 1.8;    
    font-size: 0.8rem;  
    opacity: 0.8;      
    letter-spacing: 0.05em;
    text-align: center;
    width: 100%;
}

.copyright a {
    color: inherit;
    text-decoration: underline;
}

.hero-text {
    font-size: clamp(0.75rem, 2.0vw, 1.0rem);
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 10px;    /* Reduziert den Platz zum Sprachschalter */
    margin-bottom: 25px; /* Kompakterer Abstand zum Button */
    padding: 0 20px;     /* Seitenschutz für Mobile */
    text-align: center;
}

.hero-text p {
    margin: 0 !important;
    display: inline-block;
}


.no-wrap {
	display: inline-block;
	white-space: nowrap;
	letter-spacing: 0.02em;
}

.cta-button {
    display: inline-block;
    border: 1px solid var(--text-sub);
    padding: 18px 40px;
    color: var(--text-sub);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.cta-button:hover {
    background-color: var(--text-sub);
    color: var(--bg-color);
}

.about-text {
    text-align: left;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-text p {
    margin-bottom: 20px;
}

.about-img {
    display: flex;
    flex-wrap: wrap;   
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
}

.about-img img {
    background-color: #FFFFFF !important;
    padding: 10px !important;
    border: 1px solid rgba(197, 165, 147, 0.4) !important;
    display: block !important;
    flex: 0 1 auto; 
    max-width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
    margin: 0 !important;
}

.usp-list {
    list-style: none;
    margin-top: 30px;
}

.usp-list li {
    margin-bottom: 15px;
}

.usp-list strong {
    color: var(--text-sub);
    display: block;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.insta-link {
    color: var(--text-main);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.insta-link:hover {
    border-bottom: 1px solid var(--text-main);
}

.intro-text {
    margin-bottom: 50px;
    text-align: left;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1.4;
    font-size: 0.95rem;
}

.intro-text i {
    color: var(--text-sub);
}

.class-item {
    margin-bottom: 35px;
    border-left: 1px solid var(--text-sub);
    padding-left: 20px;
    transition: transform 0.3s ease;
}

.class-item:hover {
    transform: translateX(5px);
}

.class-title {
    color: var(--text-sub);
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.class-description {
    color: var(--text-main);
    font-size: 0.95rem;      
    letter-spacing: 0.04em;
    opacity: 0.9;
    text-align: left;     
}
        
#impressum {
    padding-bottom: 60px;
}

#impressum h3 {
    color: var(--text-sub);
    font-size: 1.1rem;
}

#impressum p {
    color: var(--text-main); 
    font-size: 0.95rem;
    line-height: 1.6;
}

#impressum strong {
    color: var(--text-main);
    letter-spacing: 0.05em;
}

.logo img {
    width: 100%;
    max-width: 450px; /* Deine gewünschte Desktop-Größe */
    height: auto;
    display: block;
}

.lang-switch {
    margin-left: 20px; /* Abstand zur restlichen Nav */
    font-weight: 600;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
}

.lang-link {
    color: var(--text-main);
    text-decoration: none;
    transition: opacity 0.3s ease;
    opacity: 0.6;
}

.lang-link:hover {
    opacity: 1;
}

.lang-divider {
    color: var(--text-main);
    margin: 0 2px;
    opacity: 0.3;
}

.lang-link.active {
    opacity: 1 !important;
    font-weight: 700;
}

#calendar-booking * {
    color: inherit !important;
    background-color: inherit !important;
}
 
#calendar-booking {
    background-color: #ffffff !important;
    color: #333333 !important;      
    text-align: left !important;     
    padding: 40px 20px;
    border-radius: 8px;
    margin: 20px auto;
    max-width: 1200px;
}

#calendar-booking * {
    text-align: initial !important;
    color: initial !important;
    font-family: sans-serif; /* Oft besser für Buchungssysteme */
    box-sizing: border-box;
}

#calendar-booking button {
    text-transform: none !important;
    letter-spacing: normal !important;
}

section#location {
    border: 1px solid rgba(242, 225, 210, 0.2);
    padding: 60px 40px !important; 
    margin: 60px auto !important;
    max-width: 900px;
    border-radius: 4px;
    display: block;
}

.location-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    text-align: left;
    font-size: 0.9rem;
    color: var(--text-main);
    line-height: 1.8;
    align-items: flex-start;
}

.location-info {
    flex: 1 1 350px;
}

.location-map {
    flex: 1 1 350px;
    width: 100%;
    min-height: 450px;
    display: flex;
}

.location-map iframe, 
.map-placeholder {
    width: 100%;
    height: 450px;
    border-radius: 4px;
    border: none;
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(242, 225, 210, 0.05);
}

.btn-map {
    background-color: var(--text-main);
    color: black;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 10px;
}


@media (max-width: 600px) {
    body {
        padding-top: 200px !important;
    }

    header {
        padding: 15px 0 10px 0 !important;
    }

    .logo img {
        width: 80% !important; 
        max-width: 280px; 
        height: auto !important;
        margin: 0 auto;
        display: block;
    }

    nav {
        padding: 5px 0 !important;
    }

    nav ul {
        flex-direction: row;
        flex-wrap: wrap; 
        justify-content: center;
        width: 100%;
        margin-top: 5px !important;
        gap: 5px 10px !important;
    }
    
    nav ul li {
        margin: 5px;
    }
    
    .mobile-break {
        display: block;      
        font-size: 0.9rem; 
        margin-top: 5px;  
        opacity: 0.8;       
    }
    
    section#location {
        border: none !important; 
        border: 1px solid rgba(197, 165, 147, 0.4) !important; 
        margin: 100px 15px 20px 15px !important; 
        padding: 20px !important;
        max-width: calc(100% - 30px);
        box-sizing: border-box;
        display: block;
    }
    
    .location-container {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    .location-info p {
        margin-top: 0 !important;
        margin-bottom: 10px !important;
    }
    
    .location-map, 
    .map-placeholder {
        width: 100%;
        height: 300px !important;
        min-height: 300px !important;
    }

    .location-map iframe {
        height: 300px !important;
        margin-top: 0 !important;
    }
    
    .map-placeholder {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: rgba(242, 225, 210, 0.1);
        border-radius: 4px;
    }
    
    .map-placeholder p {
    text-align: center;
    margin-bottom: 20px;
    width: 100%;
    }
    
    .btn-map {
        width: 80%;
        padding: 15px; 
    }
    
    .hero-text {
        box-sizing: border-box;
    }

    .hero-text p, 
    .hero-text span 
    
    .no-wrap {
        white-space: normal !important; /* Erlaubt den Zeilenumbruch */
        display: inline-block !important;
        text-align: center;
        width: 100%;
    }

    section {
        padding: 25px 15px !important; 
    }

    .about-img {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .about-img img {
        max-width: 90% !important;
        height: auto !important;
        margin-bottom: 20px !important;
        box-sizing: border-box;
    }
    
    .lang-switch {
        margin-left: 0;
        margin-top: 10px !important;  
        margin-bottom: 15px !important;
        width: 100%; 
        text-align: center;
        display: flex;
        justify-content: center;
        gap: 15px;               
    }
    
    .lang-link {
    color: var(--text-main);
    text-decoration: none;
    transition: opacity 0.3s ease;
    opacity: 0.4;                   /* Inaktive Sprache deutlich dezenter */
    font-size: 0.85rem;
    letter-spacing: 0.1em;
}

    .lang-link.active {
        opacity: 1 !important;          /* Aktive Sprache leuchtet hervor */
        font-weight: 700;
        border-bottom: 1px solid var(--text-sub); /* Kleine optische Markierung */
        padding-bottom: 2px;
    }
    
    .lang-divider {
        color: var(--text-sub);
        opacity: 0.5;
        font-size: 0.8rem;
    }
    
}

@media (max-width: 380px) {
    .hero-text {
        font-size: 0.8rem;
        letter-spacing: 0;
    }
