/* EDJ-Labs Modern Theme - Black/Yellow Scaleway-Inspired for Grav Quark */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&display=swap');

* {
  box-sizing: border-box;
}

body {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%) !important;
  color: #ffffff !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Navigation */
.navbar, .site-header nav {
  background: rgba(0, 0, 0, 0.95) !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid #ffc107;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-nav a, nav a {
  color: #ffc107 !important;
  font-weight: 500;
  margin: 0 1.5rem;
  padding: 0.75rem 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 6px;
}

.navbar-nav a:hover, nav a:hover {
  background: #ffc107;
  color: #000 !important;
  transform: translateY(-2px);
}

/* Hero/Headings */
main h1, .hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  background: linear-gradient(45deg, #ffc107, #ffed4a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  text-align: center;
}

main h2 {
  color: #ffc107;
  font-weight: 500;
  font-size: 2rem;
}

/* Content Blocks */
.content, main, .page-content {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 2rem;
  background: rgba(26, 26, 46, 0.6);
  border-radius: 16px;
  border: 1px solid rgba(255, 193, 7, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.blog-entries .page, .sidebar {
  background: rgba(10, 10, 10, 0.8);
  border-left: 4px solid #ffc107;
  padding: 2rem;
  margin-bottom: 2rem;
}

/* Buttons & Forms */
.btn, button, input[type="submit"] {
  background: linear-gradient(45deg, #000, #333);
  color: #ffc107 !important;
  border: 2px solid #ffc107;
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn:hover, button:hover {
  background: #ffc107;
  color: #000 !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 193, 7, 0.4);
}

form {
  max-width: 600px;
  margin: 2rem 0;
}

form input, form textarea, form select {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
}

form input::placeholder, form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

form input:focus, form textarea:focus {
  outline: none;
  border-color: #ffc107;
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
}

/* Stats/Cards */
.stats-grid, .features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}

.card {
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s;
}

.card:hover {
  transform: scale(1.05);
}

/* Footer */
.footer {
  background: #000;
  text-align: center;
  padding: 3rem 2rem;
  border-top: 3px solid #ffc107;
  margin-top: 4rem;
}

.footer a {
  color: #ffc107;
}

.footer a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar-nav, nav {
    flex-direction: column;
    text-align: center;
  }

  .navbar-nav a, nav a {
    margin: 0.5rem 0;
  }

  .content, main {
    margin: 1rem;
    padding: 1.5rem;
  }

  form {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  main h1 {
    font-size: 2rem;
  }
}
