@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
  --md-primary-fg-color: #008080; /* Teal */
  --md-accent-fg-color: #ffb300;  /* Amber */
  --body-font: 'Outfit', sans-serif;
}

body {
  font-family: var(--body-font);
}

/* Hydra Card Grid */
.hydra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.hydra-card {
  padding: 1.5rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none !important;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

[data-md-color-scheme="default"] .hydra-card {
  background: rgba(0, 128, 128, 0.03);
  border: 1px solid rgba(0, 128, 128, 0.1);
}

.hydra-card:hover {
  transform: translateY(-5px);
  border-color: var(--md-accent-fg-color);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hydra-card h3 {
  margin: 0 0 0.5rem 0 !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  color: var(--md-primary-fg-color);
}

.hydra-card p {
  margin: 0 !important;
  font-size: 0.85rem !important;
  opacity: 0.8;
  line-height: 1.4;
}

.hydra-card .badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 20px;
  background: var(--md-accent-fg-color);
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
}

/* Hero Section */
.hydra-hero {
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #004d4d 0%, #008080 100%);
  border-radius: 16px;
  color: white;
  margin-bottom: 3rem;
  text-align: center;
}

.hydra-hero h1 {
  color: white !important;
  font-size: 2.5rem !important;
  font-weight: 700 !important;
  margin-bottom: 0.5rem !important;
}

.hydra-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Custom Navigation Tabs */
.md-tabs__link--active {
  color: var(--md-accent-fg-color) !important;
  font-weight: 700;
}
