:root {
  --bg: #f6f8fc;
  --card: #ffffff;
  --text: #1a1a1a;
  --muted: #5b6472;
  --primary: #2b6fff;
  --border: #e8ebf0;
  --shadow: 0 10px 30px rgba(0,0,0,0.06);
  --radius: 14px;
}


body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;

z-index: 1000;
 padding: 15px 20px;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}




.navbar h2 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.nav-links a {
  margin-left: 18px;
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  transition: 0.2s;
}

.nav-links a:hover {
  color: var(--primary);
}

/* HERO */
.hero {
  text-align: center;
  padding: 110px 20px;
  background: linear-gradient(135deg, #eef3ff, #f8faff);
}

.hero h1 {
  font-size: 44px;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 650px;
  margin: auto;
}

.hero button {
  margin-top: 25px;
  padding: 12px 24px;
  border: none;
  background: var(--primary);
  color: white;
  border-radius: 10px;
  cursor: pointer;
  font-size: 15px;
  transition: 0.2s;
}

.hero button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* SECTIONS */
.section {
  padding: 70px 20px;
  text-align: center;
}

.section h2 {
  font-size: 28px;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}

/* CARDS */
.cards {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.card {
  background: var(--card);
  padding: 26px;
  width: 260px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: 0.25s;
  text-align: left;
}

.card:hover {
  transform: translateY(-6px);
}

.card h3 {
  margin-top: 0;
  font-size: 18px;
}

.card p {
  color: black;
  font-size: 14px;
}

/* LISTS */
ul {
  list-style: none;
  padding: 0;
  color: var(--muted);
}

li {
  margin: 10px 0;
}

/* MISSION */
.mission {
  background: white;
  padding: 70px 20px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.mission p {
  max-width: 650px;
  margin: auto;
  color: var(--muted);
  font-size: 16px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
  }

  .navbar {
    flex-direction: column;
    gap: 10px;
  }
}
#logoutBtn {
  background: none;
  color: var(--muted);
  font-size: 14px;
  cursor: pointer;
  border: none;
}

#logoutBtn:hover {
  color: var(--primary);
}

button {
  padding: 12px 18px;
  border: none;
  border-radius: var(--radius);
  background: var(--primary);
  color: white;
  cursor: pointer;
  font-weight: 500;
  transition: 0.2s;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}



/* AUTH PAGES (LOGIN/SIGNUP)*/

.auth-body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: linear-gradient(135deg, #eef3ff, #f6f8fc);
}

.auth-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.auth-card {
  background: white;
  padding: 40px;
  width: 360px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  text-align: center;
}

.auth-card h1 {
  margin-bottom: 8px;
  font-size: 26px;
}

.auth-card p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 20px;
}

.auth-card input {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  font-size: 14px;
}

.auth-card input:focus {
  border-color: var(--primary);
}

.auth-card button {
  width: 100%;
  margin-top: 12px;
}

.auth-switch {
  margin-top: 15px;
  font-size: 13px;
  color: var(--muted);
}

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

.auth-message {
  color: red;
  font-size: 13px;
  margin-bottom: 10px;
}



/* SIDEBAR DASHBOARD LAYOUT*/

.dash-layout {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial;
  display: flex;
  background: var(--bg);
}

/* SIDEBAR */
.sidebar {
  width: 240px;
  height: 100vh;
  background: #1e2a3a;
  color: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar h2 {
  margin-bottom: 10px;
}

.sidebar a {
  color: white;
  text-decoration: none;
  opacity: 0.7;
  padding: 8px;
  border-radius: 8px;
}

.sidebar a:hover,
.sidebar a.active {
  background: rgba(255,255,255,0.1);
  opacity: 1;
}


/* TOPBAR */
.topbar {
  margin-bottom: 20px;
}

.muted {
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}

/* CARDS */
.card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
}

.card.big {
  margin-bottom: 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}

/* SIDEBAR BUTTON */
.sidebar button {
  margin-top: auto;
  background: var(--primary);
  color: white;
  border: none;
  padding: 10px;
  border-radius: var(--radius);
  cursor: pointer;
}


.section-title {
  margin: 20px 0 10px;
  font-size: 14px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.card.big h2 {
  font-size: 22px;
  margin-bottom: 10px;
  font-style: italic;
}

#profileCard, #homeCard {
  margin-top: 20px;
}

.card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  max-width: 600px;
}
.view {
  margin-top: 20px;
}
.nav-item.active {
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
  opacity: 1;
}


.centerPage {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: var(--bg);
}

.profileCard {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.profileCard input,
.profileCard select {
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
}

.profileCard button {
  padding: 12px;
  border: none;
  background: var(--primary);
  color: white;
  border-radius: 10px;
  cursor: pointer;
}


.home-hero {
  padding: 25px;
}

.home-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

.home-actions button {
  padding: 12px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  background: #2b6fff;
  color: white;
  font-weight: 500;
  transition: 0.2s;
}

.home-actions button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.home-clean {
  text-align: left;
  padding: 28px;
}

.home-clean h2 {
  margin: 0;
  font-size: 22px;
}

.home-quote {
  text-align: center;
  font-size: 18px;
  font-style: italic;
  color: #444;
  padding: 40px 30px;
  background: #ffffff;
}

.home-action {
  text-align: center;
}

.home-action button {
  padding: 12px 22px;
  border: none;
  border-radius: 10px;
  background: #2b6fff;
  color: white;
  font-size: 15px;
  cursor: pointer;
  transition: 0.2s;
}

.home-action button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.dash-layout {
  display: flex;
  margin: 0;
  min-height: 100vh;
}
.sidebar {
  width: 220px;
  min-height: 100vh;
  background: #1e2a3a;
  color: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;  
  padding: 30px;
  gap: 20px;
}
.view {
  width: 100%;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  width: 100%;
  max-width: 700px;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.tool-card {
  background: white;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  cursor: pointer;
  transition: 0.2s;
}

.tool-card:hover {
  transform: translateY(-4px);
}

.tool-card h3 {
  margin: 0;
  font-size: 16px;
}

.tool-card p {
  font-size: 13px;
  margin-top: 5px;
}
.ai-card {
  background: #eef3ff;
  border: 1px solid #dbe6ff;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 15px;
}

.tool-card {
  background: white;
  padding: 14px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  cursor: pointer;
  transition: 0.2s;
}

.tool-card:hover {
  transform: translateY(-3px);
}
.view {
  display: none;
}

.view.active {
  display: block;
}


.tool-card {
  background: white;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  cursor: pointer;
  transition: 0.2s;

  display: flex;
  align-items: center;
  gap: 10px;

  font-size: 15px;
  font-weight: 500;
}

.tool-card:hover {
  transform: translateY(-4px);
  background: #f6f9ff;
}
.grid-quick {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.big-btn {
  padding: 18px;
  border: none;
  border-radius: 14px;
  background: #2b6fff;
  color: white;
  font-size: 15px;
  cursor: pointer;
  transition: 0.2s;
}

.big-btn:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

.tool-card {
  background: white;
  border-radius: 14px;
  padding: 20px;
  cursor: pointer;
  transition: 0.2s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  user-select: none;
}

.tool-card:hover {
  transform: translateY(-4px);
}

.tool-card h3 {
  margin: 0;
}

.tool-card p {
  margin-top: 8px;
}









.site-footer-mini {
  background: #1e2a3a;
  color: white;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 10px 20px;
  font-size: 13px;

  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;

  z-index: 1000;
}

/* LEFT BRAND */
.footer-left span {
  opacity: 0.8;
  font-weight: 500;
}

/* CENTER LINKS */
.footer-center {
  display: flex;
  gap: 15px;
}

.footer-center a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: 0.2s;
}

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

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  transition: 0.2s;
}

.footer-social a:hover {
  color: white;
  transform: translateY(-1px);
}

body {
  padding-bottom: 60px; 
}
.site-footer-mini {
  backdrop-filter: blur(10px);
  background: rgba(30, 42, 58, 0.95);
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}


::selection {
  background: rgba(43, 111, 255, 0.2);
  color: inherit;
}
.site-footer-mini {
  flex-wrap: wrap; /* allows bottom text to go under columns */
}

.footer-bottom {
  width: 100%;
  text-align: center;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0,5px;
}
