/* ══════════════════════════════════════════
   GALENA MARINE TERMINAL — GLOBAL STYLESHEET
   ══════════════════════════════════════════ */

   :root {
    /* Dark palette */
    --navy:          #042e38;
    --navy-mid:      #063d4a;
    --navy-light:    #0a5566;
    --navy-deep:     #021a20;
  
    /* Accent */
    --gold:          #00c9b1;
    --gold-light:    #2ee8d0;
    --gold-dark:     #008f7e;
  
    /* Light section palette */
    --light-bg:          #ffffff;
    --light-bg-gray:     #f4f7f8;
    --light-border:      #dde6e9;
    --light-text-primary:   #0d2530;
    --light-text-secondary: #2d4a55;
    --light-text-muted:     #6a8a95;
    --light-gold-accent:    #007d6e;
  
    /* Text on dark */
    --text-muted:    #7abdc7;
    --text-light:    #b0dce3;
    --white:         #ffffff;
  }
  
  /* ── NAV ── */
  nav {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: rgba(4, 46, 56, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid rgba(0, 201, 177, 0.3);
    height: 88px;
    padding: 0 3rem;
    display: flex; align-items: center; justify-content: space-between;
    transition: all 0.3s;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
  }
  
  /* ── LOGO AREA ── */
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    flex-shrink: 0;
  }
  
  /* Logo image — large, bright, bold */
  .nav-logo img {
    height: 64px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(0,201,177,0.6));
    object-fit: contain;
    flex-shrink: 0;
  }
  .footer-brand img {
    height: 64px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(0,201,177,0.6));
    object-fit: contain;
    flex-shrink: 0;
  }
  
  /* Logo divider line */
  .nav-logo-divider {
    width: 2px;
    height: 52px;
    background: linear-gradient(to bottom, transparent, rgba(0,201,177,0.6), transparent);
    flex-shrink: 0;
  }
  
  /* Logo text block */
  .nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 4px;
  }
  
  .nav-logo-text .brand-main {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    letter-spacing: 3px;
    color: #ffffff;
    display: block;
    text-shadow: 0 0 20px rgba(0,201,177,0.4);
  }
  
  .nav-logo-text .brand-sub {
    font-family: 'Barlow', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    display: block;
  }
  
  .nav-logo-text .brand-location {
    font-family: 'Barlow', sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 2.5px;
    color: rgba(176,220,227,0.7);
    text-transform: uppercase;
    display: block;
  }
  
  /* ── NAV LINKS ── */
  .nav-links {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
  }
  
  .nav-links li a {
    display: block;
    padding: 0 16px;
    height: 88px;
    line-height: 88px;
    color: var(--text-light);
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-decoration: none;
    text-transform: uppercase;
    border-bottom: 3px solid transparent;
    transition: color 0.2s, border-color 0.2s;
  }
  
  .nav-links li a:hover,
  .nav-links li a.active {
    color: var(--white);
    border-bottom-color: var(--gold);
  }
  
  .nav-cta {
    background: var(--gold) !important;
    color: var(--navy) !important;
    font-weight: 700 !important;
    padding: 11px 22px !important;
    border-radius: 2px;
    height: auto !important;
    line-height: 1.4 !important;
    border: none !important;
    margin-left: 8px;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  }
  
  .nav-cta:hover {
    background: var(--gold-light) !important;
    border: none !important;
  }
  
  /* Adjust hero for taller nav */
  #home {
    margin-top: 0;
  }
  
  section {
    padding: 100px 6rem;
  }
  
  /* All existing colour vars re-mapped for light sections */
  .light-section {
    background: var(--light-bg);
  }