
/* ===============================
   EduNexusHub Base Styles
   =============================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Playfair+Display:wght@600;700&display=swap');

/* CSS Variables */
:root {
  --primary-color: #5E0190;
  --accent-color: #CBB26A;
  --background-color: #f8f8f8;
  --text-color: #333;
  --font-sans: 'Inter', sans-serif;
  --font-serif: 'Playfair Display', serif;
}

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

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  background-color: var(--background-color);
  color: var(--text-color);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.3;
  color: var(--primary-color);
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

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

/* Button Styling */
button,
.hero-button,
.download-btn,
.read-more {
  background-color: var(--primary-color);
  color: white;
  padding: 12px 24px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover,
.hero-button:hover,
.download-btn:hover,
.read-more:hover {
  background-color: var(--accent-color);
  color: black;
}
