/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Farbpalette - Minimalistisch */
    --color-dark: #0a0a0a;
    --color-darker: #000000;
    --color-gold: #d4af37;
    --color-gold-light: #e8c870;
    --color-gold-dark: #a68929;
    --color-cream: #faf9f7;
    --color-stone: #9a9590;
    --color-white: #ffffff;
    
    /* Typografie - Ultra Light */
    --font-serif: 'Cormorant Garamond', 'Cinzel', 'Georgia', serif;
    --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
    --spacing-2xl: 12rem;
    
    /* Transitions */
    --transition-smooth: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-elegant: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Google Fonts Import - Elegant & Thin */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Montserrat:wght@200;300;400;500;600&family=Cinzel:wght@400;500;600&display=swap');

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-dark);
    color: var(--color-cream);
    line-height: 1.8;
    overflow-x: hidden;
    position: relative;
    font-weight: 300;
}

::selection {
    background-color: var(--color-gold);
    color: var(--color-dark);
}

/* ===== GEOMETRIC LINES ===== */
body::before,
body::after {
    content: '';
    position: fixed;
    background: linear-gradient(180deg, transparent 0%, var(--color-gold) 50%, transparent 100%);
    width: 1px;
    height: 100vh;
    opacity: 0.15;
    z-index: 0;
}

body::before {
    left: 10%;
}

body::after {
    right: 10%;
}

/* ===== 3D MODEL CANVAS ===== */
.model-canvas {
    position: absolute;
    pointer-events: none;
    z-index: 10;
}

.helm-canvas {
    top: 180px;
    right: 200px;
    width: 250px;
    height: 250px;
    opacity: 0.6;
    filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.5));
}

/* Nebel Effekt - ENTFERNT */

@media (max-width: 1024px) {
    .helm-canvas {
        display: none;
    }
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) var(--spacing-xl);
    background: transparent;
    backdrop-filter: blur(20px);
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(212,175,55,0.1);
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    transition: var(--transition-smooth);
}

.logo-image {
    height: 35px;
    width: auto;
    filter: brightness(0) saturate(100%) invert(69%) sepia(29%) saturate(816%) hue-rotate(9deg) brightness(94%) contrast(87%);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
}

.nav-menu a {
    color: var(--color-cream);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: var(--transition-smooth);
}

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

.nav-menu a:hover::before {
    width: 100%;
}

/* Mobile Menu Animation */
.mobile-menu.active {
    right: 0 !important;
}

.nav-toggle {
    z-index: 1000;
    display: none;
}

/* Burger Menu nur auf Mobile anzeigen */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-menu.mobile-menu {
        display: flex;
    }
}

/* ===== FLOATING ELEMENTS - Minimalist ===== */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.cloud {
    position: absolute;
    width: 400px;
    height: 200px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.15;
    filter: grayscale(100%) brightness(1.2);
    transition: transform 0.1s linear;
    will-change: transform;
}

.cloud-1 {
    top: 10%;
    left: -600px;
    background-image: url('../assets/images/wolke.png');
    width: 500px;
    height: 250px;
}

.cloud-2 {
    top: 50%;
    right: -700px;
    width: 600px;
    height: 300px;
    background-image: url('../assets/images/wolke-2.png');
}

.cloud-3 {
    top: 85%;
    left: -550px;
    width: 450px;
    height: 225px;
    background-image: url('../assets/images/wolke.png');
    opacity: 0.1;
}

.ikarus {
    position: absolute;
    top: 20%;
    right: 15%;
    width: 1px;
    height: 100px;
    background: linear-gradient(180deg, transparent 0%, var(--color-gold) 50%, transparent 100%);
    opacity: 0.3;
    animation: fall 35s infinite ease-in-out;
}

.column-fragment {
    position: absolute;
    width: 1px;
    height: 400px;
    background: linear-gradient(180deg, rgba(212,175,55,0.15) 0%, transparent 100%);
    opacity: 0.4;
}

.column-1 {
    top: 50%;
    left: 75%;
    animation: slideVertical 30s infinite ease-in-out;
}

.ornament {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 50%;
    opacity: 0.3;
}

.ornament::before,
.ornament::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(212,175,55,0.1);
    border-radius: 50%;
}

.ornament::before {
    width: 80%;
    height: 80%;
}

.ornament::after {
    width: 60%;
    height: 60%;
}

.ornament-1 {
    top: 65%;
    left: 20%;
    animation: rotate 50s infinite linear;
}

/* Greek Geometric SVG Ornaments */
.greek-meander {
    animation: rotate 120s infinite linear;
}

.golden-ratio {
    animation: breathe 8s infinite ease-in-out, rotate 90s infinite linear;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: var(--color-dark);
    padding-top: 100px;
}

/* Divine Light Rays */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 150%;
    height: 200%;
    background: 
        linear-gradient(90deg, transparent 49.5%, rgba(212,175,55,0.03) 50%, transparent 50.5%),
        linear-gradient(90deg, transparent 49%, rgba(212,175,55,0.02) 50%, transparent 51%);
    background-size: 100px 100px;
    animation: divine-reveal 20s infinite ease-in-out;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 80vh;
    background: linear-gradient(180deg, transparent 0%, rgba(212,175,55,0.3) 50%, transparent 100%);
    animation: pulse-line 4s infinite ease-in-out;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: var(--spacing-md);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(4rem, 15vw, 12rem);
    font-weight: 300;
    line-height: 0.85;
    letter-spacing: 0.08em;
    margin-bottom: var(--spacing-lg);
    color: var(--color-cream);
    position: relative;
}

.hero-title .line {
    display: block;
    overflow: hidden;
    position: relative;
}

.hero-title .line::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--color-gold) 50%, transparent 100%);
    opacity: 0.3;
}

.hero-subtitle {
    font-size: clamp(0.8rem, 2vw, 1.2rem);
    font-weight: 200;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.hero-subtitle::before,
.hero-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--color-gold) 100%);
}

.hero-subtitle::before {
    right: calc(100% + 20px);
}

.hero-subtitle::after {
    left: calc(100% + 20px);
    background: linear-gradient(90deg, var(--color-gold) 0%, transparent 100%);
}

.hero-cta {
    margin-top: var(--spacing-xl);
}

.btn-primary {
    display: inline-block;
    padding: 1.2rem 4rem;
    background: transparent;
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 0.75rem;
    border: 1px solid var(--color-gold);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition-elegant);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-gold);
    transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    color: var(--color-dark);
    transform: translateY(-2px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--color-gold);
    font-size: 0.65rem;
    font-weight: 200;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 80px;
    background: linear-gradient(180deg, var(--color-gold) 0%, transparent 100%);
    animation: scrollPulse 3s infinite ease-in-out;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
}

/* ===== SECTION TITLE ===== */
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    color: var(--color-cream);
    margin-bottom: var(--spacing-xl);
    position: relative;
    display: inline-block;
    letter-spacing: 0.05em;
}

.section-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -80px;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--color-gold) 100%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100px;
    height: 1px;
    background: var(--color-gold);
}

.section-title.centered {
    display: block;
    text-align: center;
}

.section-title.centered::before {
    left: 50%;
    transform: translateX(-100px);
    width: 80px;
}

.section-title.centered::after {
    left: 50%;
    transform: translateX(-50%);
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: var(--spacing-2xl) 0;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(212,175,55,0.1) 50%, transparent 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-image .image-placeholder {
    width: 100%;
    height: 700px;
    background: transparent;
    border: 1px solid rgba(212,175,55,0.2);
    position: relative;
    overflow: hidden;
}

.about-image .image-placeholder::before,
.about-image .image-placeholder::after {
    content: '';
    position: absolute;
    background: rgba(212,175,55,0.1);
}

.about-image .image-placeholder::before {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
}

.about-image .image-placeholder::after {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 1px;
}

.about-image .image-placeholder.statue::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 500px;
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    z-index: 2;
    pointer-events: none;
}

.about-main-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(20%) contrast(1.1);
    opacity: 0.95;
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-image:hover .about-main-image {
    filter: grayscale(0%) contrast(1.15);
    opacity: 1;
    transform: scale(1.02);
}

.about-text {
    font-size: 1rem;
    line-height: 2;
    color: var(--color-stone);
    margin-bottom: var(--spacing-lg);
    font-weight: 300;
    letter-spacing: 0.5px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.stat {
    text-align: center;
    padding: var(--spacing-lg) var(--spacing-md);
    border: 1px solid rgba(212,175,55,0.15);
    position: relative;
    transition: var(--transition-smooth);
}

.stat::before,
.stat::after {
    content: '';
    position: absolute;
    background: var(--color-gold);
    transition: var(--transition-smooth);
}

.stat::before {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 0;
}

.stat::after {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 0;
}

.stat:hover::before,
.stat:hover::after {
    height: 20px;
}

.stat:hover {
    border-color: var(--color-gold);
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--color-gold);
    margin-bottom: var(--spacing-sm);
}

.stat-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-cream);
    font-weight: 300;
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio {
    padding: var(--spacing-2xl) 0;
    background: var(--color-darker);
    position: relative;
}

.portfolio::before,
.portfolio::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--color-gold) 50%, transparent 100%);
    opacity: 0.2;
}

.portfolio::before {
    top: 0;
}

.portfolio::after {
    bottom: 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-sm);
}

.portfolio-item {
    position: relative;
    height: 550px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(212,175,55,0.1);
    transition: var(--transition-elegant);
}

.portfolio-item:hover {
    border-color: rgba(212,175,55,0.3);
}

.portfolio-item.large {
    grid-column: span 2;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    transition: var(--transition-elegant);
    position: relative;
    overflow: hidden;
    background: var(--color-darker);
}

.portfolio-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(30%) contrast(1.1);
    opacity: 0.9;
    transition: all 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-item:hover .portfolio-img {
    filter: grayscale(0%) contrast(1.2);
    opacity: 1;
    transform: scale(1.05);
}

.portfolio-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 100%;
    background: rgba(212,175,55,0.1);
}

.portfolio-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 1px;
    background: rgba(212,175,55,0.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-lg);
    background: linear-gradient(0deg, rgba(0,0,0,0.95) 0%, transparent 100%);
    transform: translateY(100%);
    transition: var(--transition-elegant);
    border-top: 1px solid var(--color-gold);
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--color-gold);
    margin-bottom: var(--spacing-xs);
    letter-spacing: 2px;
}

.portfolio-overlay p {
    color: var(--color-cream);
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 300;
    text-transform: uppercase;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: var(--spacing-2xl) 0;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--color-gold) 50%, transparent 100%);
    opacity: 0.2;
}

.contact-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--color-stone);
    margin-bottom: var(--spacing-xl);
    letter-spacing: 1px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    position: relative;
    padding-left: var(--spacing-md);
}

.contact-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-gold) 0%, transparent 100%);
}

.contact-label {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    font-weight: 300;
}

.contact-item a,
.contact-item span {
    color: var(--color-cream);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.contact-item a:hover {
    color: var(--color-gold);
    padding-left: 10px;
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-links a {
    font-size: 0.9rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-form input,
.contact-form textarea {
    padding: var(--spacing-sm);
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(212,175,55,0.2);
    color: var(--color-cream);
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-bottom-color: var(--color-gold);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
    border: 1px solid rgba(212,175,55,0.2);
    padding: var(--spacing-sm);
}

.contact-form button {
    align-self: flex-start;
}

/* ===== FOOTER ===== */
.footer {
    padding: var(--spacing-xl) 0;
    text-align: center;
    border-top: 1px solid rgba(212,175,55,0.1);
    color: var(--color-stone);
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
}

.footer-logo {
    height: 45px;
    width: auto;
    filter: brightness(0) saturate(100%) invert(69%) sepia(29%) saturate(816%) hue-rotate(9deg) brightness(94%) contrast(87%);
    opacity: 0.9;
}

/* ===== RESPONSIVE - UMFASSEND ===== */

/* Tablet und kleiner - Floating Elements ausblenden */
@media (max-width: 1024px) {
    /* Floating Elements entfernen */
    .floating-elements {
        display: none;
    }
    
    /* 3D Model entfernen */
    .helm-canvas {
        display: none;
    }
    
    /* Geometrische Linien am Body entfernen */
    body::before,
    body::after {
        display: none;
    }
    
    /* Grid zu Single Column */
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    /* Portfolio Items */
    .portfolio-item.large {
        grid-column: span 1;
    }
    
    /* Section Title Linie links entfernen */
    .section-title::before {
        display: none;
    }
    
    /* About Stats vereinfachen */
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile - Weitere Anpassungen */
@media (max-width: 768px) {
    :root {
        --spacing-xl: 4rem;
        --spacing-2xl: 6rem;
    }
    
    /* Navigation kompakter */
    .nav {
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .logo-image {
        height: 28px;
    }
    
    .footer-logo {
        height: 35px;
    }
    
    .nav-menu {
        gap: var(--spacing-sm);
    }
    
    .nav-menu a {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }
    
    /* Hero anpassen */
    .hero {
        padding-top: 80px;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 12vw, 8rem);
        letter-spacing: 0.05em;
    }
    
    .hero-subtitle {
        font-size: clamp(0.65rem, 1.5vw, 1rem);
        letter-spacing: 0.3em;
    }
    
    .hero-subtitle::before,
    .hero-subtitle::after {
        width: 40px;
    }
    
    /* Divine Light Rays auf Mobile reduzieren */
    .hero::before {
        opacity: 0.02;
    }
    
    /* Button kleiner */
    .btn-primary {
        padding: 0.9rem 2.5rem;
        font-size: 0.65rem;
        letter-spacing: 2px;
    }
    
    /* Scroll Indicator kleiner */
    .hero-scroll-indicator {
        font-size: 0.5rem;
        bottom: var(--spacing-md);
    }
    
    .scroll-line {
        height: 40px;
    }
    
    /* About Section */
    .about-image .image-placeholder {
        height: 400px;
    }
    
    .about-main-image {
        object-position: center top;
    }
    
    .about-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    /* Stats zu Single Column auf sehr kleinen Screens */
    .about-stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .stat {
        padding: var(--spacing-md);
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* Portfolio Grid */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .portfolio-item {
        height: 350px;
    }
    
    /* Portfolio Overlay immer sichtbar auf Mobile */
    .portfolio-overlay {
        transform: translateY(0);
        background: linear-gradient(0deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 100%);
    }
    
    .portfolio-overlay h3 {
        font-size: 1.3rem;
    }
    
    .portfolio-overlay p {
        font-size: 0.7rem;
    }
    
    /* Contact Section */
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .contact-item a,
    .contact-item span {
        font-size: 0.95rem;
    }
    
    .contact-label {
        font-size: 0.6rem;
        letter-spacing: 2px;
    }
    
    .social-links {
        gap: var(--spacing-sm);
    }
    
    .contact-form input,
    .contact-form textarea {
        font-size: 0.9rem;
    }
    
    /* Section Paddings reduzieren */
    .about,
    .portfolio,
    .contact {
        padding: var(--spacing-xl) 0;
    }
    
    /* Container Padding */
    .container {
        padding: 0 var(--spacing-md);
    }
}

/* Sehr kleine Mobile Geräte */
@media (max-width: 480px) {
    .logo-image {
        height: 24px;
    }
    
    .footer-logo {
        height: 32px;
    }
    
    .nav-menu a {
        font-size: 0.6rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 10vw, 6rem);
    }
    
    .hero-subtitle {
        font-size: 0.6rem;
        letter-spacing: 0.2em;
    }
    
    .btn-primary {
        padding: 0.8rem 2rem;
        font-size: 0.6rem;
    }
    
    .section-title {
        font-size: clamp(2rem, 8vw, 4rem);
    }
    
    .about-image .image-placeholder {
        height: 300px;
    }
    
    .portfolio-item {
        height: 280px;
    }
    
    .portfolio-overlay h3 {
        font-size: 1.1rem;
    }
}

/* Landscape Mode für Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: var(--spacing-xl) 0;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 5rem);
    }
    
    .hero-scroll-indicator {
        display: none;
    }
}

/* Touch Device Anpassungen */
@media (hover: none) and (pointer: coarse) {
    /* Portfolio Hover entfernen, Overlay immer zeigen */
    .portfolio-overlay {
        transform: translateY(0);
    }
    
    /* Custom Cursor entfernen */
    .cursor-dot,
    .cursor-outline {
        display: none !important;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    /* Optimierungen für Retina Displays */
    .hero-title,
    .section-title {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}
