/* ==========================================================================
   CSS Variables - MODERN & PROFESSIONAL (CLEAN)
   ========================================================================== */
:root {
    --primary-color: #1a365d;     /* Solid Professional Blue */
    --secondary-color: #2b6cb0;   /* Modern Blue */
    --accent-color: #e53e3e;      /* Modern Red (Professional Accent) */
    --text-main: #2d3748;
    --text-muted: #718096;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --bg-dark: #1a202c;

    --font-heading: 'Inter', sans-serif; /* Clean, Modern Sans-Serif */
    --font-body: 'Inter', sans-serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    --border-radius: 12px;
    --transition-speed: 0.3s;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
    font-weight: 700;
}

p {
    margin-bottom: var(--spacing-sm);
}

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

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-xl) 0;
}

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

.bg-light { background-color: var(--bg-light); }
.bg-white { background-color: var(--bg-white); }
.bg-dark { background-color: var(--bg-dark); color: #fff; }

/* ==========================================================================
   Typography & Elements
   ========================================================================== */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 2rem auto var(--spacing-md);
}

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

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    transition: all var(--transition-speed);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-hover);
}

.btn-outline-light {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline-light:hover {
    background-color: #fff;
    color: var(--primary-color);
}

/* ==========================================================================
   Navigation
   ========================================================================== */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 20px 0;
}

#navbar.scrolled {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 10px 0;
}

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

/* ==========================================================================
   Logo Reconstruction (CSS Branding)
   ========================================================================== */
.logo-rebuild {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
}

.logo-left-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-blue-square {
    width: 25px;
    height: 25px;
    background-color: #2b6cb0;
    margin-right: 15px;
}

.logo-names {
    display: flex;
    flex-direction: column;
}

.logo-name-top {
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 1px;
    color: #4a5568;
}

.logo-name-bottom {
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: #2d3748;
    margin-top: -5px;
}

.logo-separator {
    width: 2px;
    height: 50px;
    background-color: #2b6cb0;
}

.logo-right-box {
    text-transform: none;
    font-size: 0.95rem;
    line-height: 1.2;
    font-weight: 500;
    color: #4a5568;
    text-align: left;
}

#navbar.scrolled .logo-rebuild .logo-name-top,
#navbar.scrolled .logo-rebuild .logo-name-bottom { color: #2d3748; }
#navbar.scrolled .logo-rebuild .logo-right-box { color: #4a5568; }

#navbar:not(.scrolled) .logo-rebuild .logo-name-top,
#navbar:not(.scrolled) .logo-rebuild .logo-name-bottom,
#navbar:not(.scrolled) .logo-rebuild .logo-right-box { color: #fff; }
#navbar:not(.scrolled) .logo-separator { background-color: #fff; }
#navbar:not(.scrolled) .logo-blue-square { background-color: #fff; }

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
}

#navbar.scrolled .nav-links a {
    color: var(--primary-color);
}

#navbar.scrolled .nav-links a:hover {
    color: var(--accent-color);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
}

#navbar.scrolled .hamburger {
    color: var(--primary-color);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: var(--primary-color);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.brand-heading {
    font-size: 4rem;
    color: #fff;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.highlight {
    color: #fff;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--accent-color);
    z-index: -1;
    opacity: 0.5;
}

.welcome {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* ==========================================================================
   Cards & Grids
   ========================================================================== */
.profile-card {
    background: #fff;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    max-width: 400px;
    margin: 3rem auto 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.team-card {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.team-card p {
    margin-bottom: 0;
}


.team-card:hover { 
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-color: var(--secondary-color);
}

.team-card h4 {
    font-size: 1.05rem;
    margin-bottom: 0px;
}

.job {
    font-size: 0.8rem;
    margin-bottom: 5px;
    display: block;
}

.phone-link, .email-link {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(0,0,0,0.08);
    color: var(--text-muted);
    transition: all 0.2s;
    white-space: nowrap;
    text-decoration: none;
}

.phone-link:hover, .email-link:hover {
    background: var(--primary-color);
    color: #fff !important;
    border-color: var(--primary-color);
}



/* ==========================================================================
   Accordion
   ========================================================================== */
.accordion { max-width: 900px; margin: 0 auto; }
.accordion-item {
    background: #fff;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.accordion-header {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.header-title { font-weight: 700; font-size: 1.1rem; }
.header-title i { margin-right: 15px; color: var(--secondary-color); }

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

.accordion-item.active .accordion-body { max-height: 500px; }
.styled-list { padding: 0 25px 25px 65px; }
.styled-list li { margin-bottom: 8px; }

/* ==========================================================================
   Banner
   ========================================================================== */
.parallax {
    padding: 100px 0;
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
}

.banner-text { font-size: 2.2rem; font-weight: 800; margin-bottom: 2rem; color: #fff; }

.footer { padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; }
.footer-links a:hover { color: #fff !important; }

/* ==========================================================================
   Animations
   ========================================================================== */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center !important; }
    .footer-right { text-align: center !important; }
    .footer-links a { margin: 0 10px; }
}

@media (max-width: 768px) {
    .brand-heading { font-size: 2.5rem; }
    .section-title { font-size: 2rem; }
}

/* ==========================================================================
   Cookie Banner & DSGVO Essentials
   ========================================================================== */
#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #fff;
    color: var(--text-main);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border: 1px solid #eee;
    max-width: 1000px;
    margin: 0 auto;
    transition: all 0.5s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
}

#cookie-banner.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cookie-text {
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-text a {
    color: var(--secondary-color);
    text-decoration: underline;
    font-weight: 600;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.btn-cookie {
    padding: 10px 20px;
    font-size: 0.85rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-accept {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
}

.btn-accept:hover {
    background-color: var(--secondary-color);
}

.btn-settings {
    background-color: #f0f0f0;
    color: var(--text-main);
    border: none;
}

@media (max-width: 768px) {
    #cookie-banner {
        flex-direction: column;
        text-align: center;
        bottom: 10px; left: 10px; right: 10px;
        padding: 20px;
    }
}

