/* === AXKULLS EDUCATION — GLOBAL STYLES === */

@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --blue: #6F9FC2;
  --blue-light: #EEF4F9;
  --blue-dark: #3A6F96;
  --navy: #1A2D3E;
  --text: #2C3E50;
  --text-muted: #6B7B8D;
  --border: #D9E6EF;
  --bg: #FFFFFF;
  --bg-alt: #F4F8FB;

  --font-heading: 'Lora', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --max-width: 960px;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-heading); color: var(--navy); line-height: 1.3; }
h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 1.65rem; font-weight: 600; margin-bottom: 1rem; }
h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }

p { margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--blue-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
section { padding: 4rem 0; }
section.alt { background: var(--bg-alt); }

nav { position: sticky; top: 0; z-index: 100; background: var(--bg); border-bottom: 1px solid var(--border); }

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.875rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img { height: 60px; width: auto; display: block; }

.nav-logo-fallback {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.nav-links { display: flex; gap: 2rem; list-style: none; }

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active { color: var(--navy); text-decoration: none; }

.hero { background: var(--blue-light); padding: 5rem 0 4.5rem; border-bottom: 1px solid var(--border); }
.hero h1 { max-width: 640px; margin-bottom: 1.25rem; }
.hero .lead { font-size: 1.1rem; color: var(--text-muted); max-width: 560px; margin-bottom: 2rem; }

.page-hero { background: var(--blue-light); padding: 3rem 0 2.5rem; border-bottom: 1px solid var(--border); }
.page-hero h1 { font-size: 2rem; margin-bottom: 0.5rem; }
.page-hero p { color: var(--text-muted); font-size: 1.05rem; max-width: 540px; margin: 0; }

.btn {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.btn-primary { background: var(--navy); color: white; }
.btn-primary:hover { background: var(--blue-dark); text-decoration: none; }
.btn-outline { border: 1.5px solid var(--navy); color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); color: white; text-decoration: none; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }

.feature-card { padding: 2rem 1.75rem; background: var(--bg); border: 1px solid var(--border); border-radius: 6px; }

.feature-card .number {
  display: block;
  font-size: 1.6rem;
  font-family: var(--font-heading);
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.feature-card p { color: var(--text-muted); font-size: 0.95rem; margin-top: 0.5rem; }

.content-block { max-width: 680px; padding-bottom: 3rem; margin-bottom: 3rem; border-bottom: 1px solid var(--border); }
.content-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.about-layout { display: flex; gap: 3.5rem; align-items: flex-start; }

.photo-placeholder {
  width: 200px;
  min-width: 200px;
  height: 250px;
  background: var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
  padding: 1rem;
  line-height: 1.5;
}

.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; max-width: 840px; }

.form-group { margin-bottom: 1.25rem; }

label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.4rem; color: var(--text); }

input[type="text"], input[type="email"], textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s;
}

input:focus, textarea:focus { outline: none; border-color: var(--blue); }
textarea { resize: vertical; min-height: 130px; }

footer { background: var(--navy); padding: 2.25rem 0; margin-top: 4rem; }

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

footer p { font-size: 0.875rem; color: rgba(255,255,255,0.55); margin: 0; }
footer a { color: rgba(255,255,255,0.8); text-decoration: none; }
footer a:hover { color: white; text-decoration: underline; }

@media (max-width: 720px) {
  h1 { font-size: 1.85rem; }
  .hero h1 { font-size: 1.85rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .about-layout { flex-direction: column; }
  .photo-placeholder { width: 100%; min-width: unset; height: 200px; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .nav-links { gap: 1.25rem; }
  .nav-links a { font-size: 0.78rem; }
}
