/*
Theme Name: YPSoFu Theme
Theme URI: https://ypsofu.org
Author: Antigravity AI
Description: A custom, lightweight WordPress theme optimized for Elementor for the Young Professionals of South Fulton Region.
Version: 1.0.0
Text Domain: ypsofu
*/

/* Reset & Basic Typography */
:root {
  --primary: #0f172a;
  --secondary: #3b82f6;
  --accent: #10b981;
  --light: #f8fafc;
  --dark: #020617;
  --text: #334155;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background-color: var(--light);
  line-height: #1.6;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--dark);
  font-weight: 700;
  margin-top: 0;
}

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

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

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

/* Site wrapper */
.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.site-content {
  flex: 1;
}

/* Base header and footer styles, hidden if Elementor Canvas is used but styling given for standard page */
.site-header {
  background: var(--primary);
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-footer {
  background: var(--dark);
  color: #94a3b8;
  padding: 3rem 2rem;
  text-align: center;
}
