/* Custom Styles for GTD Web */
:root {
  --gtd-blue: #314490;
  --gtd-blue-light: #84d1ed;
  --gtd-orange: #f0673d;
  --gtd-red: #cc171e;
  --gtd-gradient: url('/content/gradient.webp');
  --gtd-gradient-fallback: linear-gradient(135deg, #314490 0%, #84d1ed 33%, #f0673d 66%, #cc171e 100%);
  --gtd-dark: #1e293b;
  --gtd-light: #F8FAFC;
  --gtd-accent: #314490;
  --gtd-white: #ffffff;
}

body {
  font-family: 'Inter', sans-serif;
  color: #334155; /* slate-700 */
  background-color: var(--gtd-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
}

.premium-shadow {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.premium-shadow-lg {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.glass-card {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.section-title {
  font-size: 1.875rem; /* 3xl */
  font-weight: 800;
  margin-bottom: 3rem;
  color: var(--gtd-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--gtd-gradient), var(--gtd-gradient-fallback);
  background-size: cover;
  background-position: center;
  border-radius: 2px;
}

.section-title-left {
  font-size: 1.875rem; /* 3xl */
  font-weight: 800;
  margin-bottom: 3rem;
  color: var(--gtd-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  display: inline-block;
}

.section-title-left::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--gtd-gradient), var(--gtd-gradient-fallback);
  background-size: cover;
  background-position: center;
  border-radius: 2px;
}

@media (min-width: 768px) {
  .section-title, .section-title-left {
    font-size: 2.5rem; /* 4xl */
  }
}

.btn-primary {
  color: #0a0f2c;
  padding: 0.75rem 1.75rem;
  border-radius: 0.75rem;
  transition: all 0.3s;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  background: #f1f5f9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid #e2e8f0;
  cursor: pointer;
}

.btn-primary:hover {
  background: #e2e8f0;
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid #e2e8f0;
  color: #64748b;
  padding: 0.75rem 1.75rem;
  border-radius: 0.75rem;
  transition: all 0.3s;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  cursor: pointer;
}

.btn-outline:hover {
  border-color: #cbd5e1;
  color: #475569;
  background-color: #f8fafc;
  transform: translateY(-2px);
}

.section-padding {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.selection\:bg-gtd-blue::selection {
  background-color: var(--gtd-blue);
  color: white;
}
