/* ==========================================================================
   ArtDekor e.U. - Global Stylesheet
   Theme: Premium Dark & Elegant Gold
   ========================================================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* --- Design Tokens & CSS Variables --- */
:root {
    /* Color Palette */
    --color-bg-darkest: #070709;
    --color-bg-darker: #0c0c0f;
    --color-bg-card: #131317;
    --color-bg-hover: #191921;
    
    --color-gold-light: #f3e5ab;
    --color-gold: #d4af37;
    --color-gold-dark: #aa7c11;
    --color-gold-glow: rgba(212, 175, 55, 0.25);
    
    --color-text-primary: #f5f5f7;
    --color-text-secondary: #9ea0a9;
    --color-text-muted: #62646c;
    
    --color-border: rgba(255, 255, 255, 0.06);
    --color-border-focus: rgba(212, 175, 55, 0.5);
    
    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Layout & Shadows */
    --container-max-width: 1200px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 0 25px var(--color-gold-glow);
    --shadow-led-glow: 0 0 15px rgba(212, 175, 55, 0.4);
    
    /* Transitions */
    --transition-fast: 0.20s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: #ffffff;
}

p {
    color: var(--color-text-secondary);
}

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

ul {
    list-style: none;
}

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

/* --- Utility Classes --- */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

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

.gold-gradient-text {
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), transparent);
    margin: 12px auto 0 auto;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
}

/* --- Scroll Animations (Intersection Observer) --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-normal);
    gap: 8px;
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: #000000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4), var(--shadow-led-glow);
}

.btn-secondary {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--color-text-primary);
}

.btn-secondary:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-2px);
}

/* --- Header / Navigation --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(7, 7, 9, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition-normal);
}

.header-scrolled {
    background: rgba(7, 7, 9, 0.95);
    padding: 10px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: var(--transition-normal);
}

.header-scrolled .nav-container {
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    stroke: var(--color-gold);
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--color-gold);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--color-gold);
}

.nav-link.active::after {
    width: 100%;
}

/* Hamburger Toggle */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1010;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--color-text-primary);
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: var(--transition-fast);
}

.hamburger span:nth-child(1) { top: 0px; }
.hamburger span:nth-child(2) { top: 10px; }
.hamburger span:nth-child(3) { top: 20px; }

.hamburger.open span:nth-child(1) {
    top: 10px;
    transform: rotate(135deg);
    background: var(--color-gold);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.hamburger.open span:nth-child(3) {
    top: 10px;
    transform: rotate(-135deg);
    background: var(--color-gold);
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 100px;
    background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 10% 80%, rgba(12, 12, 15, 0.8) 0%, var(--color-bg-darkest) 100%);
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-gold-light);
    margin-bottom: 24px;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-gold);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--color-gold);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 12px var(--color-gold); }
    100% { transform: scale(0.9); opacity: 0.6; }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* --- Services Section --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 40px;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-soft), var(--shadow-gold);
    background-color: var(--color-bg-hover);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-sm);
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--color-gold);
    transition: var(--transition-normal);
}

.service-card:hover .service-icon-wrapper {
    background: var(--color-gold);
    color: #000000;
    box-shadow: var(--shadow-led-glow);
}

.service-icon {
    width: 28px;
    height: 28px;
    stroke-width: 1.75;
}

.service-title {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.service-description {
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

/* --- About Section --- */
.about-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-text {
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
}

.highlight-item:hover {
    border-color: rgba(212, 175, 55, 0.2);
    background: var(--color-bg-hover);
    transform: translateX(4px);
}

.highlight-icon {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
    flex-shrink: 0;
}

.highlight-text {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1rem;
}

.about-visual {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, #131317 0%, #070709 100%);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-graphic {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    z-index: 1;
}

.about-overlay-text {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(12, 12, 15, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: var(--border-radius-md);
    z-index: 2;
}

.about-overlay-title {
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.about-overlay-subtitle {
    font-size: 0.85rem;
    color: var(--color-gold);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* --- Ablauf (Workflow) Section --- */
.ablauf-timeline {
    position: relative;
    max-width: 900px;
    margin: 40px auto 0 auto;
    padding-left: 30px;
}

.ablauf-timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 15px;
    bottom: 15px;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-gold) 0%, rgba(212, 175, 55, 0.1) 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 48px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-badge {
    position: absolute;
    left: -30px;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--color-bg-darkest);
    border: 3px solid var(--color-gold);
    z-index: 2;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.timeline-content {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 24px 30px;
    transition: var(--transition-normal);
}

.timeline-content:hover {
    border-color: rgba(212, 175, 55, 0.2);
    background: var(--color-bg-hover);
    transform: translateX(4px);
}

.timeline-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.timeline-step {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--color-gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 2px 8px;
    border-radius: 4px;
    background: rgba(212, 175, 55, 0.05);
}

.timeline-title {
    font-size: 1.3rem;
}

.timeline-desc {
    font-size: 0.95rem;
    line-height: 1.6;
}

.timeline-info-box {
    margin-top: 30px;
    padding: 20px;
    background: rgba(212, 175, 55, 0.03);
    border: 1px dashed rgba(212, 175, 55, 0.2);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    gap: 16px;
}

.timeline-info-icon {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
    flex-shrink: 0;
}

.timeline-info-text {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

/* --- Gallery / Projects Section --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid var(--color-border);
    cursor: pointer;
    background: linear-gradient(135deg, #131317 0%, #070709 100%);
    transition: var(--transition-normal);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    padding: 20px;
    text-align: center;
    transition: var(--transition-normal);
}

.gallery-placeholder-icon {
    width: 40px;
    height: 40px;
    stroke-width: 1.2;
    margin-bottom: 12px;
    color: var(--color-text-muted);
    transition: var(--transition-normal);
}

.gallery-placeholder-tag {
    font-size: 0.75rem;
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(7, 7, 9, 0.95) 0%, rgba(7, 7, 9, 0.4) 60%, transparent 100%);
    padding: 24px;
    transform: translateY(100%);
    transition: var(--transition-normal);
    opacity: 0;
}

.gallery-title {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.gallery-category {
    font-size: 0.8rem;
    color: var(--color-gold);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.gallery-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-soft), var(--shadow-gold);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-item:hover .gallery-placeholder-icon {
    color: var(--color-gold);
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
}

.gallery-item:hover .gallery-placeholder-tag {
    color: var(--color-text-secondary);
}

/* --- Contact Section --- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-text {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.contact-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: var(--transition-normal);
}

.contact-card:hover {
    border-color: rgba(212, 175, 55, 0.2);
    background: var(--color-bg-hover);
}

.contact-card-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-sm);
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    flex-shrink: 0;
}

.contact-card-icon {
    width: 22px;
    height: 22px;
}

.contact-card-title {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.contact-card-value {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-text-primary);
}

.contact-form-container {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 40px;
}

.contact-form-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.contact-actions-vertical {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-action-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    transition: var(--transition-normal);
}

.contact-action-btn:hover {
    border-color: var(--color-gold);
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-2px);
}

.contact-action-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-action-icon {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
}

.contact-action-btn-text {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
}

.contact-action-arrow {
    width: 18px;
    height: 18px;
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

.contact-action-btn:hover .contact-action-arrow {
    color: var(--color-gold);
    transform: translateX(4px);
}

/* --- Legal Subpage Styles (Impressum / Datenschutz) --- */
.legal-header {
    padding-top: 140px;
    padding-bottom: 40px;
    background: linear-gradient(to bottom, var(--color-bg-darker) 0%, var(--color-bg-darkest) 100%);
    border-bottom: 1px solid var(--color-border);
}

.legal-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
}

.legal-back-link:hover {
    color: var(--color-gold);
    transform: translateX(-4px);
}

.legal-back-icon {
    width: 16px;
    height: 16px;
}

.legal-title {
    font-size: 3rem;
    margin-bottom: 16px;
}

.legal-meta {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.legal-content {
    padding: 60px 0 100px 0;
}

.legal-grid-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.legal-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 30px;
}

.legal-card h2 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--color-gold);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
}

.legal-card h3 {
    font-size: 1.1rem;
    margin-top: 20px;
    margin-bottom: 8px;
    color: #ffffff;
}

.legal-card p {
    font-size: 0.95rem;
    margin-bottom: 16px;
    line-height: 1.6;
}

.legal-card p:last-child {
    margin-bottom: 0;
}

.legal-card ul {
    margin-bottom: 16px;
    padding-left: 20px;
    list-style: disc;
    color: var(--color-text-secondary);
}

.legal-card li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.legal-highlight {
    background: rgba(212, 175, 55, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--border-radius-sm);
    padding: 16px;
    margin-bottom: 16px;
}

/* --- Footer --- */
.footer {
    background-color: var(--color-bg-darker);
    border-top: 1px solid var(--color-border);
    padding: 80px 0 30px 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 0.95rem;
    max-width: 320px;
    margin-bottom: 24px;
}

.footer-links-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
}

.footer-link:hover {
    color: var(--color-gold);
    transform: translateX(2px);
}

.footer-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--color-text-secondary);
}

.footer-info-icon {
    width: 18px;
    height: 18px;
    color: var(--color-gold);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.footer-legal-links {
    display: flex;
    gap: 24px;
}

.footer-legal-link:hover {
    color: var(--color-gold);
}

/* --- Responsive Layouts --- */

/* Tablet (Large) */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-visual {
        aspect-ratio: 16/9;
        max-height: 350px;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    :root {
        --border-radius-md: 12px;
        --border-radius-lg: 16px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Header & Mobile Navigation Menu */
    .hamburger {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--color-bg-darker);
        border-left: 1px solid var(--color-border);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        transition: right var(--transition-normal);
        z-index: 1005;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
    
    /* Hero */
    .hero {
        padding-top: 80px;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .btn {
        width: 100%;
    }
    
    /* Services & Ablauf */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 30px;
    }
    
    .ablauf-timeline {
        padding-left: 20px;
    }
    
    .timeline-badge {
        left: -20px;
        width: 14px;
        height: 14px;
        top: 6px;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    /* Contact */
    .contact-form-container {
        padding: 24px;
    }
    
    /* Footer */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-legal-links {
        justify-content: center;
        width: 100%;
    }
}

/* --- Print Styles --- */
@media print {
    body {
        background: white;
        color: black;
    }
    .header, .hero-buttons, .contact-form-container, .footer {
        display: none;
    }
}
