/* --- Global Styles --- */
body {
  font-family: "Inter", "Segoe UI", Roboto, sans-serif;
  background-color: #f4f6f9;
  scroll-behavior: smooth;
}

h1, h2, h3 {
  letter-spacing: 0.5px;
}

/* --- Section Styling --- */
section {
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}
section:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* --- Thematic Borders & Headers --- */
.border-blue-800 {
  border-color: #0b2c63 !important; /* SEC Navy Blue */
}

.border-yellow-600 {
  border-color: #d4a017 !important; /* Gold Accent */
}

.border-red-600 {
  border-color: #b91c1c !important; /* Deep Red for Risk */
}

.border-green-600 {
  border-color: #15803d !important; /* Compliance Green */
}

/* --- Themed Section Backgrounds --- */
.bg-yellow-50 {
  background-color: #fffaf0 !important;
}

.bg-red-50 {
  background-color: #fff5f5 !important;
}

.bg-green-50 {
  background-color: #f0fdf4 !important;
}

/* --- Inputs & Buttons --- */
input, select {
  border: 1px solid #cbd5e1;
  background-color: #ffffff;
  transition: all 0.25s ease-in-out;
}

input:focus, select:focus {
  outline: none;
  border-color: #2563eb; /* Tailwind blue */
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

/* Button hover upgrades */
button {
  transition: all 0.25s ease-in-out;
}
button:hover {
  transform: translateY(-1px);
}

/* --- Logo --- */
.logo-container img {
  transition: transform 0.3s ease;
}
.logo-container img:hover {
  transform: scale(1.05);
}

/* --- Smooth Section Reveal Animation --- */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(25px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

section {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}
section:nth-of-type(1) { animation-delay: 0.1s; }
section:nth-of-type(2) { animation-delay: 0.3s; }
section:nth-of-type(3) { animation-delay: 0.5s; }
section:nth-of-type(4) { animation-delay: 0.7s; }

/* --- Disclaimer Emphasis --- */
.bg-red-50 li::marker {
  color: #dc2626; /* Red bullets */
}

.bg-red-50 li {
  font-weight: 500;
}

/* --- Footer Logo --- */
.logo-container:last-of-type img {
  opacity: 0.9;
  transition: opacity 0.3s ease;
}
.logo-container:last-of-type img:hover {
  opacity: 1;
}
