/* --- CSS VARIABLEN --- */
:root {
    --primary-green: #10b981;
    --dark-green: #065f46;
    --light-green: #d1fae5;
    --bg-color: #f8fafc;
    --text-main: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --console-bg: #0f172a;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Outfit', sans-serif; }
body { background-color: var(--bg-color); color: var(--text-main); line-height: 1.6; }
a { text-decoration: none; color: inherit; }

/* --- NAVIGATION --- */
header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
nav { max-width: 1200px; margin: 0 auto; padding: 1.5rem 2rem; display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 800; color: var(--dark-green); display: flex; align-items: center; gap: 0.5rem; }
.logo i { color: var(--primary-green); font-size: 1.8rem; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { font-weight: 600; color: var(--text-light); transition: color 0.3s; }
.nav-links a:hover { color: var(--primary-green); }

.btn-primary {
    background: var(--primary-green); color: var(--white); padding: 0.75rem 1.5rem;
    border-radius: 50px; font-weight: 600; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3); display: inline-block;
}
.btn-primary:hover { background: var(--dark-green); transform: translateY(-2px); }

/* --- HERO & KONSOLE --- */
.hero { padding: 10rem 2rem 6rem; text-align: center; max-width: 900px; margin: 0 auto; }
.hero h1 { font-size: 3.5rem; line-height: 1.2; margin-bottom: 1.5rem; }
.hero h1 span { color: var(--primary-green); }
.hero p { font-size: 1.2rem; color: var(--text-light); margin-bottom: 2.5rem; }

/* Das Terminal-Fenster */
.terminal-wrapper { max-width: 600px; margin: 3rem auto 0; text-align: left; }
.terminal { background: var(--console-bg); border-radius: 12px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
.terminal-header { background: #1e293b; padding: 10px 15px; display: flex; gap: 8px; }
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: #ef4444; } .dot.yellow { background: #f59e0b; } .dot.green { background: #10b981; }
.terminal-body { padding: 1.5rem; color: var(--primary-green); font-family: 'Courier New', monospace; font-size: 0.95rem; min-height: 120px; }
.cursor { display: inline-block; width: 8px; height: 15px; background: var(--primary-green); animation: blink 1s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* --- FEATURES --- */
.features { max-width: 1200px; margin: 0 auto 4rem; padding: 0 2rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.feature-card { background: var(--white); padding: 2.5rem; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); transition: transform 0.3s; border: 1px solid rgba(16, 185, 129, 0.1); }
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(16, 185, 129, 0.1); }
.icon-wrapper { width: 60px; height: 60px; background: var(--light-green); border-radius: 15px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.icon-wrapper i { font-size: 2rem; color: var(--primary-green); }

/* --- INDIVIDUELLES HOSTING (CTA) --- */
.custom-hosting { background: var(--white); max-width: 800px; margin: 0 auto 6rem; padding: 4rem 2rem; border-radius: 20px; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.03); border: 1px solid var(--light-green); }
.custom-hosting h2 { font-size: 2.5rem; margin-bottom: 1rem; color: var(--dark-green); }
.custom-hosting p { color: var(--text-light); font-size: 1.1rem; margin-bottom: 2rem; }
.email-link { font-size: 1.2rem; font-weight: bold; color: var(--primary-green); display: flex; align-items: center; justify-content: center; gap: 10px; }

/* --- STANDARD PAGES (Partner/Impressum) --- */
.page-content { padding: 10rem 2rem 6rem; max-width: 1200px; margin: 0 auto; min-height: 80vh; }
.page-content h1 { font-size: 2.5rem; margin-bottom: 2rem; color: var(--dark-green); }

/* --- FOOTER --- */
footer { background: var(--dark-green); color: var(--white); text-align: center; padding: 3rem 2rem; }
.footer-links { margin-top: 1rem; display: flex; justify-content: center; gap: 1.5rem; }
.footer-links a { color: var(--light-green); font-size: 0.9rem; }
.footer-links a:hover { color: var(--white); text-decoration: underline; }