/* ==========================================================
   ROOT VARIABLES (NO GOLD)
========================================================== */
:root{
  --bg-main: #0f1115;
  --bg-alt: #141821;
  --bg-card: #1a1f2b;

  --text-main: #f5f7fa;
  --text-muted: #a8b0c2;

  /* PRIMARY ACTION COLOR (BLUE) */
  --primary: #2b6cb0;
  --primary-hover: #1e4f8a;

  --border: rgba(255,255,255,0.08);
  --radius: 16px;
  --radius-sm: 10px;
}

/* ==========================================================
   BASE
========================================================== */
*{ box-sizing: border-box; }

html, body{ margin: 0; padding: 0; }

body{
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
}

/* LINKS — NO GOLD */
a{
  color: var(--text-main);
  text-decoration: none;
}

a:hover{
  color: var(--primary);
  text-decoration: underline;
}

img{ max-width: 100%; display: block; }

/* ==========================================================
   LAYOUT
========================================================== */
.container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section{ padding: 4rem 0; }
.section-alt{ background: var(--bg-alt); }

.section-head{
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.section-head p{ color: var(--text-muted); }

.section-actions{
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.tiny{
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ==========================================================
   BUTTONS — BLUE ONLY
========================================================== */
.btn{
  display: inline-block;
  padding: 0.75rem 1.25rem;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: none;
}

.btn:hover{
  background: var(--primary-hover);
  text-decoration: none;
}

.btn-ghost{
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-main);
}

.btn-small{
  padding: 0.5rem 0.9rem;
  font-size: 0.9rem;
}

/* ==========================================================
   HEADER / NAV
========================================================== */
.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-main);
  border-bottom: 1px solid var(--border);
}

.header-inner{
  display: flex;
  align-items: center;
  min-height: 70px;
  gap: 1rem;
}

.brand{
  display: flex;
  align-items: center;
  gap: 0.6rem;
  white-space: nowrap;
}

.brand-logo{ height: 34px; }
.brand-name{ font-weight: 800; }

.nav{ flex: 1; display: flex; }

.navlinks{
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
}

.navlinks a{
  flex: 1;
  text-align: center;
  padding: 0.75rem 0.5rem;
  color: var(--text-main);
  font-weight: 600;
}

.navlinks a:hover{
  color: var(--primary);
  text-decoration: none;
}

.nav-toggle{
  display: none;
  background: none;
  color: var(--text-main);
  border: none;
}

@media (max-width: 900px){
  .nav-toggle{ display: block; }

  .navlinks{
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-main);
    flex-direction: column;
    padding: 1rem;
    display: none;
    border-bottom: 1px solid var(--border);
  }

  .navlinks.open{ display: flex; }
}

/* ==========================================================
   HERO
========================================================== */
.hero{ padding: 5rem 0; }

.hero-grid{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
}

.hero-actions{
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
}

@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
}

/* ==========================================================
   CARDS
========================================================== */
.cards{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.card{
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

/* ==========================================================
   GALLERY
========================================================== */
.gallery{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.shot{
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.shot-img{
  height: 200px;
  background: #000;
}

.shot-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shot figcaption{
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: var(--text-main);
}

/* TEXT TILE — NEUTRAL */
.shot-text .shot-img{
  background: var(--bg-alt);
  text-align: center;
  padding: 1rem;
}

/* ==========================================================
   ABOUT PAGE
========================================================== */
.about-grid{
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2rem;
}

.owner-photo{
  width: 220px;
  max-width: 220px;
  height: auto;
  display: block;
}

@media (max-width: 900px){
  .about-grid{ grid-template-columns: 1fr; }
  .owner-photo{ margin: 0 auto; }
}

/* ==========================================================
   FOOTER
========================================================== */
.site-footer{
  border-top: 1px solid var(--border);
  padding: 2rem 0;
}

.footer-inner{
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a{
  color: var(--text-muted);
}

.footer-links a:hover{
  color: var(--text-main);
}

/* ==========================================================
   LIGHTBOX
========================================================== */
.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox.open{ display: flex; }

.lightbox-img{
  max-width: 95%;
  max-height: 90%;
  border-radius: var(--radius);
}

.lightbox-close{
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
}

/* ==========================================================
   FINAL OVERRIDES — KILL GOLD BUTTON BACKGROUND
   (If ANY old cached rule or extra stylesheet sets gold,
   this forces all .btn and header CTA buttons to BLUE.)
========================================================== */
.btn,
a.btn,
.navlinks a.btn,
.site-header .btn,
.site-header a.btn{
  background-color: var(--primary) !important;
  color: #fff !important;
}

.btn:hover,
a.btn:hover,
.navlinks a.btn:hover,
.site-header .btn:hover,
.site-header a.btn:hover{
  background-color: var(--primary-hover) !important;
}
