:root {
    --bg-color: #FFFFFF;
    --text-color: #333333;
    --accent-color: #D8C3A5; /* Soft Sand-Beige */
    --accent-hover: #C5B093;
    --font-main: 'Montserrat', sans-serif;
    --spacing-section: 120px;
    --spacing-container: 24px;
}

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

body {
    background-color: var(--bg-color);
    /* Removed texture background for clean minimalist look */
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

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

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-weight: 400;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #fff;
    border-radius: 2px;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(216, 195, 165, 0.4);
}

/* Header */
.header {
    padding: 2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: padding 0.3s ease;
}

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

.logo {
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: -0.5px;
}

.nav-list {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-list a {
    font-size: 0.9rem;
    font-weight: 400;
    position: relative;
    padding: 0 5px;
}

/* Brackets for menu items on hover or active */
.nav-list a::before,
.nav-list a::after {
    content: '[';
    position: absolute;
    left: -10px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--accent-color);
}

.nav-list a::after {
    content: ']';
    left: auto;
    right: -10px;
}

.nav-list a:hover::before,
.nav-list a:hover::after {
    opacity: 1;
    transform: translateX(5px);
}

.nav-list a:hover::before {
    transform: translateX(0);
}

.nav-list a:hover::after {
    transform: translateX(0);
}

.nav-list a:hover {
    color: var(--text-color); /* Keep text black on hover, brackets color it */
}

/* Brackets for Headings */
.section-title, .headline {
    position: relative;
    display: inline-block;
}

.section-title::before,
.section-title::after {
    content: '[';
    color: var(--accent-color);
    margin-right: 10px;
    font-weight: 300;
}

.section-title::after {
    content: ']';
    margin-right: 0;
    margin-left: 10px;
}

.btn-nav {
    border-bottom: 1px solid var(--text-color);
    padding-bottom: 2px;
}

.btn-nav:hover {
    border-color: var(--accent-color);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.headline {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.sub-headline {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 90%;
    opacity: 0.8;
}

/* Hero Visual & Slider */
.hero-visual {
    position: relative;
    height: 600px;
    width: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-slider-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 40px;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.1);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* transition: opacity 1s ease-in-out; */ /* Controlled by JS now if we do fades */
}

/* Slider Fade Transition Classes */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    object-fit: cover;
}

.slide.active {
    opacity: 1;
}


/* Impressum */
.impressum {
    background-color: #f4f4f4;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.impressum-content {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.impressum-content p {
    margin-bottom: 0.5rem;
    color: #666;
}

.impressum-content a {
    color: var(--text-color);
    text-decoration: underline;
    text-decoration-color: var(--accent-color);
}

/* Apple-like Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    filter: blur(10px);
    /* Apple-style blur reveal */
    transition:
        opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1),
        transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1),
        filter 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform, filter;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(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;
}

/* Responsive */
@media (max-width: 768px) {
    .headline {
        font-size: 2.5rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .nav-list {
        display: none;
    }

    /* Simplified mobile for now */
    .hero-visual {
        width: 100%;
        height: 300px;
        margin-top: 2rem;
    }

    .philosophy-body {
        font-size: 1rem;
    }
}