/* ===========================
   ROOT COLORS
=========================== */
:root {
  --navy: #041C2C;
  --navy-light: #062537;
  --gold: #D4AF37;
  --gold-light: #F0D98A;
  --white: #ffffff;
  --soft: rgba(255,255,255,0.6);
}

/* ===========================
   GLOBAL
=========================== */
body {
  background: var(--navy);
  font-family: "Inter", sans-serif;
  margin: 0;
  color: var(--white);
  text-align: center;
}

.center {
  text-align: center;
}

/* ===========================
   HEADER / LOGO
=========================== */
.hero-logo {
  width: 180px;
  margin-top: 40px;
  animation: fadeIn 1.2s ease;
}

.brand {
  color: var(--gold);
  font-size: 36px;
  margin-top: 10px;
  font-weight: 600;
}

.tagline {
  margin-top: -5px;
  font-size: 13px;
  color: var(--gold-light);
  letter-spacing: 1px;
}

/* ===========================
   NAVIGATION
=========================== */
nav ul {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 0;
  margin: 25px 0;
  list-style: none;
}

nav ul li {
  color: var(--gold-light);
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s ease;
}

nav ul li:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

/* ===========================
   HERO SECTION
=========================== */
.hero h2 {
  font-size: 36px;
  line-height: 1.3;
  margin-top: 40px;
  animation: fadeUp 1s ease;
}

.hero p {
  font-size: 15px;
  color: var(--soft);
  margin-top: 10px;
}

.hero-buttons {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn {
  padding: 10px 25px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.25s ease;
}

.primary {
  background: var(--gold);
  border: none;
  color: #000;
}

.primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.outline {
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold-light);
}

.outline:hover {
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ===========================
   SECTION TITLES
=========================== */
.section-title {
  font-size: 28px;
  margin-top: 60px;
  margin-bottom: 20px;
}

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

/* ===========================
   4-STAR TRADE WIDGET
=========================== */
.four-star {
  padding-bottom: 40px;
}

.widget-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.widget-card {
  background: var(--navy-light);
  width: 330px;
  padding: 20px;
  border-radius: 20px;
  animation: fadeIn 1s ease;
  border: 1px solid rgba(255,255,255,0.05);
}

table {
  width: 100%;
  margin-top: 10px;
  color: var(--white);
}

th {
  font-size: 14px;
  color: var(--gold-light);
  padding-bottom: 6px;
}

td {
  font-size: 14px;
  padding: 6px 0;
}

.pos { color: #2ecc71; }
.neg { color: #e74c3c; }

.full-tour a {
  color: var(--gold-light);
  text-decoration: underline;
  font-size: 14px;
  margin-top: 15px;
  display: inline-block;
}

/* ===========================
   WHY FEAR THE MARKET
=========================== */
.why-fear {
  background: var(--navy-light);
  margin: 40px 20px;
  padding: 40px 20px;
  border-radius: 20px;
}

.return-table {
  width: 70%;
  margin: 30px auto 0;
}

.return-table th {
  color: var(--gold);
}

.return-table td {
  color: var(--gold-light);
  font-size: 18px;
}

/* ===========================
   WHY ABWS WORKS
=========================== */
.why-row {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.why-card {
  width: 250px;
  background: var(--navy-light);
  padding: 20px;
  border-radius: 18px;
  animation: fadeUp 1s ease;
}

.why-card h3 {
  color: var(--gold-light);
  font-size: 16px;
  margin-bottom: 10px;
}

.why-card p {
  color: var(--soft);
  font-size: 14px;
}

/* ===========================
   BLOG SECTION
=========================== */
.blog-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.blog-card {
  width: 300px;
  background: var(--navy-light);
  padding: 20px;
  border-radius: 18px;
  animation: fadeIn 1s ease;
}

.blog-img {
  width: 100%;
  height: 150px;
  background: linear-gradient(135deg, #08324a, #052131);
  border-radius: 12px;
  margin-bottom: 15px;
}

.blog-card h3 {
  color: var(--gold-light);
}

.blog-card p {
  font-size: 14px;
  color: var(--soft);
}

.read-more {
  color: var(--gold);
  cursor: pointer;
  font-size: 14px;
}

/* ===========================
   EXPERIENCE STRIP
=========================== */
.experience-strip {
  margin-top: 50px;
  color: var(--gold-light);
  font-size: 14px;
}

/* ===========================
   FOOTER
=========================== */
footer {
  margin-top: 50px;
  padding-bottom: 40px;
}

.footer-logo {
  width: 80px;
  filter: drop-shadow(0 0 4px rgba(255,255,255,0.1));
}

.footer-tagline {
  font-size: 12px;
  margin-top: 10px;
  color: var(--gold-light);
}

.footer-copy {
  margin-top: 5px;
  color: var(--soft);
  font-size: 12px;
}

/* ===========================
   ANIMATIONS
=========================== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
