/* ==========================================================================
   GLOBAL BASE & LAYOUT
   ========================================================================== */

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #fdfdfd;
  color: #333;
}

.container {
  max-width: 1000px;
  margin: auto;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section {
  max-width: 800px;
  margin: auto;
  padding: 40px 20px;
}

h2 {
  font-size: 26px;
  margin-top: 0;
  margin-bottom: 15px;
  color: #111;
  font-weight: 800;
  letter-spacing: -0.5px;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

header {
  background: white;
  border-bottom: 1px solid #eaeaea;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

/* Ensure the nav links align nicely on desktop */

/* Hide the hamburger button by default on Desktop */

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

/* =========================================
   MOBILE RESPONSIVE RULES (Screens under 768px)
   ========================================= */

/* Show the hamburger menu icon */

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
}

/* Hide the navigation links by default on mobile */

@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eaeaea;
    gap: 12px;
  }
}

/* This class gets added by Javascript when the button is clicked */

@media (max-width: 768px) {
  nav.active {
    display: flex;
  }
}

/* Make buttons full-width on mobile for easier finger tapping */

@media (max-width: 768px) {
  nav a.btn-red, nav a.btn-outline-gold {
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
  }
}

.brand {
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.5px;
  margin-bottom: 2px !important;
}

.role-re {
  font-size: 11px;
  color: #c40000;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px !important;
}

.role-liq {
  font-size: 12px;
  color: #b8860b;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sub-tag {
  font-size: 11px;
  color: #777;
  font-weight: normal;
  margin-top: 2px;
}

.sub-tag-bold {
  font-weight: bold;
}

/* Navigation Links */

/* Override Bootstrap's default nav-link styling */

.navbar-nav .nav-link {
  font-weight: 600 !important;
  font-size: 13px !important;
  color: #444 !important;
  margin-left: 15px;
  transition: all 0.2s ease-in-out;
}

/* Override the hover state */

.navbar-nav .nav-link:hover {
  color: #c40000 !important;
}

/* Fix mobile alignment so the margin doesn't push them off-center on phones */

@media (max-width: 768px) {
  .navbar-nav .nav-link {
    margin-left: 0;
  }
}

/* Nav Buttons */

.btn-red {
  background: #c40000;
  color: white !important;
  padding: 6px 10px;
  border-radius: 4px;
}

.btn-red:hover {
  background: #a00000;
}

.btn-outline-gold {
  border: 1px solid #b8860b;
  padding: 6px 10px;
  border-radius: 4px;
  color: #b8860b !important;
  font-weight: bold;
}

.btn-outline-gold:hover {
  background: #fffcf5;
}

.btn-outline-grey {
  border: 1px solid #ccc;
  padding: 6px 12px;
  border-radius: 4px;
}

.btn-outline-grey:hover {
  background: #f5f5f5;
  color: #111;
}

/* ==========================================================================
   HERO SECTIONS & BANNERS
   ========================================================================== */

.compliance-banner {
  background: #fffcf5;
  color: #8a6508;
  text-align: center;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: bold;
  border-bottom: 1px solid #eedc9a;
}

.hero {
  background: #111;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.hero h1 {
  font-size: 38px;
  margin-bottom: 10px;
  font-weight: 900;
  letter-spacing: -1px;
  margin-top: 0;
}

.hero h1 .text-gold {
  color: #d4a200;
}

.hero p {
  color: #ccc;
  max-width: 700px;
  margin: auto;
  line-height: 1.5;
  font-size: 16px;
}

.herowidth {
  width: 40%;
}

/* Only md and lg screens */

@media (min-width: 768px) and (max-width: 1199.98px) {
  .herowidth {
    width: 70%;
  }
}

/* ==========================================================================
   CARDS & STORY BLOCKS
   ========================================================================== */

.card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 6px;
  font-size: 16px;
  color: #111;
  display: flex;
  align-items: center;
  gap: 8px;
}

.card p {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

.card p:last-child {
  margin-bottom: 0;
}

/* Real Estate Specific Cards */

.card-re {
  border-left: 4px solid #c40000;
}

.story-re {
  border-top: 4px solid #c40000;
}

.card-dark {
  border-left: 4px solid #111;
  background: #fafafa;
}

/* Liquidation Specific Cards */

.card-liq {
  border-left: 4px solid #b8860b;
}

.story-liq {
  border-top: 4px solid #b8860b;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 15px;
}

/* Drop Cap for My Story */

.drop-cap::first-letter {
  font-size: 3em;
  font-weight: 900;
  color: #c40000;
  float: left;
  line-height: 0.8;
  margin-right: 8px;
  margin-top: 4px;
}

.drop-capgold::first-letter {
  font-size: 3em;
  font-weight: 900;
  color: #d4a200;
  float: left;
  line-height: 0.8;
  margin-right: 8px;
  margin-top: 4px;
}

.redcolor {
  color: #c40000;
}

.darkcolor {
  color: #111;
}

/* Firewall Transition Box */

.transition-box {
  background: #fffdf8;
  border: 1px solid #eedc9a;
  border-top: 4px solid #b8860b;
  padding: 25px;
  border-radius: 8px;
}

.btn-solid-gold {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: #b8860b;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  font-size: 13px;
  transition: background 0.2s;
}

.btn-solid-gold:hover {
  background: #9c7209;
}

/* ==========================================================================
   FORMS
   ========================================================================== */

.form-input, .form-textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 10px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
}

.form-textarea {
  resize: vertical;
}

.submit-re {
  margin-top: 10px;
  padding: 12px 20px;
  background: #c40000;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  width: 100%;
}

.submit-re:hover {
  background: #a00000;
}

.submit-liq {
  margin-top: 10px;
  padding: 12px 20px;
  background: #b8860b;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  width: 100%;
}

.submit-liq:hover {
  background: #9c7209;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

footer {
  text-align: center;
  padding: 25px 20px;
  font-size: 12px;
  color: #666;
  background: #fff;
  border-top: 1px solid #eaeaea;
  line-height: 1.5;
}

/* =========================================
   DEFAULT (DESKTOP) BRANDING SIZES
   ========================================= */

.brand-logo {
  height: 60px;
  width: auto;
}

.brand-name {
  font-size: 1.25rem;
}

.brand-title {
  font-size: 11px;
  color: #c40000;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.navpadding {
  padding-left: 15px;
  padding-right: 15px;
}

/* =========================================
   MOBILE & TABLET (MEDIUM TO LOWER)
   ========================================= */

@media (max-width: 768px) {
  .brand-logo {
    height: 50px;
  }
}

@media (max-width: 768px) {
  .brand-name {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .brand-title {
    font-size: 9px;
    letter-spacing: 0.5px;
  }
}

@media (max-width: 768px) {
  .navpadding {
    padding-left: 10px;
    padding-right: 10px;
  }
}

