﻿/* Deluxe Cruises sitewide modernization layer. Keeps legacy URLs and content intact. */
:root {
  --dc-ink: #102033;
  --dc-navy: #102a43;
  --dc-blue: #0d4f7c;
  --dc-gold: #d6aa4f;
  --dc-gold-soft: #f4d58b;
  --dc-paper: #f7f4ee;
  --dc-card: #ffffff;
  --dc-line: #dfd6c3;
}
html {
  font-family: Corbel, Candara, "Segoe UI", Arial, sans-serif;
  background: var(--dc-paper);
  color: var(--dc-ink);
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--dc-paper) !important;
  color: var(--dc-ink);
  line-height: 1.5;
}
a { color: var(--dc-blue); }
a:hover { color: #08395b; }
a:focus-visible {
  outline: 3px solid var(--dc-gold);
  outline-offset: 3px;
}
img {
  max-width: 100%;
  height: auto;
}
table {
  max-width: calc(100% - 24px) !important;
}
.dc-site-header,
.dc-quote-panel {
  box-sizing: border-box;
  width: min(1180px, calc(100% - 28px));
  margin: 16px auto;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(16, 32, 51, 0.12);
  font-family: Corbel, Candara, "Segoe UI", Arial, sans-serif;
  text-align: left;
}
.dc-site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  background: linear-gradient(135deg, #102a43, #24445e);
  color: #fff;
}
.dc-brand-group {
  min-width: 220px;
}
.dc-brand {
  display: inline-block;
  color: #fff !important;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.05;
  text-decoration: none;
}
.dc-kicker {
  display: block;
  margin-top: 4px;
  color: var(--dc-gold-soft);
  font-size: 14px;
  font-weight: 700;
}
.dc-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}
.dc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 4px;
  background: var(--dc-gold-soft);
  color: var(--dc-ink) !important;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}
.dc-button--ghost {
  background: rgba(255, 255, 255, 0.09);
  color: #fff !important;
}
.dc-quote-panel {
  padding: 22px 24px;
  border: 1px solid var(--dc-line);
  background: var(--dc-card);
}
.dc-quote-panel h2 {
  margin: 0 0 8px;
  padding: 0;
  color: var(--dc-navy);
  font-size: 24px;
  line-height: 1.2;
}
.dc-quote-panel p {
  max-width: 920px;
  margin: 0;
  color: #334e68;
  font-size: 17px;
}
.dc-quote-panel .dc-actions {
  justify-content: flex-start;
  margin-top: 16px;
}
.dc-quote-panel .dc-button {
  border-color: #d3b46e;
}
.dc-quote-panel .dc-button--ghost {
  background: var(--dc-navy);
  color: #fff !important;
}
.dc-modernized-page table[bgcolor="#F0F0F0"],
.dc-modernized-page table[bgcolor="#FFFFFF"] {
  border-radius: 6px;
  overflow: hidden;
}
.dc-modernized-page h1,
.dc-modernized-page h2,
.dc-modernized-page h3 {
  letter-spacing: 0;
}
@media (max-width: 760px) {
  .dc-site-header {
    align-items: stretch;
    flex-direction: column;
  }
  .dc-actions {
    justify-content: stretch;
  }
  .dc-button {
    width: 100%;
    white-space: normal;
  }
  .dc-quote-panel {
    padding: 18px;
  }
  table {
    width: calc(100% - 16px) !important;
  }
}

.dc-line-overview {
  box-sizing: border-box;
  width: min(1180px, calc(100% - 28px));
  margin: 16px auto;
  padding: 24px;
  border: 1px solid var(--dc-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(16, 32, 51, 0.08);
  color: var(--dc-ink);
  font-family: Corbel, Candara, "Segoe UI", Arial, sans-serif;
  text-align: left;
}
.dc-line-overview h2 {
  margin: 0 0 10px;
  padding: 0;
  color: var(--dc-navy);
  font-size: 26px;
  line-height: 1.18;
}
.dc-line-overview p {
  max-width: 980px;
  margin: 0 0 12px;
  color: #334e68;
  font-size: 17px;
}
.dc-ship-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.dc-ship-card {
  padding: 16px;
  border: 1px solid #e4ddcf;
  border-radius: 6px;
  background: #fbfaf7;
}
.dc-ship-card h3 {
  margin: 0 0 8px;
  color: var(--dc-navy);
  font-size: 19px;
  line-height: 1.2;
}
.dc-ship-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
}
@media (max-width: 980px) {
  .dc-ship-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 620px) {
  .dc-line-overview {
    padding: 18px;
  }
  .dc-ship-grid {
    grid-template-columns: 1fr;
  }
}
