/*
Theme Name: Fluent Gokani
Author: Anand Gokani
Description: A minimalist Fluent UI-inspired WordPress theme for finance and education blogs.
Version: 1.0
*/

/* ===== Global Styles ===== */
body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f3f2f1;
  color: #323130;
  line-height: 1.6;
}

.container {
  max-width: 1000px;
  margin: auto;
  padding: 40px 20px;
}

h1, h2, h3, h4, h5, h6 {
  color: #201f1e;
}

/* ===== Fluent-style Card ===== */
.card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  padding: 30px;
  margin-bottom: 30px;
}

/* ===== Buttons ===== */
.button {
  background-color: #0078D4;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #005a9e;
}

/* ===== Navigation ===== */
nav {
  background-color: #0078D4;
  padding: 15px 0;
  text-align: center;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* ===== Footer ===== */
footer {
  background-color: #f3f2f1;
  color: #605e5c;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  border-top: 1px solid #e1dfdd;
}

/* ===== Post Layout ===== */
.post-title {
  font-size: 1.8em;
  margin-bottom: 10px;
  color: #0078D4;
}

.post-meta {
  font-size: 0.9em;
  color: #605e5c;
  margin-bottom: 20px;
}
