/*
Theme Name: Eventsbyakeem
Theme URI: https://eventsbyakeem.com
Author: AMr Ace
Author URI: https://google.com
Description: A modern, production-ready WordPress theme built for Eventsbyakeem. Features a custom onboarding experience, one-click demo import, and a robust theme options panel.
Version: 1.0.0
Requires at least: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: eventsbyakeem
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

:root {
  --color-gold: #D4AF37;
  --color-gold-hover: #B5902B;
  --color-black: #000000;
  --color-dark: #111111;
  --color-white: #FFFFFF;
  --color-gray: #CCCCCC;

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;

  --transition-fast: 0.3s ease;
  --transition-smooth: 0.5s ease;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-black);
  color: var(--color-white);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
}

/* Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  display: block;
}

/* Utilities */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-gold {
  color: var(--color-gold);
}

.text-center {
  text-align: center;
}

.section-padding {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 50px 0;
  }
}