/* ═══════════════════════════════════════════════════════════════════════════
   FISCHMEISTER DARK LUXURY DESIGN SYSTEM
   "Der Unterschied, den man schmeckt – und sieht."
   ═══════════════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════════════
   CUSTOM PROPERTIES / CSS VARIABLES
   ═══════════════════════════════════════════════════════════════════════════ */
:root {
    /* Primary Colors - Deep Luxury */
    --color-bg-primary: #0a0a0f;
    --color-bg-secondary: #12121a;
    --color-bg-tertiary: #1a1a25;
    --color-bg-card: #16161f;
    --color-bg-hover: #1f1f2a;
    
    /* Accent Colors */
    --color-gold: #c9a227;
    --color-gold-light: #e8c547;
    --color-gold-dark: #9a7b1c;
    --color-accent: #f26c4f;
    --color-accent-light: #ff8a70;
    
    /* Brand Colors */
    --color-brand-blue: #0a2d4d;
    --color-brand-blue-light: #1a4a7a;
    
    /* Text Colors */
    --color-text-primary: #f5f5f7;
    --color-text-secondary: #a1a1a6;
    --color-text-muted: #6e6e73;
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #c9a227 0%, #f4d03f 50%, #c9a227 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0f 0%, #12121a 100%);
    --gradient-card: linear-gradient(145deg, rgba(22,22,31,0.8) 0%, rgba(10,10,15,0.9) 100%);
    --gradient-hero: linear-gradient(180deg, transparent 0%, rgba(10,10,15,0.7) 50%, #0a0a0f 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.4);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.5);
    --shadow-gold: 0 8px 32px rgba(201, 162, 39, 0.2);
    --shadow-glow: 0 0 40px rgba(201, 162, 39, 0.15);
    
    /* Border */
    --border-subtle: 1px solid rgba(255,255,255,0.08);
    --border-gold: 1px solid rgba(201, 162, 39, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --section-padding: clamp(4rem, 10vw, 8rem);
}

/* ═══════════════════════════════════════════════════════════════════════════
   BASE STYLES
   ═══════════════════════════════════════════════════════════════════════════ */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ═══════════════════════════════════════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════════════════════════════════════ */
.font-display {
    font-family: var(--font-display);
}

.text-gradient-gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gold { color: var(--color-gold); }
.text-accent { color: var(--color-accent); }
.text-muted { color: var(--color-text-secondary); }

/* Heading Styles */
.heading-xl {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.heading-lg {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 600;
    line-height: 1.15;
}

.heading-md {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 600;
    line-height: 1.2;
}

.heading-sm {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
}

.subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-text-secondary);
    font-weight: 400;
    letter-spacing: 0.01em;
}

.eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
}

/* ═══════════════════════════════════════════════════════════════════════════
   LAYOUT COMPONENTS
   ═══════════════════════════════════════════════════════════════════════════ */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 3rem;
    }
}

.section {
    padding: var(--section-padding) 0;
}

.section-dark { background-color: var(--color-bg-primary); }
.section-darker { background-color: var(--color-bg-secondary); }

/* ═══════════════════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════════════════ */
.nav-luxury {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: var(--border-subtle);
    transition: var(--transition-smooth);
}

.nav-luxury.scrolled {
    background: rgba(10, 10, 15, 0.95);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.nav-logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--color-gold);
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-primary);
    letter-spacing: -0.01em;
}

.nav-link {
    position: relative;
    color: var(--color-text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    transition: var(--transition-fast);
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

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

/* ═══════════════════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
}

.btn-gold {
    background: var(--gradient-gold);
    color: #0a0a0f;
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow), 0 12px 40px rgba(201, 162, 39, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--color-text-primary);
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.3);
}

.btn-accent {
    background: var(--color-accent);
    color: white;
}

.btn-accent:hover {
    background: var(--color-accent-light);
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   CARDS
   ═══════════════════════════════════════════════════════════════════════════ */
.card {
    background: var(--gradient-card);
    border: var(--border-subtle);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255,255,255,0.12);
}

.card-premium {
    position: relative;
}

.card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-gold);
}

.card-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.card:hover .card-image {
    transform: scale(1.05);
}

.card-image-container {
    overflow: hidden;
    position: relative;
}

.card-content {
    padding: 1.5rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   VIDEO PLAYER - CINEMA STYLE
   ═══════════════════════════════════════════════════════════════════════════ */
.video-cinema {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #000;
}

.video-cinema::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 17px;
    background: var(--gradient-gold);
    z-index: -1;
    opacity: 0.5;
}

.video-cinema video {
    width: 100%;
    display: block;
}

.video-player-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transition: var(--transition-fast);
}

.video-cinema:hover .video-player-controls {
    opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PRODUCT SHOWCASE
   ═══════════════════════════════════════════════════════════════════════════ */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--gradient-card);
    border: var(--border-subtle);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.375rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 20px;
}

.badge-gold {
    background: rgba(201, 162, 39, 0.15);
    color: var(--color-gold);
    border: 1px solid rgba(201, 162, 39, 0.3);
}

.badge-premium {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.2), rgba(201, 162, 39, 0.1));
    color: var(--color-gold-light);
}

.badge-new {
    background: rgba(242, 108, 79, 0.15);
    color: var(--color-accent);
    border: 1px solid rgba(242, 108, 79, 0.3);
}

/* ═══════════════════════════════════════════════════════════════════════════
   TEAM MEMBER CARDS
   ═══════════════════════════════════════════════════════════════════════════ */
.team-card {
    background: var(--gradient-card);
    border: var(--border-subtle);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.team-card-image {
    position: relative;
    overflow: hidden;
}

.team-card-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.team-card:hover .team-card-image img {
    transform: scale(1.05);
}

.team-card-content {
    padding: 1.5rem;
}

.team-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 0.25rem;
}

.team-card-role {
    font-size: 0.875rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   AWARDS & BADGES
   ═══════════════════════════════════════════════════════════════════════════ */
.award-banner {
    background: var(--gradient-gold);
    color: #0a0a0f;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.875rem;
}

.award-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 30px;
    color: var(--color-gold);
}

/* ═══════════════════════════════════════════════════════════════════════════
   GALLERY / MEDIA LOUNGE
   ═══════════════════════════════════════════════════════════════════════════ */
.media-lounge {
    background: var(--color-bg-secondary);
    padding: 4rem 0;
}

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

.media-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.media-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.media-item video,
.media-item img {
    width: 100%;
    display: block;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */
.footer-luxury {
    background: var(--color-bg-secondary);
    border-top: var(--border-subtle);
    padding: 4rem 0 2rem;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

.footer-links a {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: var(--border-subtle);
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.8rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   DIVIDERS & DECORATIONS
   ═══════════════════════════════════════════════════════════════════════════ */
.divider {
    width: 60px;
    height: 2px;
    background: var(--gradient-gold);
    margin: 1rem 0;
}

.divider-center {
    margin: 1.5rem auto;
}

.gold-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

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

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes pulse-gold {
    0%, 100% {
        box-shadow: 0 0 20px rgba(201, 162, 39, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(201, 162, 39, 0.5);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE UTILITIES
   ═══════════════════════════════════════════════════════════════════════════ */
.hide-mobile {
    display: none;
}

@media (min-width: 768px) {
    .hide-mobile {
        display: block;
    }
    .hide-desktop {
        display: none;
    }
}

/* Image handling for high-res assets */
img {
    max-width: 100%;
    height: auto;
}

.img-cover {
    object-fit: cover;
}

.img-contain {
    object-fit: contain;
}

/* ═══════════════════════════════════════════════════════════════════════════
   DROPDOWN MENU - LUXURY STYLE
   ═══════════════════════════════════════════════════════════════════════════ */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    background: rgba(22, 22, 31, 0.98);
    backdrop-filter: blur(20px);
    border: var(--border-subtle);
    border-radius: 8px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-lg);
    margin-top: 0.5rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.dropdown-menu a:hover {
    color: var(--color-text-primary);
    background: rgba(255,255,255,0.05);
}

/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE MENU
   ═══════════════════════════════════════════════════════════════════════════ */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    padding: 6rem 2rem 2rem;
    transform: translateX(100%);
    transition: var(--transition-smooth);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu a {
    display: block;
    padding: 1rem 0;
    font-size: 1.25rem;
    color: var(--color-text-primary);
    text-decoration: none;
    border-bottom: var(--border-subtle);
}

/* ═══════════════════════════════════════════════════════════════════════════
   STAT COUNTERS
   ═══════════════════════════════════════════════════════════════════════════ */
.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--color-gold);
    line-height: 1;
}

.stat-label {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ═══════════════════════════════════════════════════════════════════════════
   BLOCKQUOTES
   ═══════════════════════════════════════════════════════════════════════════ */
.quote-luxury {
    position: relative;
    padding: 2rem;
    background: var(--gradient-card);
    border-left: 3px solid var(--color-gold);
    border-radius: 0 12px 12px 0;
    margin: 2rem 0;
}

.quote-luxury::before {
    content: '"';
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--color-gold);
    opacity: 0.3;
    position: absolute;
    top: -0.5rem;
    left: 1rem;
    line-height: 1;
}

.quote-luxury p {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

.quote-luxury footer {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

.quote-luxury footer strong {
    color: var(--color-gold);
}

/* ═══════════════════════════════════════════════════════════════════════════
   TIMELINE
   ═══════════════════════════════════════════════════════════════════════════ */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-gold), var(--color-gold-dark));
}

@media (min-width: 768px) {
    .timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }
}

.timeline-item {
    position: relative;
    padding-left: 50px;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .timeline-item {
        width: 50%;
        padding-left: 0;
        padding-right: 40px;
    }
    
    .timeline-item:nth-child(even) {
        margin-left: 50%;
        padding-left: 40px;
        padding-right: 0;
    }
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 8px;
    width: 18px;
    height: 18px;
    background: var(--color-gold);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.5);
}

@media (min-width: 768px) {
    .timeline-item::before {
        left: auto;
        right: -9px;
    }
    
    .timeline-item:nth-child(even)::before {
        left: -9px;
        right: auto;
    }
}
