

@font-face {
    font-family: 'Bagiste';
    src: url('fonts/Bagiste-L3xKn.eot');
    src: url('fonts/Bagiste-L3xKn.eot?#iefix') format('embedded-opentype'),
         url('fonts/Bagiste-L3xKn.woff2') format('woff2'),
         url('fonts/Bagiste-L3xKn.otf') format('opentype'),
         url('fonts/Bagiste-L3xKn.svg#Bagiste') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



@font-face {
    font-family: 'Josefin Sans';
    src: url('fonts/JosefinSans-Regular.eot');
    src: url('fonts/JosefinSans-Regular.eot?#iefix') format('embedded-opentype'),
        url('fonts/JosefinSans-Regular.woff2') format('woff2'),
        url('fonts/JosefinSans-Regular.woff') format('woff'),
        url('fonts/JosefinSans-Regular.ttf') format('truetype'),
        url('fonts/JosefinSans-Regular.svg#JosefinSans-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Josefin Sans';
    src: url('fonts/JosefinSans-Light.eot');
    src: url('fonts/JosefinSans-Light.eot?#iefix') format('embedded-opentype'),
        url('fonts/JosefinSans-Light.woff2') format('woff2'),
        url('fonts/JosefinSans-Light.woff') format('woff'),
        url('fonts/JosefinSans-Light.ttf') format('truetype'),
        url('fonts/JosefinSans-Light.svg#JosefinSans-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Josefin Sans';
    src: url('fonts/JosefinSans-SemiBold.eot');
    src: url('fonts/JosefinSans-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('fonts/JosefinSans-SemiBold.woff2') format('woff2'),
        url('fonts/JosefinSans-SemiBold.woff') format('woff'),
        url('fonts/JosefinSans-SemiBold.ttf') format('truetype'),
        url('fonts/JosefinSans-SemiBold.svg#JosefinSans-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* Base Variables & Reset */
:root {
    --color-bg-white: #ffffff;
    --color-bg-light: #fdfaf5; /* Beige */
    --color-bg-green-light: #e6f3e3; /* Light Green */
    --color-green-primary: #8CA685;
    --color-green-footer: rgb(140,166,133);
    --color-green-footer-dark: rgb(110,135,108);
    --color-text-dark: #333333;
    --color-text-light: #ffffff;
    --color-border: #e0e0e0;
    
    --font-serif: 'Bagiste', serif;
    --font-sans: 'Josefin Sans', sans-serif;
}

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

body {
    font-family: var(--font-sans);
    color: var(--color-text-dark);
    line-height: 1.8;
    background-color: var(--color-bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

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

a {
    text-decoration: none;
    color: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}

h1.bagiste-font {
    font-family: var(--font-serif);
}

h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    letter-spacing: 0px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.text-underline {
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 5px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(133, 194, 130, 0.4);
}
.btn:hover {
    box-shadow: 0 12px 30px rgba(133, 194, 130, 0.5);
}

.btn-primary {
    background-color: var(--color-green-primary);
    color: var(--color-text-light);
    border: none;
}

.btn-primary:hover {
    background-color: #63A65D;
}

.btn-primary .arrow {
    margin-left: 15px;
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 300;
}

.btn-phone {
    background-color: var(--color-green-primary);
    color: var(--color-text-light);
    padding: 10px 24px;
    border-radius: 30px;
}

.btn-phone .icon {
    margin-right: 10px;
}

/* Header */
.main-header {
    background-color: var(--color-bg-white);
    padding: 25px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    background: #fff;
    padding: 20px 30px;
    border-radius: 12px;
    text-decoration: none;
}


.logo-text h1 {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    margin-bottom: 2px;
    color: #222;
}

.logo-text .subtitle {
    font-size: 0.5rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #777;
    line-height: 1.3;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

.main-nav a {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-dark);
}

.main-nav a.active {
    font-weight: 700;
    -webkit-text-stroke: 0.5px var(--color-text-dark);
    text-shadow: 0 0 1px var(--color-text-dark);
}

/* Hero Section */
.hero {
    background-color: var(--color-bg-light);
    padding: 100px 0;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.hero-content {
    flex: 1;
}

.hero-content p {
    margin-bottom: 40px;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    color: #444;
}

.hero-image {
    flex: 0.8;
    position: relative;
}

/* Intro Section */
.intro {
    padding: 100px 0;
    background-color: var(--color-bg-white);
}

.intro-container {
    display: flex;
    gap: 60px;
}

.intro-col {
    flex: 1;
}

.intro-col p {
    margin-bottom: 30px;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    color: #555;
}

.intro-btn-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: 40px;
}

/* Services Section */
.services {
    background-color: var(--color-bg-green-light);
    padding: 120px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.card {
    background: var(--color-bg-white);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    text-align: center;
}

.card h3 {
    font-size: clamp(1rem, 2vw, 1.1rem);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    color: #111;
}

.card h3::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: #222;
    margin-top: 8px;
}

.card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.9;
}

.card-list {
    list-style: none;
    text-align: left;
    display: inline-block;
}

.card-list li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.card-list .arrow-icon {
    color: #888;
    font-size: 0.8rem;
    margin-top: 4px;
}

.services-btn-wrapper {
    text-align: center;
}

/* FAQ Section */
.faq {
    background-color: var(--color-bg-light);
    padding: 120px 0;
}

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

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 30px 0;
    background: none;
    border: none;
    font-size: clamp(1rem, 2vw, 1.1rem);
    font-weight: 600;
    font-family: var(--font-sans);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #111;
}

.icon-plus {
    font-size: 2rem;
    color: #ccc;
    font-weight: 300;
    line-height: 1;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.accordion-content p {
    padding-bottom: 30px;
    color: #555;
    font-size: 1rem;
}

/* Philosophy Section */
.philosophy {
    padding: 100px 0 150px;
    background-color: var(--color-bg-light);
}

.philosophy-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.philosophy-text p {
    margin-bottom: 35px;
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: #444;
    line-height: 1.9;
}

/* Footer */
.main-footer {
    color: var(--color-text-light);
}

.footer-top {
    background-color: var(--color-green-footer);
    padding: 80px 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
}

.footer-col h3 {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.footer-col p {
    font-size: 0.9rem;
    margin-bottom: 5px;
    line-height: 1.7;
}

.footer-logos {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 40px;
}

.small-text {
    font-size: 0.65rem !important;
    line-height: 1.5 !important;
    margin-bottom: 0 !important;
    opacity: 0.9;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 18px;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-links .arrow-icon {
    color: rgba(255,255,255,0.7);
    margin-top: 2px;
    font-size: 0.8rem;
}

.footer-bottom {
    background-color: var(--color-green-footer-dark);
    padding: 25px 0;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-info a {
    margin: 0;
}

.sep,
.sep.sep-1,
.sep.sep-2 {
    margin: 0 10px;
}

.footer-info a:hover {
    text-decoration: underline;
}

.scroll-top {
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 300;
    transition: background-color 0.3s;
}

.scroll-top:hover {
    background-color: rgba(255,255,255,0.1);
}

.mobile-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    gap: 6px;
    z-index: 101;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--color-text-dark);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Responsive */
@media (max-width: 1024px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
    }
    .mobile-controls {
        width: 100%;
        justify-content: space-between;
        padding: 0 10px;
    }
    .hamburger {
        display: flex;
    }
    .main-nav {
        display: none;
        width: 100%;
        border-top: 1px solid #eee;
        padding-top: 15px;
    }
    .main-nav.active {
        display: block;
    }
    .main-nav ul {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .hero-container, .intro-container {
        flex-direction: column;
        text-align: center;
    }
    .intro-btn-wrapper {
        justify-content: center;
    }
    .card-list {
        text-align: center;
        display: inline-block;
    }
    .card-list li {
        justify-content: center;
        text-align: left;
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-graphic {
        display: none !important;
    }
    .footer-info {
        text-align: center;
        line-height: 1.8;
    }
    .footer-logos {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-logos br {
        display: none;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .footer-container {
        grid-template-columns: 1fr;
    }
    .bottom-container {
        flex-direction: column;
        gap: 20px;
    }
}

/* --- Angebote Page Styles --- */
.section-padding {
    padding: 80px 0;
}
.text-center {
    text-align: center;
    margin-bottom: 50px;
}
.bg-light-green {
    background-color: #E2E8DC;
}
.bg-beige {
    background-color: #f9f7f1;
}
.two-columns-text {
    display: flex;
    gap: 60px;
    text-align: justify;
}
.two-columns-text.gap-large {
    gap: 100px;
    text-align: left;
}
.two-columns-text .column {
    flex: 1;
}
.two-columns-text p {
    color: #333;
    line-height: 1.8;
    font-weight: 300;
}
.schwerpunkt-block {
    margin-bottom: 40px;
}
.schwerpunkt-block h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: #111;
}
.schwerpunkt-block ul {
    list-style: none;
    padding: 0;
}
.schwerpunkt-block ul li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.6;
    font-weight: 300;
}
.schwerpunkt-block ul li::before {
    content: "-";
    position: absolute;
    left: 0;
    top: 0;
}

@media (max-width: 768px) {
    .footer-graphic {
        display: none !important;
    }
    .footer-info {
        text-align: center;
        line-height: 1.8;
    }
    .footer-logos {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-logos br {
        display: none;
    }
    .two-columns-text {
        flex-direction: column;
        gap: 40px;
        text-align: left;
    }
    .two-columns-text.gap-large {
        gap: 40px;
    }
    .section-padding {
        padding: 50px 0;
    }
}
.angebote-hero {
    background-color: #FAF7F0; /* Beige from design */
}

/* Image Credit */
.image-credit {
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
    background-color: rgba(0, 0, 0, 0.4);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: var(--font-sans);
    line-height: 1.2;
    pointer-events: none;
}

.angebote-hero .container { position: relative; padding: 0; }


.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

@media (max-width: 768px) {
    .footer-graphic {
        display: none !important;
    }
    .footer-info {
        text-align: center;
        line-height: 1.8;
    }
    .footer-logos {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-logos br {
        display: none;
    }
    .hero-split {
        grid-template-columns: 1fr;
    }
}

/* Contact Form Styles */
.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: #f9f7f1;
    padding: 40px;
    border-radius: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #1a1a1a;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Josefin Sans', sans-serif;
    transition: border-color 0.3s, box-shadow 0.3s;
    background-color: #fff;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-green-primary);
    box-shadow: 0 0 0 3px rgba(110, 135, 108, 0.2);
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
}

.checkbox-group label {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 0;
    cursor: pointer;
}

@media (max-width: 768px) {
    .footer-graphic {
        display: none !important;
    }
    .footer-info {
        text-align: center;
        line-height: 1.8;
    }
    .footer-logos {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-logos br {
        display: none;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .contact-form {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .footer-graphic {
        display: none !important;
    }
    .footer-info {
        text-align: center;
        line-height: 1.8;
    }
    .footer-logos {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-logos br {
        display: none;
    }
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}
@media (max-width: 768px) {
    .footer-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    .footer-info .sep-1,
    .footer-info .sep-2 {
        display: none;
    }
}