/* ---------------------------------------------------
   Farbvariablen
--------------------------------------------------- */
:root {
    --dark-green: #41644A;
    --forest-green: #0D4715;
    --orange: #E9762B;
    --lime-green: #94FB68;
    --off-white: #F1F0E9;

    --black: #000;
    --deep-black: #0a0a0a;
    --mid-black: #1a1a2e;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--black);
    color: var(--off-white);
    overflow-x: hidden;
}

/* ---------------------------------------------------
   Navigation
--------------------------------------------------- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.25rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(0,0,0,0.5);
    border-bottom: 1px solid rgba(233,118,43,0.18);
    z-index: 100;
}

a {
    color: var(--lime-green);
    text-decoration: none;
    font-weight: 400;
}

a:hover {
    color: var(--off-white);
    text-decoration: underline;
}

a:visited {
    color: var(--dark-green);
}

a:active {
    color: var(--orange);
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--orange), var(--lime-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-cta {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--off-white);
    -webkit-text-fill-color: var(--off-white);
    background: rgba(233,118,43,0.12);
    border: 1px solid rgba(233,118,43,0.35);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    letter-spacing: 0.02em;
}

.nav-cta:hover {
    background: rgba(233,118,43,0.22);
    border-color: var(--orange);
    color: var(--off-white);
    -webkit-text-fill-color: var(--off-white);
    text-decoration: none;
    box-shadow: 0 0 16px rgba(233,118,43,0.2);
}

/* ---------------------------------------------------
   Hero Section
--------------------------------------------------- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    background: linear-gradient(160deg, var(--deep-black), #0c1f12 60%, var(--deep-black));
}

/* Subtle dot grid */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    z-index: 1;
}

/* Ambient glow orbs */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 65%, rgba(233,118,43,0.14), transparent 58%),
        radial-gradient(ellipse at 18% 40%, rgba(65,100,74,0.12), transparent 52%),
        radial-gradient(ellipse at 82% 30%, rgba(148,251,104,0.05), transparent 48%);
    animation: pulse 12s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ---------------------------------------------------
   Particles
--------------------------------------------------- */
.particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 2;
}

.particle {
    position: absolute;
    bottom: -10px;
    border-radius: 50%;
    animation: rise linear infinite;
}

.particle:nth-child(3n+1) {
    width: 3px;
    height: 3px;
    background: rgba(255,255,255,0.3);
}

.particle:nth-child(3n+2) {
    width: 2px;
    height: 2px;
    background: rgba(148,251,104,0.45);
}

.particle:nth-child(3n) {
    width: 2px;
    height: 2px;
    background: rgba(233,118,43,0.4);
}

@keyframes rise {
    0%   { transform: translateY(0) translateX(0);    opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { transform: translateY(-110vh) translateX(15px); opacity: 0; }
}

.particle:nth-child(1)  { left:  5%; animation-delay: 0s;    animation-duration: 6s;   }
.particle:nth-child(2)  { left: 12%; animation-delay: 1.2s;  animation-duration: 5s;   }
.particle:nth-child(3)  { left: 22%; animation-delay: 0.4s;  animation-duration: 7s;   }
.particle:nth-child(4)  { left: 33%; animation-delay: 2s;    animation-duration: 5.5s; }
.particle:nth-child(5)  { left: 43%; animation-delay: 1s;    animation-duration: 6.5s; }
.particle:nth-child(6)  { left: 52%; animation-delay: 3s;    animation-duration: 5s;   }
.particle:nth-child(7)  { left: 62%; animation-delay: 0.8s;  animation-duration: 7.5s; }
.particle:nth-child(8)  { left: 72%; animation-delay: 2.2s;  animation-duration: 6s;   }
.particle:nth-child(9)  { left: 80%; animation-delay: 1.6s;  animation-duration: 5.5s; }
.particle:nth-child(10) { left: 88%; animation-delay: 3.5s;  animation-duration: 7s;   }
.particle:nth-child(11) { left: 95%; animation-delay: 0.5s;  animation-duration: 6.5s; }
.particle:nth-child(12) { left: 38%; animation-delay: 4s;    animation-duration: 5s;   }

/* ---------------------------------------------------
   Hero Content
--------------------------------------------------- */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 820px;
    padding: 0 2rem;
}

.tagline {
    display: inline-block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--orange);
    -webkit-text-fill-color: var(--orange);
    font-weight: 600;
    margin-bottom: 1.75rem;
    padding: 0.4rem 1.1rem;
    border: 1px solid rgba(233,118,43,0.3);
    border-radius: 100px;
    background: rgba(233,118,43,0.07);
}

h1 {
    font-size: clamp(2.6rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    background: linear-gradient(170deg, var(--off-white) 40%, rgba(255,255,255,0.55));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
    color: var(--off-white);
    -webkit-text-fill-color: var(--off-white);
}

h3 {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 1.2rem;
    color: var(--lime-green);
    -webkit-text-fill-color: var(--lime-green);
}

p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.highlight {
    color: var(--orange);
    -webkit-text-fill-color: var(--orange);
    font-style: italic;
}

.subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.62);
    -webkit-text-fill-color: rgba(255,255,255,0.62);
    max-width: 580px;
    margin: 0 auto 2.75rem;
    line-height: 1.8;
    font-weight: 400;
}

/* ---------------------------------------------------
   CTA Button
--------------------------------------------------- */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--orange);
    color: #000;
    -webkit-text-fill-color: #000;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.9rem 2.2rem;
    border-radius: 100px;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 0 28px rgba(233,118,43,0.28);
}

.cta-button:hover {
    background: #f5883a;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(233,118,43,0.42);
    color: #000;
    -webkit-text-fill-color: #000;
    text-decoration: none;
}

/* ---------------------------------------------------
   Scroll Indicator
--------------------------------------------------- */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.18));
}

.scroll-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    animation: scrollBounce 2.2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0);  opacity: 0.35; }
    50%       { transform: translateY(5px); opacity: 0.9; }
}

/* ---------------------------------------------------
   Mission
--------------------------------------------------- */
.mission {
    padding: 8rem 2rem;
    text-align: center;
    background: linear-gradient(180deg, #0c1f12 0%, var(--forest-green) 100%);
}

.mission-inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.quote-mark {
    display: block;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 9rem;
    line-height: 0.65;
    color: rgba(233,118,43,0.14);
    font-weight: 700;
    margin-bottom: 1.5rem;
    user-select: none;
}

.mission-text {
    font-size: clamp(1.35rem, 3.2vw, 2.2rem);
    font-weight: 500;
    color: var(--off-white);
    -webkit-text-fill-color: var(--off-white);
    line-height: 1.6;
    margin-bottom: 0;
}

.accent {
    color: var(--orange);
    -webkit-text-fill-color: var(--orange);
    font-weight: 600;
}

/* ---------------------------------------------------
   Contact
--------------------------------------------------- */
.contact {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, var(--forest-green) 0%, var(--deep-black) 100%);
    text-align: center;
}

.contact-inner {
    max-width: 580px;
    margin: 0 auto;
}

.contact-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.58);
    -webkit-text-fill-color: rgba(255,255,255,0.58);
    margin-bottom: 2.5rem;
    line-height: 1.75;
}

.email-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--off-white);
    -webkit-text-fill-color: var(--off-white);
    font-size: 1.05rem;
    font-weight: 500;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.email-button:hover {
    background: rgba(233,118,43,0.1);
    border-color: rgba(233,118,43,0.38);
    color: var(--off-white);
    -webkit-text-fill-color: var(--off-white);
    transform: translateY(-2px);
    text-decoration: none;
    box-shadow: 0 10px 32px rgba(0,0,0,0.3);
}

.email-icon {
    font-size: 1.1rem;
    color: var(--orange);
    -webkit-text-fill-color: var(--orange);
}

/* ---------------------------------------------------
   Footer
--------------------------------------------------- */
footer {
    padding: 3rem 2rem;
    background: var(--deep-black);
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.footer-logo {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, var(--orange), var(--forest-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1.5rem 0;
}

.footer-links a {
    color: rgba(255,255,255,0.4);
    -webkit-text-fill-color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--orange);
    -webkit-text-fill-color: var(--orange);
    text-decoration: none;
}

.footer-links a:visited {
    color: rgba(255,255,255,0.4);
    -webkit-text-fill-color: rgba(255,255,255,0.4);
}

.footer-text {
    color: rgba(255,255,255,0.28);
    -webkit-text-fill-color: rgba(255,255,255,0.28);
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* ---------------------------------------------------
   Legal Pages (Impressum, Datenschutz)
--------------------------------------------------- */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
    min-height: 80vh;
}

.legal-content h4 {
    font-size: 1rem;
    color: var(--orange);
    -webkit-text-fill-color: var(--orange);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    margin-bottom: 0.8rem;
    margin-top: 1rem;
    font-weight: 600;
}

.legal-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

/* ---------------------------------------------------
   Mobile
--------------------------------------------------- */
@media (min-width: 769px) {
    .logo {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .hero-content {
        padding: 0 1.25rem;
    }

    h1 {
        font-size: 2.4rem;
        letter-spacing: -0.02em;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.15rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .mission-text {
        font-size: 1.35rem;
    }

    .quote-mark {
        font-size: 6rem;
    }

    .scroll-indicator {
        display: none;
    }
}
