/* Theme variables */
:root {
    --color-brand-50: #f0f4f8;
    --color-brand-100: #d9e2ec;
    --color-brand-500: #334e68;
    --color-brand-600: #243b53;
    --color-brand-800: #102a43; /* New: Darker contrast for blue theme */
    --color-brand-900: #0f172a;
    --color-accent-500: #d4af37;
}

/* Alternative Logo-Matching Theme (Green-Based) */
[data-theme="logo-match"] {
    --color-brand-50: #f0fdf4;
    --color-brand-100: #dcfce7;
    --color-brand-500: #10b981;
    --color-brand-600: #059669;
    --color-brand-800: #052e23; /* New: Darker contrast for green theme */
    --color-brand-900: #064e3b; /* Ein tiefes Waldgrün/Smaragd */
    --color-accent-500: #fbbf24; /* Ein warmes Gold/Amber für Akzente */
}

/* Custom Animations and Global Overrides */
html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Subtle glow effect for premium feel */
.glow-effect {
    box-shadow: 0 0 40px -10px rgba(212, 175, 55, 0.3);
}

/* Micro animations for hover states */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 3D Perspective & Rotation for Flyers */
.perspective {
    perspective: 1500px;
}

.rotate-y-12 {
    transform: rotateY(12deg);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.-rotate-y-12 {
    transform: rotateY(-12deg);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.group:hover .rotate-y-12,
.group:hover .-rotate-y-12 {
    transform: rotateY(0deg) scale(1.02);
}