/* ===== Dzimbahwe Scholar — Inspired by Age of Now ===== */

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

body {
  font-family: "Inter", "Poppins", sans-serif;
  color: #fff;
  background-color: #0f0f0f;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.2rem 5%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  backdrop-filter: blur(15px);
}
.navbar.dark {
  background: rgba(20, 20, 20, 0.8);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}
.logo {
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #00adb5, #f9ed69);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-links a {
  color: #ccc;
  text-decoration: none;
  margin-left: 1.5rem;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

/* Hero */
.fullscreen {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.45);
}
.hero-content {
  max-width: 800px;
  padding: 2rem;
  animation: fadeIn 2s ease;
}
.hero-content h1 {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 700;
}
.hero-content p {
  margin-top: 1.2rem;
  color: #ddd;
  font-size: 1.1rem;
  line-height: 1.6;
}
.cta {
  margin-top: 2rem;
}
.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.btn.primary {
  background: linear-gradient(135deg, #00adb5, #f9ed69);
  color: #000;
}
.btn.outline {
  border: 1px solid #00adb5;
  color: #00adb5;
  margin-left: 1rem;
}
.btn.primary:hover {
  transform: translateY(-3px);
}
.btn.outline:hover {
  background: #00adb5;
  color: #0f0f0f;
}

/* Vision Section */
.vision-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 6rem 10%;
  background: #f5f5f5;
  color: #0f0f0f;
}
.vision-left {
  flex: 1;
  min-width: 280px;
  padding-right: 2rem;
}
.vision-left h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.stat {
  font-size: 1.2rem;
  color: #00adb5;
}
.vision-right {
  flex: 1.5;
  min-width: 280px;
}
.vision-right p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
  color: #333;
}
.btn.minimal {
  border: 1px solid #00adb5;
  color: #00adb5;
  padding: 0.6rem 1.4rem;
  border-radius: 25px;
  text-decoration: none;
}
.btn.minimal:hover {
  background: #00adb5;
  color: #0f0f0f;
}

/* Banner */
.banner {
  background: linear-gradient(90deg, #00adb5, #f9ed69);
  color: #0f0f0f;
  text-align: center;
  padding: 2.5rem 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 6rem 10%;
  background: #0f0f0f;
}
.feature {
  background: #171717;
  border-radius: 18px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s;
}
.feature:hover {
  transform: translateY(-6px);
}
.feature h3 {
  color: #f9ed69;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
.feature p {
  color: #ccc;
  line-height: 1.6;
}

/* Footer */
.footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
}
.footer.dark {
  background: #111;
  color: #aaa;
}

/* Animations */
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}
/* =====================================
   ADD PAGE - MODERN AESTHETIC
===================================== */

/* Body Background */
.add-page-body {
  background: linear-gradient(180deg, #0f2027, #203a43, #2c5364);
  color: #e0e1dd;
  font-family: "Inter", "Poppins", sans-serif;
}

/* Hero Section */
.add-hero {
  position: relative;
  height: 60vh;
  background: url('https://images.unsplash.com/photo-1529070538774-1843cb3265df?auto=format&fit=crop&w=1500&q=80')
    center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(4px);
}

.add-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 1rem;
}

.add-hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #00adb5, #f9ed69);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.add-hero-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ddd;
}

/* Form Section */
.add-form-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5rem 1rem;
}

.add-form {
  width: 100%;
  max-width: 700px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeInUp 1s ease;
}

.add-form h2 {
  text-align: center;
  color: #f9ed69;
  margin-bottom: 2rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #f9ed69;
  font-weight: 600;
}

.form-group span {
  color: #ff6b6b;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9rem 1rem;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #f5f6fa;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border: 1px solid #00adb5;
  box-shadow: 0 0 12px rgba(0, 173, 181, 0.4);
}

/* Buttons */
.form-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  padding: 0.9rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  cursor: pointer;
}

.btn.primary {
  background: linear-gradient(135deg, #00adb5, #f9ed69);
  color: #0f2027;
  border: none;
}

.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(249, 237, 105, 0.3);
}

.btn.outline {
  border: 1px solid #00adb5;
  color: #00adb5;
  background: transparent;
}

.btn.outline:hover {
  background: #00adb5;
  color: #0f2027;
}

/* Form Message */
.form-message {
  text-align: center;
  margin-top: 1.5rem;
  font-weight: 600;
  border-radius: 10px;
  padding: 0.8rem;
}

.form-message.success {
  background: rgba(0, 255, 160, 0.15);
  border: 1px solid #00ff9d;
  color: #00ff9d;
}

.form-message.error {
  background: rgba(255, 100, 100, 0.15);
  border: 1px solid #ff6b6b;
  color: #ff6b6b;
}

/* Footer */
.footer.dark {
  text-align: center;
  background: #111;
  color: #bbb;
  padding: 2rem;
  font-size: 0.9rem;
}
.footer a {
  color: #00adb5;
  text-decoration: none;
}

/* Animations */
@keyframes fadeInUp {
  from {opacity: 0; transform: translateY(40px);}
  to {opacity: 1; transform: translateY(0);}
}

/* Responsive */
@media (max-width: 768px) {
  .add-hero-content h1 { font-size: 2rem; }
  .add-form { padding: 1.5rem; }
  .form-actions { flex-direction: column; }
}
/* =====================================
   DICTIONARY PAGE - MODERN STYLE
===================================== */

.dictionary-body {
  background: linear-gradient(180deg, #0f2027, #203a43, #2c5364);
  color: #f5f6fa;
  font-family: "Inter", "Poppins", sans-serif;
}

/* Hero Section */
.dictionary-hero {
  position: relative;
  height: 55vh;
  background: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1500&q=80')
    center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.dictionary-hero .hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(4px);
}

.dictionary-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 1rem;
  animation: fadeInUp 1.2s ease;
}

.dictionary-hero-content h1 {
  font-size: 2.8rem;
  background: linear-gradient(135deg, #00adb5, #f9ed69);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dictionary-hero-content p {
  color: #e0e1dd;
  font-size: 1.1rem;
  margin-top: 1rem;
}

/* Controls */
.dictionary-content {
  padding: 4rem 10%;
}

.dictionary-controls {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: center;
}

.search-input {
  flex: 1 1 350px;
  padding: 0.9rem 1rem;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: 0.3s;
}

.search-input::placeholder {
  color: #aaa;
}

.search-input:focus {
  outline: none;
  border-color: #00adb5;
  box-shadow: 0 0 12px rgba(0, 173, 181, 0.4);
}

/* Download Buttons */
.download-buttons {
  display: flex;
  gap: 0.8rem;
}

.download-buttons .btn {
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  transition: 0.3s ease;
}

.download-buttons .btn:hover {
  background: var(--accent);
  color: #0f2027;
}

/* Table */
.table-wrapper {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
  overflow-x: auto;
  animation: fadeInUp 1s ease;
}

.dictionary-table {
  width: 100%;
  border-collapse: collapse;
  color: #fff;
}

.dictionary-table thead {
  background: linear-gradient(135deg, rgba(0, 173, 181, 0.2), rgba(249, 237, 105, 0.15));
}

.dictionary-table th {
  text-align: left;
  padding: 0.9rem;
  font-weight: 600;
  color: #f9ed69;
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}

.dictionary-table td {
  padding: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #e0e1dd;
  font-size: 0.95rem;
}

.dictionary-table tr:hover {
  background: rgba(255, 255, 255, 0.08);
  transition: 0.3s ease;
}

/* No Results Message */
.no-results {
  text-align: center;
  color: #f9ed69;
  font-weight: 600;
  margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .dictionary-hero-content h1 {
    font-size: 2.2rem;
  }

  .dictionary-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .download-buttons {
    justify-content: center;
  }

  .dictionary-content {
    padding: 3rem 5%;
  }
}
.short { display: none; }

@media (max-width: 600px) {
  .full { display: none; }
  .short { display: inline; }
}
.logo {
  cursor: pointer;
}

      /* Optional inline styles for quick testing */
     