/* ==========================
   GLOBAL RESET
   ========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000;
  color: #fff;
  font-family: Arial, sans-serif;
}

/* ==========================
   NAVBAR
   ========================== */
.nav {
  width: 100%;
  padding: 12px 16px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #222;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-img {
  height: 32px;
  width: auto;
}

.logo-text {
  font-size: 18px;
  font-weight: bold;
  white-space: nowrap;
  color: #FFD447 !important; /* FIXED: gold */
}

/* DESKTOP MENU */
.menu {
  list-style: none;
  display: flex;
  gap: 24px;
}

.menu a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

/* HAMBURGER (MOBILE ONLY) */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu {
    display: none;
    position: absolute;
    top: 64px;
    right: 16px;
    background: #000;
    padding: 16px;
    border: 1px solid #333;
    flex-direction: column;
    gap: 12px;
    z-index: 20;
  }

  .menu.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

/* Push content below fixed nav */
main {
  padding-top: 100px !important;
}

/* =========================
   HERO SECTION
   ========================= */

.hero {
  overflow: hidden;
}

.hero-wrap {
  position: relative;
  width: 100%;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 700px;
}

/* =========================
   DESKTOP HERO TEXT
   ========================= */

.hero-text {
  position: absolute;
  top: 25%;
  left: 6%;
  max-width: 360px;
  color: #fff;
  background: rgba(0,0,0,0.45);
  padding: 26px;
  border-radius: 10px;
  z-index: 5;
}

.hero-text p {
  font-size: 28px;
  margin-bottom: 18px;
  line-height: 1.45;
}

.hero-btn {
  background: #F2C94C !important;
  color: #000 !important;
  padding: 16px 22px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
  font-size: 20px;
  transition: background 0.2s ease;
}

.hero-btn:hover {
  background: #D4A935 !important;
}

/* =========================
   MOBILE HERO FIXES
   ========================= */

@media (max-width: 768px) {

  .hero-img {
    object-fit: cover;
    max-height: none;
  }

  .hero-text {
    top: 6%;
    left: 6%;
    max-width: 180px;
    padding: 10px;
    background: rgba(0,0,0,0.35);
  }

  .hero-text h1 {
    font-size: 25px !important;
    line-height: 1.2;
  }

  .hero-text p {
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.30;
  }

  .hero-btn {
    background: #F2C94C !important;
    font-size: 16px;
    padding: 8px 12px;
    max-width: 140px;
    display: block;
    transition: background 0.2s ease;
  }

  .hero-btn:hover {
    background: #D4A935 !important;
  }
}

/* =========================
   LAYOUT SECTIONS
   ========================= */

.section-wrap {
  padding: 60px 20px;
  max-width: 950px;
  margin: 0 auto;
}

.content-box {
  text-align: left;
  color: #ddd;
}

.section-title {
  font-size: 28px;
  margin-bottom: 16px;
}

.section-text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 14px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  align-items: center;
}

.side-img {
  width: 100%;
  max-width: 320px;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

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

.site-footer {
  background: #111;
  color: #999;
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid #222;
  margin-top: 60px;
}

.site-footer a {
  color: #e5b638;
  text-decoration: none;
  margin: 0 6px;
  font-weight: bold;
}

.site-footer a:hover {
  color: #fff;
}

.footer-legal p {
  margin-bottom: 12px;
  font-size: 13px;
  line-height: 1.5;
}

/* =========================
   FAT CAT POPUP — LUXURY VERSION
   ========================= */

.fatcat-popup.hidden {
  opacity: 0;
  pointer-events: none;
}

.fatcat-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  background: rgba(0,0,0,0.65);
  transition: opacity 0.35s ease;
}

.fatcat-popup-box {
  position: relative;
  background: linear-gradient(145deg, #0d0d0d, #111);
  border: 1px solid rgba(255, 212, 71, 0.5);
  padding: 38px 40px;
  border-radius: 20px;
  max-width: 390px;
  width: 92%;
  text-align: center;
  box-shadow:
    0 0 40px rgba(255,212,71,0.12),
    0 0 90px rgba(0,0,0,0.85);
  animation: luxuryPop 0.45s ease forwards;
}

@keyframes luxuryPop {
  from {
    transform: translateY(30px) scale(0.92);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.fatcat-popup-box h2 {
  font-size: 24px;
  color: #FFD447;
  margin-bottom: 20px;
  line-height: 1.4;
  text-shadow: 0 0 12px rgba(255, 212, 71, 0.4);
}

.fatcat-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255,212,71,0.1);
  border: 1px solid rgba(255,212,71,0.25);
  color: #FFD447;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 22px;
  cursor: pointer;
  transition: 0.25s ease;
}

.fatcat-close:hover {
  background: rgba(255,212,71,0.25);
  transform: scale(1.08);
}

.fatcat-cta {
  margin-top: 22px;
  background: linear-gradient(145deg, #FFD447, #E6B93A);
  color: #000;
  padding: 15px 20px;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  transition: 0.25s ease;
  box-shadow:
    0 0 18px rgba(255,212,71,0.45),
    inset 0 0 10px rgba(255,212,71,0.35);
}

.fatcat-cta:hover {
  background: linear-gradient(145deg, #E6B93A, #FFD447);
  transform: translateY(-2px);
}

/* =========================
   HOMEPAGE — LATEST POSTS
   ========================= */

.home-latest-posts {
  max-width: 950px;
  margin: 60px auto;
  padding: 0 20px;
}

.home-latest-title {
  font-size: 28px;
  margin-bottom: 20px;
  color: #FFD447;
}

/* FIXED DESKTOP */
.home-post-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 26px;
}

/* FIXED MOBILE - NOW SINGLE COLUMN */
@media (max-width: 768px) {
  .home-post-grid {
    grid-template-columns: 1fr !important;
  }
}

.home-post-card {
  background: #111;
  border: 1px solid #222;
  padding: 20px;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.25s ease;
}

.home-post-card:hover {
  border-color: #FFD447;
  transform: translateY(-4px);
}

.home-post-thumb {
  width: 100% !important;
  aspect-ratio: 1/1 !important;
  object-fit: cover !important;
  border-radius: 10px !important;
  margin-bottom: 14px;
}

.home-post-title {
  color: #fff !important;
  font-size: 18px;
  margin-bottom: 12px;
}

.home-post-date {
  color: #aaa;
  font-size: 14px;
}

/* =========================
   BLOG CONTENT FIXES
   ========================= */

.fatcat-blog-body {
  margin-top: 2.5rem !important;
}

.fatcat-blog-body p {
  margin: 1.8rem 0 !important;
  line-height: 1.9 !important;
  max-width: 680px;
}

.fatcat-blog-body h1,
.fatcat-blog-body h2,
.fatcat-blog-body h3 {
  margin-top: 2.5rem !important;
  margin-bottom: 1.25rem !important;
  color: #fff !important;
}

.fatcat-blog-body ul,
.fatcat-blog-body ol {
  margin: 1.6rem 0 1.6rem 2rem !important;
  line-height: 1.75 !important;
}

.fatcat-blog-body blockquote {
  margin: 2rem 0 !important;
  padding-left: 1.25rem !important;
  border-left: 4px solid #FFD447 !important;
  color: #ccc !important;
  font-style: italic !important;
}

.fatcat-blog-body img {
  margin: 2rem 0 !important;
  border-radius: 12px !important;
  width: 100% !important;
  height: auto !important;
}

/* =========================
   SAFE GLOBAL LINK RULE
   ========================= */

a {
  text-decoration: none; /* stop blue underline */
}

/* =========================
   GLOBAL GOLD LINKS
   ========================= */
a {
  color: #FFD447 !important;
  text-decoration: none;
}

a:hover {
  color: #C29B2A !important;
}
