/* ================================
   ZENTRALE CSS-DATEI - VARIANTE 2
   Freiheit, Fülle & Abenteuer
   ================================ */

/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Nunito+Sans:wght@300;400;600;700;800&family=Dancing+Script:wght@400;500;600;700&display=swap');

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    color: #02776F;
    overflow-x: hidden;
    background: #FEFEFE;
}

/* ================================
   NAVIGATION
   ================================ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(2, 119, 111, 0.08);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    font-weight: 600;
    color: #DF901F;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #02776F;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active {
    color: #DF901F;
}

/* ================================
   TYPOGRAPHY
   ================================ */
h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #02776F;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: #02776F;
    margin-bottom: 1.5rem;
}

h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #02776F;
    margin-bottom: 1rem;
}

.golden-accent {
    color: #DF901F;
    font-weight: 700;
}

/* ================================
   LAYOUT CONTAINERS
   ================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ================================
   PAGE HEADERS
   ================================ */
.page-header {
    padding: 10rem 2rem 5rem;
    background: linear-gradient(135deg, #87BBAB 0%, #CFC8B3 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 500px;
    height: 500px;
    background: url('Hintergrund_transparent.png') center/contain no-repeat;
    opacity: 0.15;
    transform: rotate(-20deg);
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 500px;
    height: 500px;
    background: url('Hintergrund_transparent.png') center/contain no-repeat;
    opacity: 0.12;
    transform: rotate(25deg);
}

.page-header h1 {
    font-size: 4rem;
    position: relative;
    z-index: 1;
    color: #02776F;
}

.page-header p {
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
    color: #02776F;
    opacity: 0.9;
}

/* ================================
   HERO SECTION
   ================================ */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #87BBAB 0%, #CFC8B3 50%, #CCA66F 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: url('Hintergrund_transparent.png') center/contain no-repeat;
    opacity: 0.2;
    transform: rotate(-15deg);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 600px;
    height: 600px;
    background: url('Hintergrund_transparent.png') center/contain no-repeat;
    opacity: 0.15;
    transform: rotate(25deg);
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 900px;
    padding: 2rem;
}

.hero h1 {
    font-size: 4.5rem;
    color: #02776F;
    margin-bottom: 1.5rem;
}

.subtitle {
    font-size: 1.4rem;
    color: #02776F;
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.6;
}

.divider {
    width: 100px;
    height: 3px;
    background: #DF901F;
    margin: 2rem auto;
}

/* ================================
   BUTTONS
   ================================ */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #DF901F 0%, #CCA66F 100%);
    color: white;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(223, 144, 31, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(223, 144, 31, 0.4);
}

/* ================================
   INTRO SECTION
   ================================ */
.intro {
    padding: 6rem 2rem;
    background: white;
    position: relative;
}

.intro::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -50px;
    width: 300px;
    height: 300px;
    background: url('Hintergrund_transparent.png') center/contain no-repeat;
    opacity: 0.1;
    transform: translateY(-50%) rotate(10deg);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro h2 {
    margin-bottom: 2rem;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #02776F;
}

/* ================================
   VALUES SECTION
   ================================ */
.values {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, #FEFEFE 0%, #F5F5F5 100%);
    position: relative;
    overflow: hidden;
}

.values::after {
    content: '';
    position: absolute;
    bottom: 100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: url('Hintergrund_transparent.png') center/contain no-repeat;
    opacity: 0.08;
    transform: rotate(45deg);
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.value-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(2, 119, 111, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: url('Hintergrund_transparent.png') center/contain no-repeat;
    opacity: 0.05;
    transform: rotate(-20deg);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(223, 144, 31, 0.15);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    color: #02776F;
    margin-bottom: 1rem;
}

.value-card p {
    color: #02776F;
    line-height: 1.7;
    opacity: 0.85;
}

/* ================================
   ABOUT SECTION
   ================================ */
.about-section {
    padding: 6rem 2rem;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    background: url('images/portrait.jpg') center/cover;
    height: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(2, 119, 111, 0.15);
    position: relative;
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    box-shadow: inset 0 0 80px rgba(223, 144, 31, 0.1);
}

.about-text h2 {
    margin-bottom: 1.5rem;
    color: #02776F;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #02776F;
}

/* ================================
   APPROACH SECTION
   ================================ */
.approach {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #87BBAB 0%, #CFC8B3 100%);
}

.approach h2 {
    text-align: center;
    color: #02776F;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.approach-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(2, 119, 111, 0.1);
    transition: all 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(223, 144, 31, 0.2);
}

.approach-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.approach-card h3 {
    color: #02776F;
    margin-bottom: 1rem;
}

.approach-card p {
    color: #02776F;
    line-height: 1.7;
    opacity: 0.85;
}

/* ================================
   CTA SECTION
   ================================ */
.cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #DF901F 0%, #CCA66F 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: url('Hintergrund_transparent.png') center/contain no-repeat;
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-section .cta-button {
    background: white;
    color: #DF901F;
}

.cta-section .cta-button:hover {
    background: #02776F;
    color: white;
}

/* ================================
   SERVICES SECTION
   ================================ */
.services {
    padding: 6rem 2rem;
    background: white;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.service-item:nth-child(even) {
    direction: rtl;
}

.service-item:nth-child(even) > * {
    direction: ltr;
}

.service-visual {
    background: url('Hintergrund_transparent.png') center/cover;
    height: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(2, 119, 111, 0.1);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #87BBAB;
}

.service-icon {
    font-size: 5rem;
}

.service-content h2 {
    color: #02776F;
    margin-bottom: 1rem;
}

.service-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #02776F;
}

.service-features {
    list-style: none;
    margin: 2rem 0;
}

.service-features li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #02776F;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #DF901F;
    font-weight: bold;
    font-size: 1.2rem;
}

/* ================================
   PRICING SECTION
   ================================ */
.pricing {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, #F5F5F5 0%, white 100%);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: url('Hintergrund_transparent.png') center/contain no-repeat;
    opacity: 0.05;
    transform: rotate(-30deg);
}

.pricing h2 {
    text-align: center;
    color: #02776F;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(2, 119, 111, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: url('Hintergrund_transparent.png') center/contain no-repeat;
    opacity: 0.05;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(223, 144, 31, 0.2);
}

.pricing-card.featured {
    background: linear-gradient(135deg, #87BBAB 0%, #CFC8B3 100%);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card h3 {
    color: #02776F;
    margin-bottom: 1.5rem;
}

.price {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #DF901F;
    margin: 1.5rem 0;
}

.price span {
    font-size: 1rem;
    color: #02776F;
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #02776F;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #DF901F;
    font-weight: bold;
}

/* ================================
   CONTACT SECTION
   ================================ */
.contact {
    padding: 6rem 2rem;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    color: #02776F;
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #02776F;
}

.contact-form {
    background: linear-gradient(135deg, #87BBAB 0%, #CFC8B3 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(2, 119, 111, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #02776F;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid transparent;
    border-radius: 10px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #DF901F;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #DF901F 0%, #CCA66F 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(223, 144, 31, 0.3);
}

/* ================================
   BLOG SECTION
   ================================ */
.blog {
    padding: 6rem 2rem;
    background: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(2, 119, 111, 0.1);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(223, 144, 31, 0.2);
}

.blog-image {
    height: 250px;
    background: url('Hintergrund_transparent.png') center/cover;
    position: relative;
    background-color: #87BBAB;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    font-size: 0.9rem;
    color: #DF901F;
    margin-bottom: 1rem;
    font-weight: 600;
}

.blog-card h3 {
    color: #02776F;
    margin-bottom: 1rem;
}

.blog-card p {
    color: #02776F;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.85;
}

.read-more {
    color: #DF901F;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #02776F;
}

.coming-soon {
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #CFC8B3 0%, #CCA66F 100%);
}

.coming-soon h2 {
    color: #02776F;
}

.coming-soon p {
    color: #02776F;
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ================================
   LEGAL CONTENT
   ================================ */
.legal-content {
    padding: 4rem 2rem;
    background: white;
}

.legal-box {
    max-width: 900px;
    margin: 0 auto;
}

.legal-box h2 {
    color: #02776F;
    margin-bottom: 2rem;
}

.legal-box h3 {
    color: #02776F;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-box p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #02776F;
}

.legal-box a {
    color: #DF901F;
    text-decoration: none;
}

.legal-box a:hover {
    text-decoration: underline;
}

.privacy-list {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.privacy-list li {
    margin-bottom: 0.8rem;
    color: #02776F;
}

/* ================================
   FOOTER
   ================================ */
footer {
    background: #02776F;
    color: #CFC8B3;
    padding: 2rem;
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0.5rem 0;
}

.footer-legal {
    margin-top: 0.8rem;
    display: block;
}

.footer-legal a {
    color: #CFC8B3;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 100;
    pointer-events: auto;
    display: inline-block;
    padding: 5px 10px;
}

.footer-legal a:hover {
    color: #DF901F;
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
    
    .about-grid,
    .contact-grid,
    .service-item {
        grid-template-columns: 1fr;
    }
    
    .service-item:nth-child(even) {
        direction: ltr;
    }
    
    .values-grid,
    .approach-grid,
    .pricing-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
}
