:root {
    --bg: #000000;
    --gold: #C9A96E;
    --text: #f0f0f0;
    --serif-head: 'Playfair Display', serif;
    --serif-body: 'EB Garamond', serif;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--serif-body);
    line-height: 1.8;
    font-size: 1.2rem;
    overflow-x: hidden;
    position: relative;
}

/* Rolex-inspired Background – dark luxury with gold texture */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('pictures/cover.jpg'); /* Lokal verknüpft – aus pictures-Ordner */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax für Power beim Scrollen */
    z-index: -3;
    opacity: 0.9; /* Passe an – 1.0 für stärker, 0.8 für subtiler */
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.8));
    z-index: -2;
    pointer-events: none;
}

/* Subtle gold lines for Rolex precision feel */
.hero::before, .section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--gold) 1px, transparent);
    opacity: 0.2;
    pointer-events: none;
}

/* Navigation – fixed, gold hover like Rolex menu */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 100;
    padding: 1.5rem 0;
    transition: background 0.3s;
}

.nav:hover {
    background: rgba(0,0,0,0.9);
}

.nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav li {
    margin: 0 1.5rem;
}

.nav a {
    color: var(--gold);
    text-decoration: none;
    font-family: var(--serif-head);
    font-size: 1.1rem;
    transition: color 0.3s, text-shadow 0.3s;
}

.nav a:hover {
    color: #fff;
    text-shadow: 0 0 10px var(--gold);
}

.hamburger {
    display: none;
    cursor: pointer;
    position: absolute;
    right: 2rem;
    top: 1.5rem;
}

.hamburger div {
    width: 30px;
    height: 2px;
    background: var(--gold);
    margin: 6px 0;
}

/* Hero – full-screen, centered, with Rolex-like minimalism */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 80%;
}

.portrait {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    margin-bottom: 2rem;
    transition: transform 0.5s, box-shadow 0.5s;
}

.hero-content:hover .portrait {
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--gold);
}

h1 {
    font-family: var(--serif-head);
    font-size: 4.5rem;
    color: var(--gold);
    margin: 0;
    letter-spacing: 0.1rem;
}

.tagline {
    font-size: 1.6rem;
    margin-top: 1rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    margin-top: 3rem;
    padding: 1rem 3rem;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-family: var(--serif-head);
    font-size: 1.2rem;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.cta-button:hover {
    background: var(--gold);
    color: var(--bg);
}

/* Sections – smooth fade, Rolex-like whitespace */
.section {
    padding: 10rem 10%;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

h2 {
    font-family: var(--serif-head);
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 3rem;
    letter-spacing: 0.05rem;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.timeline-item {
    margin-bottom: 2rem;
    position: relative;
    padding-left: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 1.2rem;
    top: 0.8rem;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

.year {
    color: var(--gold);
    font-weight: bold;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.service-card {
    padding: 2rem;
    border: 1px solid var(--gold);
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 0 20px var(--gold);
}

iframe {
    border: none;
    margin-top: 2rem;
}

form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

input, textarea {
    padding: 1rem;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--text);
    font-family: var(--serif-body);
    transition: border-color 0.3s;
}

input:focus, textarea:focus {
    border-color: #fff;
}

button {
    padding: 1rem;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    cursor: pointer;
    font-family: var(--serif-head);
    transition: background 0.3s, color 0.3s;
}

button:hover {
    background: var(--gold);
    color: var(--bg);
}

footer {
    padding: 3rem;
    text-align: center;
    border-top: 1px solid var(--gold);
    opacity: 0.8;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

footer a {
    color: var(--gold);
    text-decoration: none;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s, transform 0.8s;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Cookie Banner – luxury minimal */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.9);
    color: var(--text);
    padding: 1.5rem;
    text-align: center;
    z-index: 200;
    border-top: 2px solid var(--gold);
    display: none;
}

.cookie-content p {
    margin: 0 0 1rem;
    font-size: 1rem;
}

.cookie-content button {
    padding: 0.8rem 1.5rem;
    margin: 0 0.5rem;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    cursor: pointer;
    font-family: var(--serif-head);
    transition: background 0.3s, color 0.3s;
}

.cookie-content button:hover {
    background: var(--gold);
    color: #000;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    .nav ul {
        display: none;
        flex-direction: column;
        background: var(--bg);
        position: absolute;
        top: 5rem;
        left: 0;
        width: 100%;
        padding: 1rem 0;
    }
    .nav ul.active {
        display: flex;
    }
    .nav li {
        margin: 1rem 0;
        text-align: center;
    }
    h1 {
        font-size: 3rem;
    }
    .portrait {
        width: 200px;
        height: 200px;
    }
    .section {
        padding: 6rem 5%;
    }
    footer ul {
        flex-direction: column;
    }

    .cookie-content button {
        display: block;
        width: 80%;
        margin: 0.5rem auto;
    }
}