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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: url('background.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.1) 100%);
    backdrop-filter: blur(1px);
}

.content-wrapper {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.4);
    max-width: 900px;
    margin: 20px;
}

/* Profile Section */
.profile-section {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.profile-image {
    flex-shrink: 0;
}

.portrait {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #0d8fa3;
    box-shadow: 0 8px 25px rgba(13, 143, 163, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portrait:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(13, 143, 163, 0.5);
}

.profile-info {
    flex: 1;
}

.practice-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.practitioner-name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    color: #34495e;
    margin-bottom: 15px;
}

.specialization {
    font-size: 1.1rem;
    color: #7f8c8d;
    font-style: italic;
    line-height: 1.5;
}

/* Philosophy Section */
.philosophy-section {
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(13, 143, 163, 0.08) 0%, rgba(13, 143, 163, 0.03) 100%);
    border-radius: 15px;
    border-left: 4px solid #0d8fa3;
    position: relative;
    overflow: hidden;
}

.philosophy-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(26, 182, 215, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.philosophy-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.philosophy-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
    position: relative;
    z-index: 1;
}

/* Contact Section */
.contact-section {
    display: flex;
    justify-content: center;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%;
    max-width: 600px;
}

.address p {
    margin-bottom: 5px;
    font-size: 1rem;
    color: #2c3e50;
}

.contact-details p {
    margin-bottom: 10px;
}

.phone a, .email a {
    color: #0d8fa3;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
}

.phone a:hover, .email a:hover {
    color: #0a6b7a;
    transform: translateY(-2px);
}

.phone a::after, .email a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0d8fa3;
    transition: width 0.3s ease;
}

.phone a:hover::after, .email a:hover::after {
    width: 100%;
}

/* Booking Widget Inline */
.booking-widget-inline {
    margin-top: 30px;
    text-align: center;
}

.booking-widget-inline .salonized-booking {
    display: inline-block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .content-wrapper {
        padding: 30px 20px;
        margin: 10px;
    }
    
    .profile-section {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .practice-name {
        font-size: 2rem;
    }
    
    .practitioner-name {
        font-size: 1.6rem;
    }
    
    .specialization {
        font-size: 1rem;
    }
    
    .portrait {
        width: 120px;
        height: 120px;
    }
    
    .philosophy-section {
        padding: 20px;
    }
    
    .philosophy-title {
        font-size: 1.3rem;
    }
    
    .philosophy-text {
        font-size: 1rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .content-wrapper {
        padding: 20px 15px;
        margin: 5px;
    }
    
    .practice-name {
        font-size: 1.7rem;
    }
    
    .practitioner-name {
        font-size: 1.4rem;
    }
    
    .portrait {
        width: 100px;
        height: 100px;
    }
    
    .philosophy-section {
        padding: 15px;
    }
    
    .philosophy-title {
        font-size: 1.2rem;
    }
    
    .philosophy-text {
        font-size: 0.95rem;
    }
    
    .contact-info {
        gap: 15px;
    }
    
    .address p, .contact-details p {
        font-size: 0.9rem;
    }
}

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

.content-wrapper {
    animation: fadeInUp 0.8s ease-out;
}

.profile-section {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.philosophy-section {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.contact-section {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

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

/* Hover-Effekte für die gesamte Content-Wrapper */
.content-wrapper {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.15);
}

