:root {
    --gold: #d4af37;
    --dark-gold: #aa8c2c;
    --cream: #f5f5dc;
    --dark-blue: #1a2639;
    --royal-purple: #4b0082;
}

body {
    font-family: 'Playfair Display', serif;
    background-color: var(--dark-blue);
    color: var(--cream);
    background-image: linear-gradient(rgba(26, 38, 57, 0.95), rgba(26, 38, 57, 0.95)), url('/api/placeholder/1920/1080');
    background-size: cover;
    background-attachment: fixed;
}

/* Neue Stile für mehr Exklusivität */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Montserrat:wght@300;400;500;600;700&display=swap');

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

p, a, button, input, span {
    font-family: 'Montserrat', sans-serif;
}

.luxury-shadow {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.gold-gradient {
    background: linear-gradient(135deg, var(--gold) 0%, #f2d675 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, #f2d675 50%, var(--gold) 100%);
    color: var(--dark-blue);
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    background: linear-gradient(135deg, #e5c14a 0%, #f7e297 50%, #e5c14a 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
}

.luxury-card {
    background: rgba(26, 38, 57, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--gold);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.luxury-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.animated-border {
    position: relative;
    overflow: hidden;
}

.animated-border::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: border-flow 3s infinite;
}

@keyframes border-flow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Bestehende Stile */
.gold-text {
    color: var(--gold);
}

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

.luxury-input {
    background-color: rgba(245, 245, 220, 0.1);
    border: 1px solid var(--gold);
    color: var(--cream);
}

.luxury-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3);
}

.pattern-bg {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.testimonial {
    position: relative;
}

.testimonial::before {
    content: "\201C";
    position: absolute;
    top: -30px;
    left: -20px;
    font-size: 100px;
    color: rgba(212, 175, 55, 0.2);
    font-family: serif;
}

/* Sticky Header */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(26, 38, 57, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-100%);
}

.sticky-header.visible {
    transform: translateY(0);
}

/* Hover-Menü */
.nav-link {
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Scroll-Up Button */
.scroll-up-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, #f2d675 50%, var(--gold) 100%);
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.scroll-up-btn.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-up-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* FAQ Sektion */
.faq-item {
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.faq-question {
    cursor: pointer;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    padding-bottom: 1.5rem;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}
