/*-- Blue Angels Custom CSS --*/
/*-- Additional styles that don't need SCSS compilation --*/

/* Google Fonts - Inter for clean readability */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== HERO SECTION ===== */
.hero-section {
  background: linear-gradient(135deg, #003087 0%, #001f5c 100%);
  padding: 5rem 2rem;
  margin: -1rem -1rem 2rem -1rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: linear-gradient(135deg, transparent 45%, rgba(212, 175, 55, 0.08) 50%, transparent 55%);
  transform: rotate(-15deg);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: linear-gradient(135deg, transparent 45%, rgba(0, 102, 204, 0.1) 50%, transparent 55%);
  transform: rotate(-15deg);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}

.hero-section .tagline {
  color: #FFD700;
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.hero-section .lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
}

/* ===== PROFILE IMAGE ===== */
.profile-image {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border: 4px solid #D4AF37;
  border-radius: 50%;
  box-shadow:
    0 0 0 4px rgba(212, 175, 55, 0.2),
    0 10px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.profile-image:hover {
  transform: scale(1.03);
  box-shadow:
    0 0 0 6px rgba(212, 175, 55, 0.3),
    0 15px 50px rgba(0, 0, 0, 0.35);
}

/* ===== CARDS ===== */
.feature-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 48, 135, 0.15);
  border-color: #D4AF37;
}

.feature-card h3 {
  color: #003087;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: #64748B;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Featured card - gold accent */
.feature-card.featured {
  border-left: 4px solid #D4AF37;
}

/* ===== BUTTONS ===== */
.btn-navy {
  background: linear-gradient(135deg, #003087, #001f5c);
  color: white;
  border: none;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-navy:hover {
  background: linear-gradient(135deg, #0066CC, #003087);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 48, 135, 0.35);
  color: white;
}

.btn-gold {
  background: linear-gradient(135deg, #D4AF37, #B8960C);
  color: #001f5c;
  border: none;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #FFD700, #D4AF37);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  color: #001f5c;
}

.btn-outline-navy {
  background: transparent;
  color: #003087;
  border: 2px solid #003087;
  padding: 0.65rem 1.65rem;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-outline-navy:hover {
  background: #003087;
  color: white;
}

/* ===== SECTION STYLING ===== */
.section-title {
  color: #003087;
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #D4AF37, #FFD700);
  border-radius: 2px;
}

/* Diagonal divider */
.divider-diagonal {
  height: 4px;
  background: linear-gradient(90deg, #003087, #D4AF37, #003087);
  margin: 3rem 0;
  border: none;
  border-radius: 2px;
}

/* ===== SOCIAL LINKS ===== */
.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 48, 135, 0.1);
  color: #003087;
  transition: all 0.2s ease;
  text-decoration: none;
}

.social-link:hover {
  background: #D4AF37;
  color: #001f5c;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Hero social links - white background */
.hero-section .social-link {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

.hero-section .social-link:hover {
  background: #FFD700;
  color: #001f5c;
}

/* ===== GRID LAYOUTS ===== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

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

/* ===== BADGES/TAGS ===== */
.badge-navy {
  background: #003087;
  color: white;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.badge-gold {
  background: linear-gradient(135deg, #D4AF37, #B8960C);
  color: #001f5c;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.badge-sky {
  background: #0066CC;
  color: white;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* ===== EXPERIENCE TIMELINE ===== */
.timeline-item {
  position: relative;
  padding-left: 2rem;
  padding-bottom: 2rem;
  border-left: 2px solid #E2E8F0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 0;
  width: 12px;
  height: 12px;
  background: #D4AF37;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.timeline-item:last-child {
  border-left-color: transparent;
}

/* ===== ABOUT PAGE TEMPLATE ===== */
.about-entity-name {
  color: #003087 !important;
}

.about-link {
  color: #003087;
  transition: color 0.2s ease;
}

.about-link:hover {
  color: #D4AF37;
}

/* ===== LISTING PAGES ===== */
.quarto-listing-default .listing-title {
  color: #003087;
  font-weight: 600;
}

.quarto-listing-default .listing-title:hover {
  color: #0066CC;
}

/* ===== DARK MODE ADJUSTMENTS ===== */
.quarto-dark .hero-section {
  background: linear-gradient(135deg, #0a0f1a 0%, #001f5c 50%, #0a0f1a 100%);
}

.quarto-dark .feature-card {
  background: #111827;
  border-color: #374151;
}

.quarto-dark .feature-card:hover {
  border-color: #F59E0B;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.quarto-dark .feature-card h3 {
  color: #F1F5F9;
}

.quarto-dark .section-title {
  color: #F1F5F9;
}

.quarto-dark .social-link {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
}

.quarto-dark .social-link:hover {
  background: #F59E0B;
  color: #0a0f1a;
}

.quarto-dark .timeline-item {
  border-left-color: #374151;
}

.quarto-dark .timeline-item::before {
  background: #F59E0B;
  border-color: #111827;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-section {
    padding: 3rem 1rem;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section .tagline {
    font-size: 1.1rem;
  }

  .profile-image {
    width: 150px;
    height: 150px;
  }

  .grid-3, .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* ===== PRINT ===== */
@media print {
  .hero-section {
    background: white !important;
    color: black !important;
    padding: 1rem 0;
  }

  .hero-section h1,
  .hero-section .tagline {
    color: #003087 !important;
  }
}
