/* Grund-Layout */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
    background-color: #ffffff;
    color: #000000;
    font-family: 'Lato', sans-serif;
    /* Verhindert horizontales Scrollen */
    overflow-x: hidden; 
}

/* Header */
header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Box-Sizing sorgt dafür, dass Padding die 100% Breite nicht sprengt */
    box-sizing: border-box; 
    padding: 1.5rem 2rem; 
    background-color: #ffffff;
    position: relative;
    z-index: 30;
}

@media (min-width: 768px) {
    header {
        padding: 1.5rem 3rem;
    }
}

.logo {
    height: auto;
    width: 50px; /* Feste Breite statt 10vw, um auf Mobilgeräten stabil zu bleiben */
}

#book-btn {
    background-color: #000000;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.75rem; /* Etwas kleiner für Mobilgeräte */
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.6rem 1.2rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    white-space: nowrap; /* Button bricht nicht um */
}

@media (min-width: 768px) {
    #book-btn {
        font-size: 0.875rem;
        padding: 0.75rem 1.75rem;
    }
}

#book-btn:hover {
    background-color: #1f2937;
}

/* Hero Section */
.hero-video-section {
    position: relative;
    width: 100%;
    height: 30vh;
    min-height: 180px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f3f4f6;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    z-index: 10;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 20;
}

.hero-content {
    position: relative;
    z-index: 30;
    text-align: center;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
}

#hero-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 10vw, 6rem); /* Flexiblere Größe */
    color: #ffffff;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin: 0;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

#hero-tagline {
    font-size: clamp(0.9rem, 3vw, 1.25rem);
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-top: 0.5rem;
}

/* About Section */
.about-section {
    padding: 0.5rem 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
    box-sizing: border-box;
}

#about-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

#about-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #374151;
    font-style: italic;
}

.Debie {
    float: left;
    width: 200px;
    max-width: 30vw;
}

@media (min-width: 768px) {
    .Debie {
        float: left;
        margin: 0 2rem 1rem 0;
        width: 250px;
    }
}

/* Footer */
footer {
    background-color: #000000;
    text-align: center;
    padding: 5rem 1rem;
    width: 100%;
    box-sizing: border-box;
}

.footer-email {
    color: #ffffff;
    font-size: clamp(1.2rem, 5vw, 2rem);
    text-decoration: none;
    font-weight: 300;
    word-break: break-all; /* Verhindert Überlaufen bei langen E-Mails */
}

.footer-label {
	color: white;
}

a:hover {
	font-style: italic;
}

/* Animationen & Reste beibehalten... */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeUp 1s ease forwards; }
.delay-1 { animation-delay: 0.2s; opacity: 0; }
.delay-2 { animation-delay: 0.4s; opacity: 0; }
