/* Custom Styles für Lieblingspulli - Dark Mode */

/* Color Variables */
:root {
    --bg-dark: #0d0d0d;
    --bg-dark-secondary: #1a1a1a;
    --bg-dark-card: #252525;
    --accent: #00ff88;
    --accent-secondary: #00d4ff;
    --pink: #ff006e;
    --cyan: #00d4ff;
    --text-light: rgba(255, 255, 255, 0.7);
}

/* Fonts */
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: white;
}

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

/* Custom Colors */
.bg-dark-custom {
    background-color: var(--bg-dark) !important;
}

.bg-dark-secondary {
    background-color: var(--bg-dark-secondary) !important;
}

.bg-dark-card {
    background-color: var(--bg-dark-card) !important;
}

.bg-accent {
    background-color: var(--accent) !important;
}

.text-accent {
    color: var(--accent) !important;
}

.text-cyan {
    color: var(--cyan) !important;
}

.text-pink {
    color: var(--pink) !important;
}

.text-light-emphasis {
    color: var(--text-light) !important;
}

.bg-gradient-accent {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%) !important;
}

/* Accent Button */
.btn-accent {
    background: var(--accent);
    color: #000;
    border: none;
    font-weight: 600;
}

.btn-accent:hover {
    background: #00cc6e;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 30px rgba(0, 255, 136, 0.4);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-secondary) 100%);
    padding-top: 100px;
    overflow: hidden;
}

/* Video Wrapper with Glow Effect */
.video-wrapper {
    position: relative;
}

.video-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, var(--accent), var(--cyan), var(--pink));
    border-radius: 30px;
    opacity: 0.3;
    filter: blur(40px);
    z-index: -1;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.02);
    }
}

.video-wrapper video {
    border: 2px solid rgba(255, 255, 255, 0.1);
}

/* Feature Icons */
.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-accent.bg-opacity-20 {
    background-color: rgba(0, 255, 136, 0.15) !important;
}

.bg-cyan.bg-opacity-20 {
    background-color: rgba(0, 212, 255, 0.15) !important;
}

.bg-pink.bg-opacity-20 {
    background-color: rgba(255, 0, 110, 0.15) !important;
}

/* Cards */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 16px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.15) !important;
}

/* Carousel Customization */
.carousel-inner {
    border-radius: 16px;
    overflow: hidden;
}

.carousel-inner img {
    object-fit: cover;
    max-height: 600px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    background-color: var(--accent);
}

/* Navbar */
.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
}

.bg-dark-custom.navbar {
    background-color: rgba(13, 13, 13, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Social Buttons */
.btn-outline-light.rounded-circle {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline-light.rounded-circle:hover {
    transform: scale(1.1);
    background: var(--accent);
    border-color: var(--accent);
    color: #000;
}

/* Gallery Section */
#galerie {
    background-color: var(--bg-dark-secondary);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .display-2 {
        font-size: 2.5rem;
    }
    
    .hero-section {
        padding-top: 80px;
    }
}
