/*
Theme Name: Events In Britain Premium
Theme URI: https://tickets.eventsinbritain.co.uk/
Author: Premium UI Collective
Description: High-end Eventbrite-style theme with organizer approval workflows.
Version: 1.2.1
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: events-in-britain
Tags: e-commerce, entertainment, custom-colors, custom-menu, featured-images, full-width-template, translation-ready
*/

:root {
  --primary-dark: #151e27;
  --secondary-dark: #202b38;
  --accent-red: #b52922;
  --white: #ffffff;
}

body {
  background-color: var(--primary-dark);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Global Components */
.btn-primary {
  background: var(--accent-red);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(181, 41, 34, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(181, 41, 34, 0.3);
}

.event-card {
  background: var(--secondary-dark);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.event-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-red);
}