/*
Theme Name: Business Education Theme
Theme URI: https://example.com
Author: WordPress Developer
Author URI: https://example.com
Description: A modern, professional education business theme
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: business-education
*/

/* CSS Variables */
:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary: #1e293b;
  --accent: #f97316;
  --light: #f8fafc;
  --dark: #0f172a;
  --gray: #94a3b8;
  --border: #e2e8f0;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Source+Sans+3:wght@300;400;600;700&display=swap');

body {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--dark);
  background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h1 {
  font-size: 3.5rem;
  letter-spacing: 2px;
}

h2 {
  font-size: 2.75rem;
}

h3 {
  font-size: 2rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

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

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

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.main-content {
  min-height: 70vh;
  padding: 3rem 0;
}

/* Header */
.site-header {
  background-color: #ffffff;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.site-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  margin: 0;
}

.site-title a {
  color: var(--secondary);
  text-decoration: none;
}

/* Navigation */
.main-navigation ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-navigation li {
  margin-left: 2rem;
}

.main-navigation a {
  color: var(--dark);
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

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

/* Hero */
.hero {
  background-color: var(--light);
  padding: 5rem 0;
  text-align: center;
  margin-bottom: 3rem;
}

.hero h1 {
  margin-bottom: 1rem;
  color: var(--secondary);
}

.hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: var(--dark);
}

.btn {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background-color 0.3s ease;
}

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

/* Content */
.content-area {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
}

.main-content {
  flex: 2;
  min-width: 300px;
  padding: 0 1rem;
}

.widget-area {
  flex: 1;
  min-width: 300px;
  padding: 0 1rem;
}

/* Posts */
.post {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.post-title {
  margin-bottom: 0.5rem;
}

.post-title a {
  color: var(--secondary);
  text-decoration: none;
}

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

.post-meta {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* Widgets */
.widget {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: var(--light);
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.widget-title {
  font-size: 1.5rem;
  margin-top: 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary);
}

.widget ul {
  padding: 0;
  list-style: none;
}

.widget li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

.widget li:last-child {
  border-bottom: none;
}

/* Footer */
.site-footer {
  background-color: var(--secondary);
  color: white;
  padding: 3rem 0;
  margin-top: 3rem;
}

.footer-widgets {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem 2rem;
}

.footer-widget {
  flex: 1;
  min-width: 250px;
  padding: 0 1rem;
  margin-bottom: 1.5rem;
}

.footer-widget h3 {
  color: white;
  font-size: 1.5rem;
  margin-top: 0;
}

.footer-widget a {
  color: #cbd5e1;
}

.footer-widget a:hover {
  color: white;
}

.site-info {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  font-size: 0.9rem;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark);
  color: white;
  padding: 1.5rem;
  display: none;
  z-index: 999;
}

.cookie-consent.show {
  display: block;
}

.cookie-consent p {
  margin: 0 0 1rem 0;
}

.cookie-consent .btn {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .main-navigation ul {
    flex-direction: column;
    background-color: white;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    box-shadow: var(--shadow-lg);
    padding: 1rem;
    display: none;
  }
  
  .main-navigation li {
    margin: 0.5rem 0;
  }
  
  .menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
  }
  
  .header-inner {
    position: relative;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero {
    padding: 3rem 0;
  }
}

.menu-toggle {
  display: none;
}