/* ==================== */
/* COMPLEMENT PARTNERS - Main Stylesheet */
/* ==================== */

/* ==================== */
/* CSS VARIABLES */
/* ==================== */

:root {
    /* Primary Colors */
    --navy: #011071;
    --navy-light: #2D49FD;
    
    /* Accent Colors */
    --violett: #7A5AFD;
    --violett-light: #C6B9FE;
    --blau-akzent: #2D49FD;
    --gelb: #FEFF54;
    
    /* Neutral Colors */
    --grau: #8C8C8C;
    --hellgrau: #C5C5C5;
    --hellgrau-bg: #f8f9fa;
    --weiss: #ffffff;
    
    /* Shadows */
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(122, 90, 253, 0.2);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Typography */
    --font-family: 'Outfit', sans-serif;
    --font-size-base: 17px;
    --line-height: 1.7;
}

/* ==================== */
/* RESET & BASE */
/* ==================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--navy);
    line-height: var(--line-height);
    font-size: var(--font-size-base);
    overflow-x: hidden;
    background: var(--weiss);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ==================== */
/* TYPOGRAPHY */
/* ==================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
}

/* ==================== */
/* LAYOUT */
/* ==================== */

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

section {
    padding: 100px 0;
}

/* ==================== */
/* NAVIGATION */
/* ==================== */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
}

nav.scrolled {
    padding: 10px 50px;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    height: 45px;
    width: auto;
    transition: var(--transition);
}

.logo:hover img {
    transform: rotate(5deg) scale(1.05);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 400;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--violett);
    transition: var(--transition);
}

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--violett);
}

.nav-cta {
    background: var(--navy);
    color: var(--weiss) !important;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 500;
}

.nav-cta:hover {
    background: var(--violett);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(122, 90, 253, 0.3);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--navy);
}

/* ==================== */
/* HERO SECTION */
/* ==================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 50px 80px;
    background: linear-gradient(135deg, var(--weiss) 0%, var(--hellgrau-bg) 100%);
}

.hero-content {
    max-width: 800px;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(122, 90, 253, 0.1), rgba(45, 73, 253, 0.1));
    border-radius: 50px;
    margin-bottom: 30px;
    font-size: 14px;
    color: var(--violett);
    font-weight: 500;
}

.hero h1 {
    margin-bottom: 25px;
    letter-spacing: -0.02em;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--violett), var(--blau-akzent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    font-size: 1.25rem;
    color: var(--grau);
    margin-bottom: 40px;
    max-width: 650px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* ==================== */
/* BUTTONS */
/* ==================== */

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--navy);
    color: var(--weiss);
    padding: 16px 32px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--violett);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--navy);
    padding: 16px 32px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 16px;
    border: 2px solid var(--navy);
    transition: var(--transition);
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--navy);
    color: var(--weiss);
    transform: translateY(-3px);
}

/* ==================== */
/* SECTION HEADERS */
/* ==================== */

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(122, 90, 253, 0.1), rgba(45, 73, 253, 0.1));
    border-radius: 50px;
    font-size: 14px;
    color: var(--violett);
    font-weight: 500;
    margin-bottom: 15px;
}

.section-title {
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--grau);
    max-width: 650px;
    margin: 0 auto;
}

/* ==================== */
/* CARDS */
/* ==================== */

.card {
    background: var(--weiss);
    border-radius: 16px;
    padding: 35px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* ==================== */
/* FOOTER */
/* ==================== */

footer {
    background: var(--navy);
    color: var(--weiss);
    padding: 30px 50px;
    text-align: center;
}

footer a {
    color: var(--violett-light);
}

footer a:hover {
    color: var(--gelb);
}

/* ==================== */
/* UTILITIES */
/* ==================== */

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

.text-navy {
    color: var(--navy);
}

.text-violett {
    color: var(--violett);
}

.text-grau {
    color: var(--grau);
}

.bg-hellgrau {
    background: var(--hellgrau-bg);
}

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
