/* Fugi Font Face */
@font-face {
    font-family: 'Fugi';
    src: url('Fugi.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Reset und Basis-Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Variables für Farbschema */
:root {
    --color-salmon: #c9917d;
    --color-tan: #d5b8aa;
    --color-sage: #cbd5ba;
    --color-white: #ffffff;
    --color-text-dark: #2c2c2c;
    --color-text-light: #6b6b6b;
    --color-dark-green: #2d5016;
    
    /* Schriftarten */
    --font-heading: 'Fugi', 'Quicksand', 'Helvetica Neue', Arial, sans-serif;
    --font-body: 'Quicksand', 'Helvetica Neue', Arial, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-xxl: 6rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--color-text-dark);
    background-color: var(--color-white);
    font-size: 16px;
    font-weight: 400;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--color-dark-green);
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.8rem;
    font-weight: 500;
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-light);
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(203, 213, 186, 0.15);
    padding: var(--spacing-sm) 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--spacing-md);
}

.logo-section {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.logo-container .logo {
    height: 50px;
    width: auto;
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-dark-green);
    margin: 0;
    line-height: 1;
}

.brand-tagline {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--color-dark-green);
    margin: 0;
    line-height: 1;
}

.nav {
    display: flex;
    gap: var(--spacing-md);
}

.nav-link {
    text-decoration: none;
    color: var(--color-text-dark);
    font-weight: 500;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: var(--color-tan);
    color: var(--color-text-dark);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--spacing-xxl) var(--spacing-md);
    background: linear-gradient(135deg, rgba(203, 213, 186, 0.3) 0%, rgba(213, 184, 170, 0.2) 100%);
    margin-top: 80px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding-right: var(--spacing-lg);
    padding-left: var(--spacing-xl);
}

.hero-branding {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.hero-logo {
    height: 60px;
    width: auto;
}

.hero-brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-dark-green);
    margin: 0;
    line-height: 1;
    font-weight: 700;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-dark-green);
    margin: 0;
    line-height: 1;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
    font-weight: 400;
    line-height: 1.4;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--color-salmon);
    color: var(--color-white);
    border-color: var(--color-salmon);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-salmon);
    border-color: var(--color-salmon);
}

.btn-secondary {
    background-color: var(--color-dark-green);
    color: var(--color-white);
    border-color: var(--color-dark-green);
}

.btn-secondary:hover {
    background-color: transparent;
    color: var(--color-dark-green);
    border-color: var(--color-dark-green);
}

/* Image Placeholders */
.image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-tan) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(44, 44, 44, 0.6);
    font-size: 1rem;
    font-weight: 400;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.4;
    background-size: 80px;
    background-position: center;
    background-repeat: no-repeat;
}

.yoga-pose::before {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 24 24" fill="none" stroke="%23c9917d" stroke-width="1.5"><path d="M12 2a3 3 0 0 1 3 3c0 1.5-1 2.5-3 2.5S9 6.5 9 5a3 3 0 0 1 3-3Z"/><path d="M8 22v-7l-2-3 2-1 2 2h4l2-2 2 1-2 3v7"/><path d="M5 12h2"/><path d="M17 12h2"/></svg>');
}

.yoga-meditation::before {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 24 24" fill="none" stroke="%23c9917d" stroke-width="1.5"><circle cx="12" cy="8" r="3"/><path d="M12 11v10"/><path d="M8 15l8 0"/><path d="M6 19h12"/></svg>');
}

.yoga-group::before {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 24 24" fill="none" stroke="%23c9917d" stroke-width="1.5"><path d="M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"/><circle cx="9" cy="7" r="4"/><path d="M22 21v-2a4 4 0 0 0-3-3.87"/><path d="M16 3.13a4 4 0 0 1 0 7.75"/></svg>');
}

.yoga-nature::before {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 24 24" fill="none" stroke="%23cbd5ba" stroke-width="1.5"><path d="M12 2v20"/><path d="M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6"/></svg>');
}

.yoga-prayer::before {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 24 24" fill="none" stroke="%23c9917d" stroke-width="1.5"><path d="M12 6V2H8"/><path d="M4 8V6a2 2 0 0 1 2-2h2"/><path d="M4 16v2a2 2 0 0 0 2 2h2"/><path d="M16 4h2a2 2 0 0 1 2 2v2"/><path d="M16 20h2a2 2 0 0 0 2-2v-2"/><path d="M8 18v4h8v-4"/><path d="M12 12h.01"/></svg>');
}

.yoga-instructor::before {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 24 24" fill="none" stroke="%23c9917d" stroke-width="1.5"><path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"/><circle cx="12" cy="7" r="4"/></svg>');
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 100%;
    max-width: 400px;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Sections */
section {
    padding: var(--spacing-xxl) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--color-text-dark);
}

.section-subtitle {
    color: var(--color-salmon);
    font-weight: 500;
    margin-bottom: var(--spacing-md);
}

/* About Section */
.about {
    background-color: var(--color-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* Kurse Section */
.kurse {
    background: linear-gradient(135deg, rgba(203, 213, 186, 0.3) 0%, rgba(203, 213, 186, 0.1) 100%);
}

.course-list {
    display: grid;
    gap: var(--spacing-md);
}

.load-more-container {
    text-align: center;
    margin-top: var(--spacing-lg);
}

.loading {
    opacity: 0.7;
    pointer-events: none;
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--color-tan);
    border-top: 2px solid var(--color-salmon);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes breathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.course-item.expandable:hover {
    animation: breathe 3s infinite ease-in-out;
}

.course-item {
    background: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.course-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.course-item.expandable {
    cursor: pointer;
    position: relative;
}

.course-item.expandable:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.course-item.expandable::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-tan), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.course-item.expandable:hover::after {
    opacity: 1;
}

.course-description {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    padding-top: 0;
    border-top: 1px solid transparent;
    transition: all 0.6s ease;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-light);
    background: rgba(203, 213, 186, 0.05);
    padding: 0 var(--spacing-md);
    border-radius: var(--radius-sm);
}

.course-item.expanded .course-description {
    max-height: 300px;
    opacity: 1;
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    border-top-color: rgba(203, 213, 186, 0.3);
}

.course-more-info {
    margin-top: var(--spacing-sm);
    text-align: center;
    padding: var(--spacing-sm);
    background: rgba(201, 145, 125, 0.15);
    border: 1px solid rgba(201, 145, 125, 0.3);
    border-radius: var(--radius-sm);
    transition: all 0.4s ease;
    cursor: pointer;
}

.course-more-info:hover {
    background: rgba(201, 145, 125, 0.25);
    border-color: rgba(201, 145, 125, 0.5);
    transform: translateY(-1px);
}

.course-item.expanded .course-more-info {
    opacity: 0;
    max-height: 0;
    padding: 0;
    margin: 0;
    transform: translateY(-10px);
}

.course-date {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--color-salmon);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.course-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-dark);
}

.course-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    color: var(--color-text-light);
}

.course-detail {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

/* Gallery Section */
.gallery {
    background-color: var(--color-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.10);
}

.gallery-img {
    width: 100%;
    height: 250px;
    transform: scale(1.05);
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, rgba(213, 184, 170, 0.3) 0%, rgba(213, 184, 170, 0.1) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.contact-cta {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.contact-info h3 {
    color: var(--color-text-dark);
    margin-bottom: var(--spacing-xs);
}

.contact-info p {
    color: var(--color-salmon);
    font-weight: 500;
    margin-bottom: var(--spacing-lg);
}

.contact-item {
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.contact-item strong {
    color: var(--color-text-dark);
    display: block;
    margin-bottom: var(--spacing-xs);
}

.contact-item a {
    color: var(--color-salmon);
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Entfernt - Kein Formular mehr */

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--color-dark-green) 0%, rgba(45, 80, 22, 0.8) 100%);
    color: var(--color-white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.footer-branding {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.footer-logo .logo {
    height: 35px;
    width: auto;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-brand-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin: 0;
    line-height: 1;
}

.footer-tagline {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1;
}

.footer-links {
    display: flex;
    gap: var(--spacing-md);
}

.footer-links a {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-sage);
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-legal-links {
    display: flex;
    gap: var(--spacing-md);
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: white;
}

.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

/* Icons */
.icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: var(--spacing-lg) var(--spacing-md);
    }
    
    .hero-content {
        padding-right: 0;
        padding-left: var(--spacing-md);
        margin-bottom: var(--spacing-lg);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .nav {
        display: none;
    }
    
    .footer-content {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
    
    .footer-branding {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .footer-legal {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 200px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    section {
        padding: var(--spacing-lg) 0;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Focus States */
*:focus {
    outline: 2px solid var(--color-salmon);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .nav,
    .hero-cta,
    .contact-form {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero {
        min-height: auto;
        padding: 1rem 0;
    }
}