/*
Theme Name: Art For Everyone
Description: Base Theme Styles
*/

:root {
  --afe-primary: #C0392B;
  --afe-primary-dark: #A93226;
  --afe-secondary: #1A2332;
  --afe-text: #333333;
  --afe-accent: #E8734A;
  --afe-cream: #FDF6EC;
  --afe-white: #FFFFFF;
  --afe-light-gray: #F5F5F0;
  --afe-text-light: rgba(255, 255, 255, 0.8);
  --afe-text-muted: rgba(255, 255, 255, 0.6);
  --afe-font-heading: 'Playfair Display', Georgia, serif;
  --afe-font-script: 'Dancing Script', cursive;
  --afe-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --afe-radius-sm: 8px;
  --afe-radius-md: 12px;
  --afe-radius-lg: 25px;
  --afe-radius-full: 50%;
  --afe-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --afe-shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --afe-shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
  --afe-container-width: 1280px;
  --afe-section-padding: 80px;
  --afe-section-padding-mobile: 50px;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--afe-font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--afe-text);
  background-color: var(--afe-white);
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--afe-font-heading);
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 1rem;
}

a {
  color: var(--afe-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--afe-primary-dark);
}

/* Utility Classes */
.afe-container {
  max-width: var(--afe-container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.afe-section {
  padding: var(--afe-section-padding) 0;
}

.afe-bg-cream {
  background-color: var(--afe-cream);
}

.afe-bg-dark {
  background-color: var(--afe-secondary);
  color: var(--afe-white);
}

.afe-bg-light {
  background-color: var(--afe-light-gray);
}

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

.afe-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

/* Button Utilities */
.afe-btn-primary {
  display: inline-block;
  background-color: var(--afe-primary);
  color: var(--afe-white);
  border-radius: var(--afe-radius-lg);
  padding: 14px 32px;
  font-weight: 600;
  font-size: 14px;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.afe-btn-primary:hover {
  background-color: var(--afe-primary-dark);
  color: var(--afe-white);
}

.afe-btn-outline {
  display: inline-block;
  background-color: transparent;
  border: 1px solid var(--afe-secondary);
  color: var(--afe-secondary);
  border-radius: var(--afe-radius-lg);
  padding: 13px 31px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.afe-btn-outline:hover {
  background-color: var(--afe-secondary);
  color: var(--afe-white);
}

.afe-btn-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--afe-accent);
  color: var(--afe-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.afe-btn-arrow:hover {
  background-color: var(--afe-primary);
  color: var(--afe-white);
}

/* Template Fallback Styles */
.afe-site-header {
  padding: 20px 0;
  border-bottom: 1px solid #eaeaea;
}

.afe-site-content {
  padding: 60px 0;
  min-height: 60vh;
}

.afe-entry-header {
  margin-bottom: 40px;
}

.afe-entry-content {
  max-width: 800px;
  margin: 0 auto;
}

.afe-site-footer {
  padding: 40px 0;
  background-color: var(--afe-secondary);
  color: var(--afe-white);
  text-align: center;
}
