
* { box-sizing: border-box; }

:root {
  --navy: #06192a;
  --teal: #19c2d1;
  --gold: #e7b85a;
  --white: #ffffff;
  --soft: #dcecf2;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--white);
  background: var(--navy);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 10px 42px;
  background: rgba(3, 18, 32, 0.94);
  border-bottom: 3px solid rgba(25, 194, 209, 0.85);
}

.logo-wrap img {
  height: 82px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.8px;
  font-size: 15px;
}

.main-nav a:hover { color: var(--teal); }

.home-hero {
  min-height: 720px;
  display: flex;
  align-items: center;
  padding: 80px 8vw;
  background:
    linear-gradient(90deg, rgba(3, 18, 32, 0.82), rgba(3, 18, 32, 0.25), rgba(3, 18, 32, 0.15)),
    url("assets/socal-bite-background.png") center / cover no-repeat;
}

.hero-card {
  max-width: 760px;
  padding: 36px;
  border-radius: 24px;
  background: rgba(6, 25, 42, 0.72);
  border: 1px solid rgba(25, 194, 209, 0.45);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.35);
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
  margin: 0 0 12px;
}

h1 {
  font-size: clamp(38px, 5vw, 76px);
  line-height: 0.95;
  margin: 0 0 22px;
  text-transform: uppercase;
}

.hero-text {
  color: var(--soft);
  font-size: 20px;
  line-height: 1.55;
  max-width: 650px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.btn {
  display: inline-block;
  padding: 14px 22px;
  border: 2px solid var(--teal);
  border-radius: 999px;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.7px;
}

.btn.primary, .btn:hover {
  background: var(--teal);
  color: #052033;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 34px 6vw;
  background: #071923;
}

.quick-card {
  min-height: 170px;
  padding: 24px;
  border-radius: 18px;
  background: linear-gradient(180deg, #102d3b, #071f2e);
  border: 1px solid rgba(25, 194, 209, 0.35);
  color: var(--white);
  text-decoration: none;
}

.quick-card h2, .region-card h2 { color: var(--teal); text-transform: uppercase; }

.quick-card p, .region-card p { color: var(--soft); line-height: 1.45; }

.page-hero {
  padding: 60px 7vw 34px;
  background:
    linear-gradient(rgba(3, 18, 32, 0.78), rgba(3, 18, 32, 0.82)),
    url("assets/socal-bite-background.png") center / cover no-repeat;
  border-bottom: 3px solid var(--teal);
}

.page-hero h1 { font-size: clamp(34px, 4vw, 58px); }

.page-hero p {
  color: var(--soft);
  font-size: 18px;
  max-width: 820px;
}

.report-frame-wrap {
  padding: 24px 4vw 50px;
  background: #071923;
}

.report-frame {
  width: 100%;
  min-height: 1200px;
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #071923;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 34px 6vw 55px;
}

.region-card {
  padding: 28px;
  border-radius: 20px;
  background: #102d3b;
  border: 1px solid rgba(25, 194, 209, 0.4);
  color: white;
  text-decoration: none;
}

.content-section {
  padding: 34px 7vw 60px;
  color: var(--soft);
  line-height: 1.7;
  font-size: 18px;
}

footer {
  padding: 22px;
  text-align: center;
  color: var(--soft);
  background: #031220;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 12px 20px;
  }

  .logo-wrap img { height: 72px; }

  .main-nav { gap: 14px; }

  .main-nav a { font-size: 13px; }

  .home-hero {
    min-height: 640px;
    padding: 42px 20px;
  }

  .hero-card { padding: 24px; }

  .quick-grid, .region-grid { grid-template-columns: 1fr; }

  .report-frame { min-height: 1000px; }
}
.site-header {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
}

.main-nav {
  display: flex !important;
  gap: 22px;
  z-index: 999;
}

.main-nav a {
  background: rgba(3, 18, 32, 0.75);
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(25, 194, 209, 0.5);
}

.button-row {
  display: flex !important;
  z-index: 999;
  position: relative;
}

.btn {
  background: rgba(3, 18, 32, 0.85);
}
.home-page {
  margin: 0;
  min-height: 100vh;
  background: #06192a;
}

.full-bg-home {
  min-height: 100vh;
  background: url("assets/socal-bite-background.png") top center / cover no-repeat;
  position: relative;
}
.floating-nav {
    position: absolute;
    top: 80px;
    right: 42px;

    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    z-index: 999;
}
.floating-nav a,
.home-btn {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.7px;
  background: rgba(3, 18, 32, 0.82);
  border: 1px solid rgba(25, 194, 209, 0.7);
  border-radius: 999px;
  padding: 12px 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
}

.floating-nav a:hover,
.home-btn:hover,
.home-btn.primary {
  background: #19c2d1;
  color: #052033;
}

.home-buttons {
  position: absolute;
  left: 8%;
  bottom: 9%;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  z-index: 10;
}

@media (max-width: 900px) {
  .floating-nav {
    left: 18px;
    right: 18px;
    top: 18px;
    justify-content: center;
  }

  .floating-nav a {
    font-size: 12px;
    padding: 9px 12px;
  }

  .home-buttons {
    left: 18px;
    right: 18px;
    bottom: 28px;
    justify-content: center;
  }

  .home-btn {
    font-size: 13px;
    padding: 11px 14px;
  }
}
.site-header {
  display: none;
}

.page-hero {
  padding-top: 120px;
}

.page-floating-nav {
  position: fixed;
  top: 24px;
  right: 42px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  z-index: 999;
}

.page-floating-nav a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.7px;
  background: rgba(3, 18, 32, 0.82);
  border: 1px solid rgba(25, 194, 209, 0.7);
  border-radius: 999px;
  padding: 12px 18px;
}

.page-floating-nav a:hover {
  background: #19c2d1;
  color: #052033;
}
.floating-nav a:last-child,
.floating-nav a:nth-last-child(2) {
    background: rgba(25,194,209,.15);
    border: 1px solid #19c2d1;
}

.floating-nav a:last-child:hover,
.floating-nav a:nth-last-child(2):hover {
    background: #19c2d1;
    color: #052033;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  padding: 0;
  background: transparent !important;
  border: none !important;
}



.social-logo:hover {
  transform: scale(1.1);
}
.social-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  transition: .2s ease;
}

.social-logo:hover {
  transform: scale(1.15);
}
.social-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.site-header {
  display: none !important;
}

.page-hero {
  background: url("assets/socal-bite-background.png") top center / cover no-repeat !important;
  padding-top: 150px;
  min-height: 320px;
}

.page-hero h1,
.page-hero p {
  text-shadow: 0 3px 10px rgba(0,0,0,.7);
}

.report-frame-wrap,
.content-section,
.region-grid {
  background: #071923;
}

.floating-nav {
  position: absolute;
  top: 80px;
  right: 42px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  z-index: 999;
}

.social-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
