:root {
    --fest-orange: #ffa24d;
    --fest-gruen-dark: #1e3a1a;
    --fest-gruen-light: #2d4a22;
    --vintage-creme: #fcfaf2;
    --tiefschwarz: #121212;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--vintage-creme);
    color: var(--tiefschwarz);
}

h1, h2, h3, .serif {
    font-family: 'Playfair Display', serif;
}

.hero-gradient {
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7)), 
                url('../images/Bild090.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.glass-nav {
    background: rgba(252, 250, 242, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.btn-elegant {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-elegant::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.btn-elegant:hover::after {
    transform: translateY(0);
}

.bento-card {
    transition: all 0.4s ease;
    border: 1px solid rgba(30, 58, 26, 0.05);
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(30, 58, 26, 0.08);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.text-vertical {
    writing-mode: vertical-rl;
    text-orientation: mixed;
}
