/* Custom Styles for VIDIMASS Modern */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Remove focus outline from all interactive elements */
*:focus,
*:focus-visible,
*:focus-within,
button:focus,
a:focus,
.cta-button:focus,
.nav-link:focus,
.package-card a:focus,
.logo:focus,
.logo a:focus,
h1:focus,
h1 a:focus,
footer a:focus,
.footer a:focus,
.lang-btn:focus,
.mobile-lang-btn:focus {
    outline: none !important;
    box-shadow: none !important;
}
.logo:focus,
.logo a:focus,
h1:focus,
h1 a:focus,
footer a:focus,
.footer a:focus {
    outline: none;
    box-shadow: none;
}

/* Remove outline from burger menu button */
.mobile-menu-toggle:focus {
    outline: none;
}

.mobile-menu-toggle:active {
    opacity: 0.7;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

/* Glassmorphism Card Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-5px);
}

/* Floating Orbs Background Animation */
.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: float 20s infinite ease-in-out;
}

.floating-orb-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.floating-orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    bottom: -10%;
    right: -10%;
    animation-delay: 5s;
}

.floating-orb-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #a855f7, #f472b6);
    top: 50%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, -50px) scale(1.1);
    }
    50% {
        transform: translate(-30px, 50px) scale(0.9);
    }
    75% {
        transform: translate(70px, 30px) scale(1.05);
    }
}

/* Hero Section Animations */
.hero-title {
    animation: fadeInUp 1s ease-out;
}

/* Gradient text shimmer effect */
.hero-title .bg-gradient-to-r {
    background-size: 200% 200%;
    animation: shimmer 3s ease-in-out infinite;
}

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

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

.animate-fade-in {
    animation: fadeIn 1s ease-out 0.3s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Button Hover Effects */
.cta-primary,
.cta-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-primary::before,
.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-primary:hover::before,
.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-secondary {
    position: relative;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(139, 92, 246, 0.5);
}

/* Stats Cards Animation */
.stat-card {
    animation: slideInUp 0.8s ease-out both;
}

.stat-card:nth-child(1) {
    animation-delay: 0.2s;
}

.stat-card:nth-child(2) {
    animation-delay: 0.4s;
}

.stat-card:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Feature Cards Animation */
.feature-card {
    animation: fadeInScale 0.6s ease-out both;
    transition: all 0.3s ease;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
}

/* Package Cards */
.package-card {
    transition: all 0.4s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.2);
}

/* Navigation */
nav {
    transition: all 0.3s ease;
}

.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8b5cf6, #ec4899);
    transition: width 0.3s ease;
}

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

/* Scroll Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0f0f1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #8b5cf6, #ec4899);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #7c3aed, #db2777);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .floating-orb {
        filter: blur(60px);
        opacity: 0.1;
    }
    
    .floating-orb-1 {
        width: 300px;
        height: 300px;
    }
    
    .floating-orb-2 {
        width: 250px;
        height: 250px;
    }
    
    .floating-orb-3 {
        width: 200px;
        height: 200px;
    }
    
    /* Fix Burger Menu Position */
    .mobile-menu-toggle {
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1000;
    }
}

/* Loading State */
body.loading {
    overflow: hidden;
}

/* Pulse Animation for Active Indicator */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Gradient Text Animation */
@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.gradient-animate {
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(15, 15, 26, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6rem 2rem 2rem;
    transition: right 0.4s ease;
    z-index: 40;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    display: block;
    padding: 1rem 0;
    color: #d1d5db;
    text-decoration: none;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu a:hover {
    color: #ffffff;
    padding-left: 1rem;
}

/* Overlay for Mobile Menu */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 30;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Section Spacing */
section {
    position: relative;
}

/* Interactive Elements Focus States */
button:focus,
a:focus {
    outline: 2px solid rgba(139, 92, 246, 0.5);
    outline-offset: 2px;
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   Pricing Table Styles
   ============================================ */

/* Ensure all table cells have correct colors */
.pricing-table td,
table td {
    color: inherit; /* Don't override - let Tailwind classes work */
}

/* Force white color for video/reel count cells */
table tbody td:first-child {
    color: #fff !important;
    font-weight: 600;
}

/* Ensure price cells keep their gradient colors */
table tbody td:nth-child(2) {
    /* Violet, pink, orange from Tailwind classes */
}

/* Ensure "per unit" cells stay gray */
table tbody td:nth-child(3) {
    color: #9ca3af !important; /* text-gray-400 */
}

/* Mobile Pricing Table Fix - Hide 3rd column, 2-column layout */
@media (max-width: 768px) {
    /* Komplett verstecken: 3. Spalte (Pro Video/Reel) */
    table thead th:nth-child(3),
    table tbody td:nth-child(3) {
        display: none !important;
    }
    
    /* 2-Spalten Layout optimieren: Videos/Reels | Preis */
    table thead th:nth-child(1),
    table tbody td:nth-child(1) {
        width: 60%;
        text-align: left;
    }
    
    table thead th:nth-child(2),
    table tbody td:nth-child(2) {
        width: 40%;
        text-align: right;
    }
    
    /* Tabelle responsive machen */
    table {
        font-size: 14px;
    }
    
    table td,
    table th {
        padding: 12px 8px;
    }
}
