/*
Theme Name: Erome Premium Portrait Video Theme
Theme URI: https://wordpress.org/themes/erome-portrait/
Author: AI Studio WordPress Customizations
Author URI: https://ai.studio/build
Description: A slick, feature-rich WordPress theme modeled after Erome, specialized for vertical and portrait-oriented media, short clips, reels, and mobile vloggers. Includes fully responsive column configurations and lightweight custom video elements.
Version: 1.0.0
License: GNU GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-colors, custom-header, vertical-video, grid-layout, dark, photography, portfolio, mobile-first
Text Domain: erome-portrait
*/

:root {
  --primary-color: #3b82f6;
  --background-color: #0d0d0d;
  --card-bg: #1e1e1e;
  --text-primary: #ffffff;
  --text-secondary: #9e9e9e;
  --border-color: #2a2a2a;
}

body {
  background-color: var(--background-color);
  color: var(--text-primary);
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Base customizer column values: 4 columns */
.erome-video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding: 24px;
}

.erome-video-card {
  background: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  aspect-ratio: 9/16;
  border: 1px solid rgba(255,225,255,0.06);
}

.erome-video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 15px ${settings.accentColor}33;
}

.video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  padding: 16px;
  color: #fff;
}

.accent-badge {
  background: var(--primary-color);
  color: #000;
  font-weight: bold;
}
