/*
Theme Name: AI Videos Premium
Theme URI: https://aivideos.eu
Author: Antigravity AI
Description: A premium, dark-mode theme for AI video experts and affiliate marketers.
Version: 1.0.0
License: MIT
Text Domain: aivideos-premium
*/

:root {
  --obsidian: #0F0F10;
  --acid-chrome: #E5FF45;
  --matte-silver: #A1A1A6;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  background-color: var(--obsidian);
  color: white;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  margin: 0;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: 'Outfit', sans-serif;
  color: var(--acid-chrome);
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1.1;
}

a {
  color: var(--acid-chrome);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  opacity: 0.8;
  filter: drop-shadow(0 0 8px var(--acid-chrome));
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Menu Styling - Improved with Mobile Toggle */
.main-navigation {
  display: flex;
  align-items: center;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 2rem;
}

nav ul li a {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: white;
  opacity: 0.7;
}

nav ul li a:hover {
  color: var(--acid-chrome);
  opacity: 1;
}

/* Mobile Toggle - Hidden on desktop */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--acid-chrome);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

@media (max-width: 991px) {
  .menu-toggle {
    display: block;
  }

  .main-navigation ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--obsidian);
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    gap: 1.5rem;
  }

  .main-navigation ul.toggled {
    display: flex;
  }
}

/* Footer Improvements */
.site-footer .footer-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style-type: none !important;
  padding: 0;
  margin: 0;
}

.site-footer .footer-nav li {
  list-style: none !important;
}

.footer-nav a {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--matte-silver);
}

header {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(15, 15, 16, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: black url('images/hero-bg.png') no-repeat center center;
  background-size: cover;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 15, 16, 0.8) 0%, rgba(15, 15, 16, 0.4) 50%, rgba(15, 15, 16, 1) 100%);
  z-index: 2;
}

#particleCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 1.5rem;
}

.expert-ribbon {
  background: var(--acid-chrome);
  color: black;
  padding: 0.6rem 0;
  font-size: 0.75rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
  z-index: 100;
}

.card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.5rem;
  border-radius: 2px;
  transition: var(--transition);
}

.card:hover {
  border-color: var(--acid-chrome);
  background: rgba(229, 255, 69, 0.03);
  transform: translateY(-5px);
}

/* Grid layout */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 3rem !important;
  }

  nav ul {
    display: none;
  }
}