/* Variables */
:root {
    --primary-green: #88D66A;
    --secondary-cyan: #1BB3C6;
    --text-dark: #4A5568;
    --text-light: #6B7280;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    --border-color: #E5E7EB;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--white);
    padding: 1.5rem 2rem;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideUp 0.4s ease-out;
}

.cookie-banner.hidden {
    display: none;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-banner-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-banner-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-banner-content a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.cookie-banner-content a:hover {
    color: var(--secondary-cyan);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-cookie {
    padding: 0.75rem 2rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-banner-content p {
        font-size: 0.9rem;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie {
        width: 100%;
    }
}

/* Navigation */
.navbar {
    background-color: var(--white);
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo img {
    height: 80px;
    width: auto;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.logo-sano {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-pact {
    color: #222;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    background-color: #E8EAEF;
    color: #546E8F;
}

.nav-links a.active {
    background-color: #546E8F;
    color: var(--white);
}

.nav-links a:hover {
    background-color: #4a5a80;
    color: var(--white);
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F0F0F0 100%);
}

.hero .container {
    text-align: center;
}

.hero h1 {
    font-size: 80px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(-90deg, #7ed957 0%, #01beff 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .highlight {
    background: linear-gradient(-90deg, #7ed957 0%, #01beff 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-text {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

/* Buttons */
.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--white);
    font-weight: 700;
}

.btn-primary:hover {
    background-color: #76C857;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(136, 214, 106, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    font-weight: 600;
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--text-dark);
    transform: translateY(-2px);
}

/* Sections */
section {
    padding: 5rem 0;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    margin: 0;
    font-size: 80px;
    color: #4A5568;
    line-height: 1.2;
}

.section-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 100%;
}

/* Herzensangelegenheit Section */
.herzensangelegenheit {
    background-color: var(--white);
}

.herzensangelegenheit h2 {
    color: #4A5568;
}

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

.image-item {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.image-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Marketing 360 Section */
.marketing-360 {
    background-color: var(--bg-light);
}

.marketing-360 h2 {
    color: #4A5568;
}

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

.card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.card h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Gemeinsam Stark Section */
.gemeinsam-stark {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-cyan) 100%);
    text-align: center;
}

.gemeinsam-stark h2 {
    color: #4A5568;
}

.gemeinsam-stark .section-text {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--white);
}

.gemeinsam-stark h2 {
    color: #4A5568;
}

/* Impressum Section */
.impressum {
    background-color: var(--white);
    padding: 5rem 0;
}

.impressum .container {
    max-width: 800px;
}

.impressum h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-weight: 700;
    text-align: center;
}

.impressum-content {
    color: var(--text-dark);
    line-height: 1.8;
}

.impressum-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.impressum-content h3:first-child {
    margin-top: 0;
}

.impressum-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.impressum-content a {
    color: var(--secondary-cyan);
    text-decoration: none;
    transition: color 0.3s ease;
}

.impressum-content a:hover {
    color: var(--primary-green);
}

.impressum-content a:hover {
    color: var(--primary-green);
}

/* Datenschutz Section */
.datenschutz {
    background-color: var(--white);
    padding: 5rem 0;
}

.datenschutz .container {
    max-width: 900px;
}

.datenschutz h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-weight: 700;
    text-align: center;
}

.datenschutz-content {
    color: var(--text-dark);
    line-height: 1.8;
}

.datenschutz-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.datenschutz-content h3:first-child {
    margin-top: 0;
}

.datenschutz-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.datenschutz-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    text-align: justify;
}

.datenschutz-content a {
    color: var(--secondary-cyan);
    text-decoration: none;
    transition: color 0.3s ease;
}

.datenschutz-content a:hover {
    color: var(--primary-green);
}

.manage-cookies {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-green);
    color: var(--white);
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.manage-cookies:hover {
    background-color: var(--secondary-cyan);
}

.manage-cookies:hover {
    background-color: var(--secondary-cyan);
}

/* Kontakt Section */
.kontakt {
    background-color: var(--white);
    padding: 5rem 0;
}

.kontakt h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kontakt-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.kontakt-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.kontakt-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.kontakt-card h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 600;
}

.kontakt-card p {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1rem;
}

.kontakt-card a {
    color: var(--secondary-cyan);
    text-decoration: none;
    transition: color 0.3s ease;
}

.kontakt-card a:hover {
    color: var(--primary-green);
}

.kontakt-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
}

.kontakt-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    background-color: var(--white);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(136, 214, 106, 0.1);
}

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

.btn-submit {
    margin-top: 1rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .kontakt h1 {
        font-size: 2rem;
    }

    .kontakt-form-wrapper {
        padding: 2rem 1rem;
    }
}

/* Footer */
.footer {
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.footer-logo img {
    height: 80px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-info h4,
.footer-contact p {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.footer-info p,
.footer-contact p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

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

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    h2 {
        font-size: 2rem;
        color:#6B7280;
    }

    .hero {
        padding: 4rem 0;
    }

    section {
        padding: 3rem 0;
    }

    .image-grid,
    .cards-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-text {
        font-size: 0.9rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .btn {
        padding: 0.75rem 2rem;
        font-size: 0.95rem;
    }
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(136, 214, 106, 0.1) 0%, rgba(27, 179, 198, 0.1) 100%);
    border-radius: 12px;
    margin: 2rem 0;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #88D66A 0%, #1BB3C6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
}

.success-message h2 {
    color: #88D66A;
    margin-bottom: 1rem;
}

.success-message p {
    color: #4A5568;
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}
