/* 
 * Irina Veit - Rebirthing Breathwork
 * Farbpalette:
 * - Beige: #E7DCCB
 * - Cremeweiß: #F8F5F0
 * - Taupe: #D0C5B4
 * - Karamell-Nude: #EBD9C2
 * - Champagner-Gold: #E6D9B8
 */

:root {
    --beige: #E7DCCB;
    --creme: #F8F5F0;
    --taupe: #D0C5B4;
    --karamell: #EBD9C2;
    --gold: #E6D9B8;
    --dark-brown: #3A2B27; /* newly added consistent dark text color */
    --text-dark: #3A3A3A;
    --text-light: #6E6E6E;
    --text-spacing: 0.2px;
    --heading-spacing: 0.3px;
}

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

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: var(--dark-brown);
    background-color: var(--creme);
    letter-spacing: var(--text-spacing);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    line-height: 1.3;
    color: var(--dark-brown);
    letter-spacing: var(--heading-spacing);
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1.2rem;
    font-weight: 300;
}

a {
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--text-light);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
}

/* Header & Navigation */
header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    background-color: rgba(248, 245, 240, 0.95);
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 500;
}

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

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.cta-button {
    background-color: var(--beige);
    padding: 10px 20px;
    border-radius: 0;
}

.cta-button:hover {
    background-color: var(--taupe);
    color: white;
}

/* Sections */
section {
    padding: 40px 0;
}

.section-title {
    margin-bottom: 50px;
    text-align: center;
}

.section-title h2 {
    font-weight: 500;
    margin-top: 5px;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background-color: var(--dark-brown);
    opacity: 0.3;
}

.section-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--dark-brown);
    opacity: 0.8;
    margin-bottom: 5px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--creme);
    position: relative;
    overflow: hidden;
    padding: 40px 0;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
    gap: 60px;
}

.hero-content {
    width: 45%;
    padding: 40px;
    background-color: rgba(248, 245, 240, 0.85);
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--taupe);
}

.hero-content h1 {
    margin-bottom: 30px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.hero-image-container {
    width: 55%;
    height: 80vh;
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-motto {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    color: var(--text-light);
}

/* Two Columns Layout */
.two-columns {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.column {
    flex: 1;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background-color: white;
    padding: 30px;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--gold);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Quote Box */
.quote-box {
    background-color: white;
    padding: 40px;
    border-radius: 0;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 20px;
}

.quote-author {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

/* Offerings */
.offerings {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 40px;
}

.offering-card {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background-color: white;
    border-radius: 2px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

.offering-card h3 {
    margin: 20px 0 5px;
    padding: 0 20px;
}

.offering-duration {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
    padding: 0 20px;
}

.offering-card p {
    padding: 0 20px;
    margin-bottom: 20px;
}

.offering-details {
    list-style-type: none;
    padding: 0 20px 20px;
    margin: 0;
    flex-grow: 1;
}

.offering-details li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.offering-details li:last-child {
    border-bottom: none;
}

.offering-card .btn {
    margin: 0 20px 20px;
}

/* Preparation Box */
.preparation-box {
    background-color: white;
    padding: 40px;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.preparation-list {
    list-style: none;
    margin: 20px 0;
}

.preparation-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--creme);
    position: relative;
    padding-left: 30px;
}

.preparation-list li:before {
    content: "•";
    position: absolute;
    left: 10px;
    color: var(--taupe);
}

.preparation-list li:last-child {
    border-bottom: none;
}

.note {
    font-size: 0.9rem;
    font-style: italic;
    background-color: var(--beige);
    padding: 15px;
    border-radius: 0;
}

/* About Section */
.about-content {
    display: flex;
    gap: 40px;
}

.about-image {
    flex: 1;
}

.about-text {
    flex: 1;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 5px;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

input, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--taupe);
    border-radius: 0;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--text-dark);
}

/* Button Styles */
.btn {
    display: inline-block;
    background-color: var(--taupe);
    color: white;
    padding: 12px 25px;
    border-radius: 0;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    background-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--taupe);
}

.btn-outline:hover {
    background-color: var(--taupe);
    color: white;
}

/* Footer */
footer {
    background-color: var(--beige);
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

footer ul {
    display: flex;
    list-style: none;
}

footer ul li {
    margin-left: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-container {
        padding: 0 30px;
        gap: 40px;
    }
    
    .hero-content {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--creme);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease;
        z-index: 1000;
        padding-top: 80px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 20px 0;
        text-align: center;
    }
    
    .nav-menu li a {
        font-size: 1.2rem;
        padding: 15px 30px;
        display: block;
    }
    
    .language-switch {
        margin-top: 40px;
        padding-top: 20px;
        border-top: 1px solid var(--beige);
    }
    
    .language-switch a {
        background-color: var(--beige);
        border-radius: 25px;
        padding: 12px 24px;
        font-weight: 600;
    }

    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    h4 {
        font-size: 1.2rem;
    }
    
    .hero {
        padding: 100px 0 40px;
    }
    
    .hero-container {
        flex-direction: column;
        padding: 0 20px;
        gap: 30px;
    }
    
    .hero-content {
        width: 100%;
        padding: 30px;
        margin-bottom: 0;
        text-align: center;
        order: 2;
    }
    
    .hero-image-container {
        width: 100%;
        height: 40vh;
        order: 1;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    nav {
        justify-content: space-between;
        align-items: center;
    }
    
    .two-columns,
    .about-content {
        flex-direction: column;
    }
    
    .benefits-grid,
    .process-steps,
    .offerings,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    footer ul {
        margin-top: 20px;
    }
    
    .offerings {
        gap: 20px;
    }
    
    .offering-card {
        min-width: 100%;
    }
}

/* Legal Pages */
.legal-section {
    margin-top: 100px;
    padding: 60px 0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

.legal-content h2 {
    margin-top: 40px;
    font-size: 1.8rem;
    color: var(--dark-brown);
}

.legal-content h3 {
    margin-top: 30px;
    font-size: 1.5rem;
    color: var(--dark-brown);
}

.legal-content h4 {
    margin-top: 20px;
    font-size: 1.2rem;
    color: var(--dark-brown);
}

.legal-content p, .legal-content ul {
    margin-bottom: 15px;
}

.legal-content ul {
    padding-left: 20px;
}

.legal-content ul li {
    margin-bottom: 10px;
}

.back-link {
    margin-top: 40px;
    text-align: center;
}

/* Language Switcher */
.language-switch a {
    font-weight: 600;
    padding: 5px 8px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.language-switch a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

footer ul li:last-child a {
    font-weight: 700;
}

/* Add FAQ styles after the preparation-box styles */
/* FAQ Section */
.faq-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.faq-item {
    background-color: white;
    padding: 30px;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .faq-container {
        grid-template-columns: 1fr;
    }
}

/* Add Vertiefung Section Styles */
.intro-text {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
}

.section-subheading {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    text-align: center;
}

.impact-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.impact-card {
    background-color: white;
    padding: 30px;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.impact-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
}

.impact-card p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.impact-card p:last-child {
    margin-bottom: 0;
}

.conclusion-box {
    background-color: white;
    padding: 40px;
    border-radius: 0;
    text-align: center;
    max-width: 800px;
    margin: 40px auto 0;
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.8;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
    .impact-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .impact-container {
        grid-template-columns: 1fr;
    }
    
    .intro-text, 
    .conclusion-box {
        font-size: 1.1rem;
    }
}

/* Responsive adjustments for legal pages */
@media (max-width: 768px) {
    .legal-section {
        margin-top: 80px;
        padding: 40px 0;
    }
    
    .legal-content h2 {
        font-size: 1.6rem;
    }
    
    .legal-content h3 {
        font-size: 1.3rem;
    }
}

/* Accordion Styles */
.accordion-container {
    margin: 45px 0;
}

.accordion {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 16px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    background-color: rgba(255, 255, 255, 0.8);
    transition: box-shadow 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.accordion-item.active {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 22px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: rgba(255, 255, 255, 1);
}

.accordion-header h4 {
    margin: 0;
    font-size: 1.3rem;
    color: var(--dark-brown);
    font-weight: 500;
}

.accordion-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--dark-brown);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

/* Accordion Content Improvements */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.5s ease, padding 0.5s ease;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    color: var(--dark-brown);
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    padding: 5px 20px 20px;
}

.accordion-content p {
    margin-bottom: 12px;
    line-height: 1.6;
    font-size: 1rem;
}

.accordion-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .container {
        padding: 40px 0;
    }
    
    section {
        padding: 30px 0;
    }
    
    .section-title {
        margin-bottom: 40px;
    }
    
    .understanding-intro {
        padding: 25px;
        margin-bottom: 35px;
    }
    
    .accordion-container {
        margin: 35px 0;
    }
    
    .accordion-item {
        margin-bottom: 14px;
    }
    
    .accordion-header {
        padding: 14px 18px;
    }
    
    .accordion-header h4 {
        font-size: 1.2rem;
    }
    
    .accordion-item.active .accordion-content {
        padding: 0 15px 15px;
    }
}

/* Understanding Section Styles */
.understanding-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 10px 0 40px;
}

.understanding-intro {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 35px;
    border-radius: 8px;
    margin-bottom: 45px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.featured-text {
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 300;
    color: var(--dark-brown);
    font-family: 'Lato', sans-serif;
    margin-bottom: 20px;
    letter-spacing: var(--text-spacing);
}

.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--dark-brown), transparent);
    margin: 25px 0;
    opacity: 0.3;
}

.understanding-intro h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: var(--dark-brown);
    font-weight: 500;
}

.understanding-intro p:not(.featured-text) {
    font-size: 1.05rem;
    line-height: 1.6;
}

.explore-heading {
    text-align: center;
    margin: 30px 0;
    font-size: 1.4rem;
    color: var(--dark-brown);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.conclusion-box {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 25px 30px;
    border-radius: 8px;
    margin-top: 40px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.conclusion-box p {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--dark-brown);
    margin: 0;
    line-height: 1.6;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {
    .understanding-intro {
        padding: 20px;
    }
    
    .featured-text {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .understanding-intro h3 {
        font-size: 1.4rem;
    }
    
    .explore-heading {
        font-size: 1.3rem;
    }
    
    .conclusion-box {
        padding: 20px;
    }
    
    .conclusion-box p {
        font-size: 1.2rem;
    }
}

/* Bridge Section */
.bridge-section {
    background-color: #f0f0f0;
    padding: 60px 20px;
    text-align: center;
}

.bridge-text {
    font-size: 1.8rem;
    line-height: 1.5;
    color: #000;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    letter-spacing: var(--heading-spacing);
    font-style: italic;
    position: relative;
    padding: 0 20px;
}

.bridge-text:before,
.bridge-text:after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background: #000;
    opacity: 0.6;
    margin: 30px auto;
}

@media (max-width: 768px) {
    #bridge {
        padding: 40px 0;
    }
    
    .bridge-text {
        font-size: 1.5rem;
        padding: 0 15px;
    }
    
    .bridge-text:before,
    .bridge-text:after {
        width: 40px;
        margin: 20px auto;
    }
} 