/* ===== VARIABLEN & RESET ===== */
:root {
    --primary-white: #fffcf9;
    --soft-blue: #e6f0fa;
    --light-gold: #f8e7d0;
    --accent-gold: #d4af37;
    --dark-blue: #1e2f4e;
    --gray-text: #4a4a4a;
    --shadow-light: 0 10px 30px rgba(0, 0, 0, 0.03);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.06);
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Quicksand', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--primary-white);
    color: var(--dark-blue);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 500;
    letter-spacing: 0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== TYPOGRAPHIE ===== */
h1 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

h2.section-title {
    border-bottom: 2px solid var(--light-gold);
    padding-bottom: 0.5rem;
}

h2:after {
    display: none;
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--dark-blue);
}

h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

p {
    margin-bottom: 1.2rem;
    color: var(--gray-text);
}

.lead {
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: rgba(255, 252, 249, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.02);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo a {
    display: flex;
    align-items: center;
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-blue);
}

.logo-icon {
    background: linear-gradient(135deg, var(--soft-blue), var(--light-gold));
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: var(--dark-blue);
    box-shadow: 0 4px 8px rgba(0,0,0,0.02);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    color: var(--gray-text);
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
}

.nav-link.active {
    color: var(--dark-blue);
    font-weight: 600;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--dark-blue);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.03em;
}

.btn-primary {
    background: linear-gradient(145deg, var(--dark-blue), #1f364f);
    color: white;
    box-shadow: 0 8px 18px rgba(30, 47, 78, 0.15);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 24px rgba(30, 47, 78, 0.25);
}

.btn-light {
    background: white;
    color: var(--dark-blue);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.btn-light:hover {
    background: var(--soft-blue);
    transform: translateY(-3px);
}

/* ===== HERO SECTION ===== */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 85vh;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
}

.hero-content {
    animation: slideInLeft 0.8s ease-out;
}

.hero-content .subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--gray-text);
    font-weight: 300;
}

.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    animation: slideInRight 0.8s ease-out;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-image:hover img {
    transform: scale(1.02);
}

.overlay-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* ===== INTRO SECTION ===== */
.intro {
    padding: 6rem 0;
    background-color: var(--soft-blue);
    position: relative;
    overflow: hidden;
}

.intro:before {
    content: '❀';
    position: absolute;
    font-size: 20rem;
    color: rgba(255,255,255,0.3);
    bottom: -100px;
    right: -50px;
    font-family: var(--font-serif);
    transform: rotate(15deg);
}

.intro-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text {
    position: relative;
    z-index: 2;
}

.signature-line {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--dark-blue);
    font-size: 1.2rem;
}

.signature-line i {
    color: var(--accent-gold);
    font-size: 1.5rem;
}

.intro-icons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 2rem;
}

.icon-circle {
    background: white;
    border-radius: 30px;
    padding: 2rem 1rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.icon-circle i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.icon-circle span {
    display: block;
    font-weight: 500;
}

.icon-circle:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    background: white;
}

/* ===== CARD STYLES ===== */
.preview-services {
    padding: 6rem 0;
}

.preview-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--soft-blue), var(--accent-gold), var(--soft-blue));
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.card:hover:before {
    transform: translateX(0);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.card-icon {
    font-size: 2.8rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.card h3 {
    margin-bottom: 1rem;
}

.card-link {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--dark-blue);
    font-weight: 600;
    border-bottom: 2px solid transparent;
}

.card-link i {
    transition: transform 0.3s ease;
}

.card-link:hover i {
    transform: translateX(5px);
}

.card-link:hover {
    border-bottom-color: var(--accent-gold);
}

/* ===== CTA SECTION ===== */
.cta {
    padding: 4rem 0 6rem;
}

.cta-box {
    background: linear-gradient(145deg, #faf3e8, #fdf6ed);
    border-radius: 48px 48px 48px 0;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
}

.cta-box:after {
    content: '✨';
    position: absolute;
    font-size: 8rem;
    opacity: 0.1;
    bottom: -20px;
    right: 10px;
    transform: rotate(-10deg);
}

.cta-box h2 {
    margin-bottom: 1rem;
}

.cta-box p {
    max-width: 500px;
    margin: 0 auto 2rem;
}

/* ===== TESTIMONIALS PAGE ===== */
.page-header {
    padding: 5rem 0 3rem;
    text-align: center;
    background: linear-gradient(to bottom, rgba(230, 240, 250, 0.3), transparent);
}

.testimonials-slider-section {
    padding: 3rem 0 5rem;
}

.slider-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    padding: 2rem 0;
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 100%;
    padding: 2rem;
    opacity: 0.7;
    transform: scale(0.95);
    transition: all 0.5s ease;
}

.testimonial-card.active {
    opacity: 1;
    transform: scale(1);
}

.testimonial-content {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: var(--shadow-light);
    position: relative;
}

.quote-icon {
    font-size: 2.5rem;
    color: rgba(212, 175, 55, 0.2);
    position: absolute;
    top: 20px;
    left: 20px;
}

.testimonial-author {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
}

.testimonial-author .name {
    font-weight: 700;
    color: var(--dark-blue);
    font-size: 1.1rem;
}

.testimonial-author .service {
    font-size: 0.9rem;
    color: var(--accent-gold);
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.slider-prev, .slider-next {
    background: white;
    border: 1px solid var(--light-gold);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--dark-blue);
    font-size: 1.2rem;
}

.slider-prev:hover, .slider-next:hover {
    background: var(--dark-blue);
    color: white;
}

.slider-dots {
    display: flex;
    gap: 0.8rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--accent-gold);
    transform: scale(1.3);
}

.testimonials-grid {
    padding: 5rem 0;
    background: var(--soft-blue);
}

.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card-small {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.testimonial-card-small:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-card-small i {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.testimonial-card-small .author {
    font-weight: 700;
    margin-top: 1rem;
    display: block;
    color: var(--dark-blue);
}

/* ===== SERVICES PAGE ===== */
.services-main {
    padding: 3rem 0 6rem;
}

.service-detailed {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    padding: 4rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

.service-detailed:last-child {
    border-bottom: none;
}

.service-detailed.reverse {
    grid-template-columns: 1fr auto;
}

.service-icon-large {
    width: 120px;
    height: 120px;
    background: linear-gradient(145deg, var(--soft-blue), white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--accent-gold);
    box-shadow: var(--shadow-light);
    transition: all 0.4s ease;
}

.service-detailed:hover .service-icon-large {
    transform: rotate(5deg) scale(1.05);
    color: var(--dark-blue);
}

.service-info {
    padding: 0 1rem;
}

.service-sub {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.service-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
}

.service-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    background: var(--soft-blue);
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
    padding: 5rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
}

.image-frame {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--light-gold);
    border-radius: 30px;
    z-index: -1;
}

.about-text .subtitle {
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.mission {
    padding: 5rem 0;
    background: var(--soft-blue);
}

.mission-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 48px;
    box-shadow: var(--shadow-light);
    position: relative;
}

.mission-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.qualities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.quality-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 30px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.quality-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.quality-item i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.education {
    padding: 5rem 0;
}

.education-list {
    margin: 2rem 0;
}

.education-list li {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px dashed var(--light-gold);
}

.education-list i {
    color: var(--accent-gold);
    min-width: 24px;
}

.additional {
    margin-top: 2rem;
    font-style: italic;
    background: var(--soft-blue);
    padding: 2rem;
    border-radius: 20px;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 4rem 0 6rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    background: var(--soft-blue);
    padding: 3rem;
    border-radius: 30px;
}

.info-block {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.5);
}

.info-block h3 {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.2rem;
}

.info-block i {
    color: var(--accent-gold);
}

.info-block a {
    color: var(--dark-blue);
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: all 0.3s ease;
}

.info-block a:hover {
    text-decoration-color: var(--accent-gold);
}

.social-contact h3 {
    margin-bottom: 1rem;
}

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: var(--shadow-light);
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--gray-text);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--primary-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-honeypot {
    display: none;
}

.submit-btn {
    width: 100%;
}

.form-success-message {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 2rem;
    border-radius: 16px;
    margin-top: 2rem;
    text-align: center;
}

.form-success-message i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-blue);
    color: rgba(255, 255, 255, 0.9);
    padding: 4rem 5% 1rem;
    margin-top: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.footer-section p,
.footer-section li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 1.2rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--accent-gold);
    color: var(--dark-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* ===== ANIMATIONEN ===== */
@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 3rem;
        gap: 2rem;
    }
    
    .hero-image {
        max-width: 600px;
        margin: 0 auto;
        order: -1;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .service-detailed,
    .service-detailed.reverse {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .service-icon-large {
        margin: 0 auto;
    }
    
    .service-meta {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        gap: 0;
        flex-direction: column;
        background-color: rgba(255, 252, 249, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-item {
        margin: 1.2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 5%;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .intro-icons {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .service-meta {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .slider-controls {
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .container {
        width: 95%;
    }
    
    .hero-content .subtitle {
        font-size: 1.1rem;
    }
    
    .intro-icons {
        grid-template-columns: 1fr;
    }
    
    .cta-box {
        padding: 3rem 1.5rem;
    }
    
    .testimonial-content {
        padding: 2rem;
    }
    
    .contact-info,
    .contact-form-container {
        padding: 2rem;
    }
    
    .service-meta span {
        width: 100%;
        justify-content: center;
    }
}

/* ===== HILFE-KLASSEN ===== */
.text-center {
    text-align: center;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-5 {
    margin-bottom: 3rem;
}