:root {
--harbor-blue: #114b6f;
--harbor-dark: #0d2f45;
}

body {
background: #f6f8fb;
color: #17212b;
}

.navbar {
background: var(--harbor-dark);
}

.navbar-brand {
letter-spacing: .01em;
}

.hero {
min-height: 68vh;
color: white;
background:
linear-gradient(90deg, rgba(8, 35, 53, .9), rgba(8, 35, 53, .58), rgba(8, 35, 53, .2)),
url("images/hero_img.jpg") center/cover;
}

    .hero .lead {
      max-width: 760px;
    }

    .wide-gallery-photo {
      display: block;
      width: 100%;
      max-height: 78vh;
      object-fit: contain;
      background: #0d2f45;
    }

    .section-band {
      background: white;
    }

    .feature-photo {
      width: 100%;
      height: 300px;
      object-fit: cover;
      object-position: center 42%;
    }

    .launch-photo {
      width: 100%;
      max-height: 520px;
      object-fit: cover;
      object-position: center;
    }

    .gallery-photo {
      width: 100%;
      height: 360px;
      object-fit: cover;
    }

    .gallery-photo-tall {
      width: 100%;
      height: 520px;
      object-fit: cover;
      object-position: center 42%;
    }

    .photo-credit {
      color: #5f7182;
      font-size: .9rem;
      margin-top: .5rem;
    }

    .launch-panel {
      border-left: 4px solid var(--harbor-blue);
      background: #eef5f8;
    }

    .guest-image {
      width: 100%;
      height: 100%;
      max-height: 420px;
      object-fit: cover;
      border-radius: 8px;
      box-shadow: 0 6px 20px rgba(17, 75, 111, .15);
      cursor: zoom-in;
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .guest-image:hover,
    .guest-image:focus-visible {
      transform: scale(1.01);
      box-shadow: 0 10px 28px rgba(17, 75, 111, .25);
      outline: none;
    }

    .vipps-panel {
      border: 1px solid #dde5ec;
      border-radius: 8px;
      background: #f8fafc;
    }

    .vipps-preview {
      width: 100%;
      max-height: 260px;
      border-radius: 6px;
      background: white;
      object-fit: contain;
    }

    .guest-price-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: .75rem;
    }

    .guest-price {
      border: 1px solid #dde5ec;
      border-radius: 8px;
      background: white;
    }

    .guest-price .amount {
      color: var(--harbor-dark);
      font-size: 1.8rem;
      font-weight: 700;
      line-height: 1.15;
    }

    .fact-card {
      height: 100%;
      border: 1px solid #dde5ec;
      border-radius: 8px;
      background: white;
    }

    .marine-card {
      height: 100%;
      border: 1px solid #dde5ec;
      border-radius: 8px;
      background: white;
      box-shadow: 0 4px 16px rgba(13, 47, 69, .10), 0 1px 4px rgba(13, 47, 69, .06);
    }

    .marine-card .value {
      color: var(--harbor-dark);
      font-size: 2rem;
      font-weight: 700;
      line-height: 1.15;
    }

    .marine-meta {
      color: #5f7182;
      font-size: .95rem;
    }

    .marine-list {
      display: grid;
      gap: .45rem;
    }

    .marine-list-row {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      border-bottom: 1px solid #eef2f5;
      padding-bottom: .45rem;
      color: #5f7182;
      font-size: .95rem;
    }

    .marine-list-row:last-child {
      border-bottom: 0;
      padding-bottom: 0;
    }

    .moon-visual {
      width: 86px;
      height: 86px;
      border-radius: 50%;
      background: #f5f0d4;
      box-shadow: inset 0 0 16px rgba(13, 47, 69, .22), 0 8px 20px rgba(13, 47, 69, .12);
      overflow: hidden;
      position: relative;
    }

    .moon-shadow {
      position: absolute;
      inset: 0;
      border-radius: 50%;
      background: var(--harbor-dark);
      transform: translateX(0);
      opacity: .92;
    }

    .mood-picker {
      display: flex;
      gap: .5rem;
    }

    .mood-btn {
      font-size: 1.6rem;
      line-height: 1;
      background: none;
      border: 2px solid transparent;
      border-radius: 8px;
      padding: .2rem .3rem;
      cursor: pointer;
      opacity: .45;
      transition: opacity .15s, border-color .15s, transform .1s;
    }

    .mood-btn:hover { opacity: .8; transform: scale(1.15); }
    .mood-btn.selected { opacity: 1; border-color: var(--harbor-blue); transform: scale(1.15); }

    .guest-form-success {
      display: none;
      text-align: center;
      padding: 2rem 1rem;
    }

    .btn-harbor {
      --bs-btn-bg: var(--harbor-blue);
      --bs-btn-border-color: var(--harbor-blue);
      --bs-btn-hover-bg: #0d3f5f;
      --bs-btn-hover-border-color: #0d3f5f;
      --bs-btn-color: #fff;
      --bs-btn-hover-color: #fff;
    }

    .camera-link {
      display: inline-flex;
      align-items: center;
      gap: .55rem;
      box-shadow: 0 8px 18px rgba(13, 47, 69, .16);
    }

    .camera-link-icon {
      width: 1.15rem;
      height: 1.15rem;
      flex: 0 0 auto;
    }

    footer {
      background: var(--harbor-dark);
      color: rgba(255, 255, 255, .78);
    }