/**
 * DragonShield - Page-Specific Styles ONLY
 * =========================================
 * All global styles come from dragonfire1.com/assets/styles/dragonfire-unified.css
 * This file contains ONLY styles unique to dragonshield.org
 */

/* ===========================================
   LOCAL VARIABLES
   =========================================== */

:root {
  --fire-gradient: linear-gradient(90deg, var(--gold), var(--fire), #E4572E, var(--fire), var(--gold));
  --shield-blue: #3B82F6;
}


/* ===========================================
   HERO TITLE LINK
   =========================================== */

.hero-title-link {
  color: var(--shield-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

.hero-title-link:hover {
  color: var(--gold);
}


/* ===========================================
   TEXT UTILITIES
   =========================================== */

.text-highlight {
  color: white;
}

/* Add space between icon grids and statement boxes */
.df-statement {
  margin-top: 3rem;
}


/* ===========================================
   DF-AI-CARD - Sentinel AI Cards
   =========================================== */

.df-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (max-width: 1024px) {
  .df-grid-2 {
    grid-template-columns: 1fr;
  }
}

.df-ai-card {
  background: linear-gradient(145deg, rgba(41, 50, 65, 0.4), rgba(10, 10, 26, 0.6));
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.df-ai-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.df-ai-card-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.df-icon-box {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--fire), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.df-icon-box i {
  font-size: 2rem;
  color: white;
}

.df-ai-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin: 0;
}

.df-ai-card-role {
  font-family: 'Michroma', sans-serif;
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0.25rem 0 0 0;
}

.df-ai-card-text {
  color: #8A95A7;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.df-ai-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.df-ai-card-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: #8A95A7;
  font-size: 1rem;
}

.df-ai-card-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: 0.85rem;
}


/* ===========================================
   STACK POSITION VISUAL
   =========================================== */

.stack-visual {
  max-width: 600px;
  margin: 3rem auto;
}

.stack-layer {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  margin-bottom: 0.5rem;
  border-radius: 12px;
  background: rgba(41, 50, 65, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

a.stack-layer:hover {
  background: rgba(41, 50, 65, 0.5);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
}

a.stack-layer:hover .stack-arrow {
  color: var(--fire);
  transform: translateX(5px);
}

.stack-layer.active {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.3), rgba(228, 87, 46, 0.2));
  border-color: var(--fire);
  box-shadow: 0 0 30px rgba(255, 107, 53, 0.2);
  cursor: default;
}

.stack-arrow {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.stack-layer-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: rgba(255, 255, 255, 0.1);
}

.stack-layer.active .stack-layer-icon {
  background: linear-gradient(135deg, var(--fire), var(--gold));
  color: white;
}

.stack-layer-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.stack-label {
  margin-left: auto;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* ===========================================
   RESPONSIVE - MOBILE
   =========================================== */

@media (max-width: 768px) {
  .df-ai-card {
    padding: 1.5rem;
  }

  .df-ai-card-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .df-ai-card-header > div {
    text-align: center;
  }

  .df-ai-card-title {
    font-size: 1.3rem;
  }

  .df-ai-card-text {
    text-align: center;
    font-size: 1.05rem;
  }

  .df-ai-card-list {
    text-align: left;
    padding-left: 0.5rem;
  }

  .df-ai-card-list li {
    font-size: 1rem;
    padding: 0.5rem 0;
    padding-left: 1.75rem;
  }

  .df-icon-box {
    width: 60px;
    height: 60px;
    margin: 0 auto;
  }

  .df-icon-box i {
    font-size: 1.5rem;
  }
}
