/* ==============================
   VARIABLES
============================== */
:root {
  --bg: #0b0b0f;
  --panel: #121218;
  --ink: #e7e7ea;
  --muted: #a7a7b4;

  --gold-muted: #d4af37;
  --gold-bright: #ffe88c;
  --gold-soft-1: #c9a227;
  --gold-soft-2: #8b7500;

  --accent: #7CF0FF;
  --outline: #2a2a35;
}

/* ==============================
   BASE STYLES
============================== */
* {
  transition: all 0.2s ease-in-out;
}

html {
  scrollbar-gutter: stable; /* keeps space for scrollbar */
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  margin: 0;
  line-height: 1.55;
}

.container {
  width: min(1100px, 92vw);
  margin-inline: auto;
}

/* ==============================
   HEADER
============================== */
.site-header {
  background: #0c0c12;
  border-bottom: 1px solid var(--outline);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0.75rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
}

.brand__name {
  color: #d4af37;   /* muted gold */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tagline {
  margin: 0;
  text-align: center;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 600;
  color: var(--gold-muted);
  text-shadow: 0 1px 3px rgba(0,0,0,.5);
  font-family: "Cinzel", serif; 
}

/* ==============================
   NAVIGATION
============================== */
.nav { justify-self: end; }

.nav__list {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.nav__link {
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--gold-muted);
}

.nav__link:hover {
  color: var(--gold-bright);
  text-shadow: 0 0 8px rgba(255,232,140,.7);
  border-bottom: 1px solid var(--gold-bright);
  transform: scale(1.05);
}

.nav__link:active {
  color: var(--accent);
  border-color: var(--accent);
}

/* Dropdown */
.nav__item--dropdown { position: relative; }

.dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + .4rem);
  min-width: 210px;
  background: #0f0f16;
  border: 1px solid var(--outline);
  border-radius: .9rem;
  display: none;
  list-style: none;   
  margin: 0;          
  padding: .4rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.7);
}

.dropdown.is-open { display: block; }

.dropdown__link {
  font-family: 'Lora', serif;
  font-size: 1rem;
  color: var(--gold-muted);
  padding: .6rem .8rem;
  border-radius: .4rem;
}

.dropdown__link:hover {
  color: var(--gold-bright);
  background: rgba(212,175,55,0.15);
}

/* ==============================
   SECTION CARDS
============================== */
.section-card {
  background: var(--panel);
  border: 1px solid var(--outline);
  border-radius: 16px;
  margin: 1.25rem 0 1.5rem;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.6);
}

.section-card__header {
  background: linear-gradient(135deg, var(--gold-soft-1), var(--gold-soft-2));
  padding: .85rem 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.section-card__title {
  margin: 0;
  color: #1a1a1a;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.4rem;
}

/* ==============================
   DISCLAIMER STYLES
   ============================== */

   .disclaimer {
    background: #121218;
    color: #a7a7b4;
    text-align: center;
    font-size: 1rem
    padding: 0.5rem;
    border-top: 1px solid #2a2a35;
    opacity: 0.7;
  }

/* ==============================
   TABLES
============================== */
.table-wrap { overflow-x: auto; }

.fc-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 650px;
}

.fc-table th,
.fc-table td {
  padding: 1rem 1.2rem;
}

.fc-table thead th {
  position: sticky;
  top: 0;
  background: #0e0e15;
  color: var(--gold-muted);
  font-family: 'Playfair Display SC', serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 2px solid var(--gold-soft-1);
  text-shadow: 1px 1px 2px #000;
}

.fc-table tbody td {
  font-family: 'Lora', serif;
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.6;
  letter-spacing: 0.3px;
}

.fc-table tbody tr:nth-child(even) {
  background: #12121a;
}

.fc-table tbody tr:hover {
  background: rgba(212, 175, 55, 0.1);
  
}

/* Receipt Links */
.link-receipt {
  color: var(--gold-muted);
  text-decoration: none;
  border-bottom: 1px dotted rgba(212,175,55,.6);
}

.link-receipt:hover {
  color: var(--gold-bright);
  border-color: var(--gold-bright);
  text-shadow: 0 0 5px rgba(255,232,140,.6);
}

.link-receipt:active {
  color: var(--accent);
  border-color: var(--accent);
}

/* ==============================
   FOOTER
============================== */
.site-footer {
  text-align: center;
  margin-top: 30px;
  font-size: 0.95rem;
  background-color: #000;
  color: #d4af37;
  padding: 18px 0;
  border-top: 1px solid #d4af37;
  box-shadow: 0 -2px 6px rgba(0,0,0,0.6);
}

.site-footer .disclaimer {
  color: #4da6ff;   /* bright blue */
  font-weight: 600;
}

.site-footer a {
  color: var(--gold-muted);
  margin-left: 6px;
  text-decoration: underline;
}

.site-footer a:hover {
  color: var(--gold-bright);
  text-shadow: 0 0 6px rgba(255,232,140,.6);
}

/* ==============================
   MOBILE
============================== */
@media (max-width: 600px) {
  .site-header__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0.5rem;
  }

  .tagline { font-size: 0.9rem; }

  .nav__list {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ==============================
   GLOBAL LINKS
============================== */
a {
  color: var(--gold-muted);
  text-decoration: none;
}

a:hover {
  color: var(--gold-bright);
}

/* ==============================
   FAT CAT LOGO (TOP LEFT)
============================== */

.brand__mark img {
  height: 70px;   /* tweak until it looks clean */
  width: auto;
  display: block;
}

.brand__text {
  font-family: 'Cinzel', serif; /* or your chosen luxury font */
  font-size: 1.5rem;
  font-weight: 700;
  color: gold;
  margin-left: 10px;
  display: flex;
  align-items: center;
}
.brand:active img {
  transform: scale(1.2);   /* grow 20% bigger */
  transition: transform 0.2s ease; /* smooth grow/shrink */
}

/* ==============================
   LIFESTYLE HERO
============================== */

.hero-frame {
  border: 2px solid var(--gold-soft-1);
  margin: 0 auto;
  max-width: 100%;
  box-sizing: border-box;
}

#lifestyle-hero {
  height: 80vh; /* or 100vh if you want full screen */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url("https://cdn.pixabay.com/photo/2013/05/11/04/17/building-110285_1280.jpg");
  background-size: cover;
  background-position: center;

  color: var(--gold-bright);
}

#lifestyle-hero h1 {
  font-family: "Cinzel", serif;
  font-size: 3rem;
  margin: 0;
}

#lifestyle-hero h2 {
  font-size: 1.5rem;
  font-style: italic;
  color: #fff;
  margin-top: 10px;
}

#lifestyle-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 tiles per row */
  gap: 25px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.lifestyle-tile {
  background: var(--panel);
  border: 2px solid var(--gold-soft-1);
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 6px 12px rgba(0,0,0,0.7);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lifestyle-tile:hover {
  transform: scale(1.07);
  box-shadow: 0 12px 24px rgba(212,175,55,0.5); /* rich gold glow */
}

.lifestyle-tile img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border-bottom: 3px solid var(--gold-soft-1); /* bold frame line */
}

.lifestyle-tile h2 {
  font-family: "Cinzel", serif;
  font-size: 1.6rem;
  color: var(--gold-bright);
  margin: 15px 0 8px;
}

.lifestyle-tile p {
  font-family: "Lora", serif;
  font-size: 1rem;
  color: var(--muted);
  font-style: italic;
  margin: 0 0 20px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  #lifestyle-section {
    grid-template-columns: 1fr; /* stack vertically */
  }
}
