/* ============================================
   منصة العراق التعليمية - التنسيقات العامة
   Iraqi Education Platform - Main Styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800;900&family=Tajawal:wght@300;400;500;700;800&display=swap');

:root {
  --green-darkest: #0b2f1a;
  --green-dark: #0b3720;
  --green: #1a4a2e;
  --green-medium: #1e5631;
  --green-light: #2d6a4f;
  --green-pale: #3e5c3a;
  
  --gold-dark: #8b691f;
  --gold: #b68b3c;
  --gold-medium: #b49450;
  --gold-light: #c29a4a;
  --gold-bright: #cfb15b;
  --gold-pale: #d4af37;
  --gold-soft: #f7eac7;
  --gold-cream: #f9eec1;
  
  --cream-dark: #d9cdb0;
  --cream: #e4d7bc;
  --cream-light: #f0ede0;
  --cream-pale: #f3efe2;
  --warm-white: #fffef7;
  --off-white: #fefcf5;
  --light-bg: #fbf5e3;
  
  --text-dark: #1e4620;
  --text-medium: #2d4320;
  --text-body: #3b4a2e;
  --text-muted: #5c6b4b;
  --text-light: #5f5e4e;
  --text-gold: #7b5e2c;
  --text-footer: #6b5e45;
  --icon-muted: #9b8c6f;
  
  --font-primary: 'Cairo', sans-serif;
  --font-secondary: 'Tajawal', sans-serif;
  
  --radius-sm: 30px;
  --radius-md: 35px;
  --radius-lg: 40px;
  --radius-xl: 48px;
  --radius-full: 50px;
  
  --shadow-sm: 0 4px 8px rgba(0,0,0,0.05);
  --shadow-md: 0 6px 14px rgba(0,0,0,0.2);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.3);
  --shadow-xl: 0 30px 60px rgba(0,0,0,0.4);
  --shadow-gold: 0 8px 18px rgba(139, 105, 31, 0.4);
  --shadow-focus: 0 0 0 3px rgba(180, 148, 80, 0.25);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  color: var(--text-dark);
  line-height: 1.7;
  min-height: 100vh;
}

.bg-iraqi {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 40%, var(--green-light) 100%);
  position: relative;
}

.bg-iraqi::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 215, 0, 0.05) 0px,
    rgba(255, 215, 0, 0.05) 2px,
    transparent 2px,
    transparent 8px
  );
  pointer-events: none;
}

.container-centered {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
}

.form-input {
  width: 100%;
  padding: 15px 20px 15px 45px;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-md);
  font-family: var(--font-secondary);
  font-size: 1rem;
  background: var(--off-white);
  transition: all 0.2s ease;
  outline: none;
}

.form-input:focus {
  border-color: var(--gold-medium);
  box-shadow: var(--shadow-focus);
}

@media (max-width: 850px) {
  html { font-size: 14px; }
}

@media (max-width: 480px) {
  html { font-size: 13px; }
}