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

body {
    font-family: monospace;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

h1 {
    text-transform: uppercase;
    color: #e8b86d;
}

.container {
    max-width: 70%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Password Protection Styles */
.password-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.password-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    max-width: 400px;
    width: 90%;
}

.password-content h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.password-content p {
    color: #666;
    margin-bottom: 2rem;
}

#passwordForm {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#passwordInput {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

#passwordInput:focus {
    outline: none;
    border-color: #e8b86d;
}

#passwordForm button {
    background: linear-gradient(45deg, #e8b86d, #daa547);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

#passwordForm button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(232, 184, 109, 0.3);
}

.error-message {
    color: #e74c3c;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.main-content.hidden {
    display: none;
}

/* Header */
header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 80px;
}

.logo {
    height: 56px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo img {
    width: 56px;
}

/* Burger Menu Styles */
.burger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 25px;
    justify-content: space-between;
    z-index: 1001;
}

.burger-line {
    width: 100%;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Burger Menu Animation */
.burger-menu.active .burger-line:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    padding: 0.5rem 0;
}

.nav-links a:hover {
    color: #e8b86d;
}

/* Hero Section - Das animierte Slideshow */
.hero {
    padding: 0px 0 0 0;
    margin-top: 80px; /* Header height offset */
}

/* About Section - BEREINIGT OHNE STÖRENDE EFFEKTE */
.about {
    padding: 40px 0;
    background: #e8b86d;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 160px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    text-transform: uppercase;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.about-image {
    width: 100%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: -1vmin 1vmin 0 rgba(0, 0, 0, 0.25);
}

.about-image div {
    width: 100%;
    height: 100%;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: solid 2px #2c3e50;
}

/* Services Section */
.services {
    padding: 40px 0;
    background: white;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #907758;
    text-transform: uppercase;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.service-icon img {
    width: 80px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    text-transform: uppercase;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #e8b86d;
    text-transform: uppercase;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #e8b86d;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-item i {
    margin-right: 1rem;
    color: #e8b86d;
}

.contact-form {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #e8b86d;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: none;
    background: rgba(255,255,255,0.9);
    font-size: 1rem;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(45deg, #e8b86d, #daa547);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(232, 184, 109, 0.3);
}

/* Footer */
footer {
    background: #1a252f;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #e8b86d, #daa547);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 4px 20px rgba(232, 184, 109, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(232, 184, 109, 0.4);
    background: linear-gradient(45deg, #daa547, #e8b86d);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

/* ANIMIERTES SLIDESHOW SYSTEM - KOMPLETT */
:root {
    --t: 4.5s;
    --slides: 5;
    --color: hsl(15, 75%, 40%);
    --font: 'Abril Fatface', sans-serif;
}

.untitled {  
    position: relative;
    height: 80vh;
    width: 100%;
    overflow: hidden;
}

.untitled__shutters {
    position: absolute;
    height: 150vmax;
    width: 150vmax;
    left: calc(50% - 75vmax);
    top: calc(50% - 75vmax);
    pointer-events: none;
    z-index: 2;
    animation: rotateFrame calc(var(--t) * 4) linear infinite;
}

@keyframes rotateFrame {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(180deg); }
}

.untitled__shutters:before, 
.untitled__shutters:after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    left: 50%;
    transform: translate3d(-50%, 0, 0);
    background-color: #2c3e50;
    pointer-events: auto;
}

.untitled__shutters:before {
    bottom: 50%;
    animation: openTop calc(var(--t) * 2) infinite;
}

@keyframes openTop {
    0% { 
        transform: translate3d(-50%, 0, 0); 
        animation-timing-function: cubic-bezier(0.8, 0.00, 0.1, 1); 
    }
    40% { 
        transform: translate3d(-50%, -65vmax, 0); 
        animation-timing-function: cubic-bezier(0.600, 0.040, 0.980, 0.335); 
    }
    70% { 
        transform: translate3d(-50%, -65vmax, 0); 
        animation-timing-function: cubic-bezier(0.600, 0.040, 0.980, 0.335); 
    }
    100% { 
        transform: translate3d(-50%, 0, 0); 
        animation-timing-function: cubic-bezier(0.600, 0.040, 0.980, 0.335); 
    }
}

.untitled__shutters:after {
    top: 50%;
    animation: openBottom calc(var(--t) * 2) infinite;
}

@keyframes openBottom {
    0% { 
        transform: translate3d(-50%, 0, 0); 
        animation-timing-function: cubic-bezier(0.8, 0.00, 0.1, 1); 
    }
    40% { 
        transform: translate3d(-50%, 65vmax, 0); 
        animation-timing-function: cubic-bezier(0.600, 0.040, 0.980, 0.335); 
    }
    70% { 
        transform: translate3d(-50%, 65vmax, 0); 
        animation-timing-function: cubic-bezier(0.600, 0.040, 0.980, 0.335); 
    }
    100% { 
        transform: translate3d(-50%, 0, 0); 
        animation-timing-function: cubic-bezier(0.600, 0.040, 0.980, 0.335); 
    }
}

.untitled__slides {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #2c3e50;
}

.untitled__slide {
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: 0;
    animation: showHideSlide infinite calc(var(--t) * var(--slides) * 2) steps(1);
}

@keyframes showHideSlide {
    0% {
        opacity: 1; 
        pointer-events: auto;
        z-index: 1;
    }
    20% {
        opacity: 0;
        pointer-events: none;
        z-index: -1;
    }
    100% {
        opacity: 0;
        pointer-events: none;
        z-index: -1;
    }
}

.untitled__slide:nth-child(1) { 
    animation-delay: calc(var(--t) * 0 * 2);
}
.untitled__slide:nth-child(1) .untitled__slideBg {
    background-image: url('./src/gallery/01.jpg');
}

.untitled__slide:nth-child(2) { 
    animation-delay: calc(var(--t) * 1 * 2);
}
.untitled__slide:nth-child(2) .untitled__slideBg {
    background-image: url('./src/gallery/02.jpg');
}

.untitled__slide:nth-child(3) { 
    animation-delay: calc(var(--t) * 2 * 2);
}
.untitled__slide:nth-child(3) .untitled__slideBg {
    background-image: url('./src/gallery/03.jpg');
}

.untitled__slide:nth-child(4) { 
    animation-delay: calc(var(--t) * 3 * 2);
}
.untitled__slide:nth-child(4) .untitled__slideBg {
    background-image: url('./src/gallery/04.jpg');
}

.untitled__slide:nth-child(5) { 
    animation-delay: calc(var(--t) * 4 * 2);
}
.untitled__slide:nth-child(5) .untitled__slideBg {
    background-image: url('./src/gallery/05.jpg');
}

.untitled__slideBg {
    position: relative;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--color);
    opacity: 1;
    z-index: -1;
    animation: bgInOut calc(var(--t) * 4) calc(var(--t) * -2) infinite; 
}

@keyframes bgInOut {
    0% { 
        transform: rotate(-45deg) scale(1.1); 
        animation-timing-function: cubic-bezier(0.165, 0.840, 0.440, 1.000);
    }
    33% { 
        transform: rotate(0deg);
    }
    50% { 
        transform: rotate(0deg); 
    }
    66% { 
        transform: rotate(0deg); 
        animation-timing-function: cubic-bezier(0.895, 0.030, 0.685, 0.220); 
    }
    100% { 
        transform: rotate(45deg) scale(0.9);
    }
}

.untitled__slideContent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%,-50%,0);
    color: white;
    font-family: var(--font);
    line-height: 0.8;
    letter-spacing: -0.025em;
    z-index: 2;
    opacity: 1;
    text-shadow: 0 0 0.5em rgba(200, 100, 60, 0.25);
    mix-blend-mode: lighten;
}

.untitled__slideContent span {
    display: block;
    font-size: 15vmin;
}

.button {
    font-family: 'Roboto Mono', sans-serif;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 2vmin;
    display: inline-block;
    position: relative;
    border: 3px solid white;
    box-shadow: -0.5vmin 0.5vmin 0 rgba(255, 255, 255, 0.5);
    background: transparent;
    margin-top: 5vmin;
    mix-blend-mode: lighten;
    color: white;
    padding: 2vmin 2vmin 1.8vmin 2vmin;
    letter-spacing: 0.1em;
    text-shadow: none;
    line-height: 1;
    transform: translate3d(0.5vmin, -0.5vmin, 0);
    transition: all 100ms linear;
}

.button:hover { 
    transform: translate3d(1vmin, -1vmin, 0);
    box-shadow: -1vmin 1vmin 0 rgba(255, 255, 255, 0.5);
    background: white;
    color: black;
}

.button:active { 
    transform: translate3d(0px, 0px, 0);
    box-shadow: -0px 0px 0 rgba(255, 255, 255, 0.5);
}

/* Anti-Spam CSS Ergänzungen für style.css */
/* Fügen Sie diese Styles zu Ihrer bestehenden style.css hinzu: */

/* Honeypot - unsichtbares Feld für Bots */
.honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    overflow: hidden !important;
}

/* Math Captcha Styling */
.math-captcha {
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 1rem;
}

.math-captcha label {
    color: #e8b86d;
    font-weight: bold;
}

/* Rate Limit Info */
.rate-limit-info {
    background: rgba(232, 184, 109, 0.1);
    color: #e8b86d;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 14px;
    border: 1px solid rgba(232, 184, 109, 0.3);
}

/* Erfolgs- und Fehlermeldungen */
.success-message {
    background: rgba(72, 187, 120, 0.1);
    color: #48bb78;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid rgba(72, 187, 120, 0.3);
}

.error-message {
    background: rgba(245, 101, 101, 0.1);
    color: #f56565;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid rgba(245, 101, 101, 0.3);
}

.timer-display {
    background: rgba(255, 235, 59, 0.1);
    color: #ffc107;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 235, 59, 0.3);
}

/* Button disabled state */
.submit-btn:disabled {
    background: #666 !important;
    cursor: not-allowed;
    transform: none !important;
    opacity: 0.6;
}

/* Mobile Anpassungen für Anti-Spam Elemente */
@media (max-width: 480px) {
    .math-captcha {
        padding: 12px;
    }
    
    .rate-limit-info,
    .success-message,
    .error-message,
    .timer-display {
        padding: 12px;
        font-size: 13px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Burger Menu wird angezeigt */
    .burger-menu {
        display: flex;
    }
    
    /* Navigation Links werden zu Mobile Menu */
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 2rem;
        padding-top: 4rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.3s ease;
    }
    
    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-links.active li:nth-child(1) {
        transition-delay: 0.1s;
    }
    
    .nav-links.active li:nth-child(2) {
        transition-delay: 0.2s;
    }
    
    .nav-links.active li:nth-child(3) {
        transition-delay: 0.3s;
    }
    
    .nav-links.active li:nth-child(4) {
        transition-delay: 0.4s;
    }
    
    .nav-links a {
        font-size: 1.2rem;
        padding: 1rem 0;
    }
    
    /* Container Anpassung */
    .container {
        max-width: 95%;
        padding: 0 15px;
    }
    
    /* Grid Layouts werden single column */
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Password Container */
    .password-container {
        padding: 2rem;
        margin: 0 15px;
    }
    
    /* Slideshow */
    .untitled {
        height: 60vh;
    }
    
    .untitled__slideContent span {
        font-size: 12vmin;
    }
    
    .button {
        font-size: 3vmin;
        padding: 3vmin 3vmin 2.5vmin 3vmin;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .services h2,
    .about-text h2 {
        font-size: 2rem;
        text-align: center;
        text-transform: uppercase;
    }
    
    .contact h2 {
        font-size: 2rem;
    }
    
    .untitled__slideContent span {
        font-size: 10vmin;
    }
    
    .service-card {
        padding: 1.5rem;
    }

    .service-card p {
        padding: 16px;
    }
    
    .contact-content {
        gap: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }

    .about-content {
        padding: 24px;
    }

    .services-grid {
        gap: 0px;
    }

    /* Scroll to Top Button Mobile */
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}