/* ======================================
   GLOBAL TEXT & LINKS (page-level)
   ====================================== */
body {
    color: #2d2d2d; /* deep neutral (off-black) for max readability */
}

.small,
.text-muted {
    color: #555555 !important; /* darker than Bootstrap default */
}

a {
    color: #003366;
    text-decoration: none;
}
a:hover,
a:focus {
    color: #8b6a1a;  /* darker gold for contrast */
    text-decoration: underline;
}

/* Inline links always show subtle underline */
p a,
small a,
.text-muted a {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

/* Hover remains gold + stronger underline */
p a:hover,
small a:hover,
.text-muted a:hover {
    color: #8b6a1a;
    text-decoration-thickness: 2px;
}


/* ======================================
   SECTION NAV (Jump Pills)
   ====================================== */
nav[aria-label="Charter rate sections"] .nav-item {
    display: flex;
    flex: 1 1 auto;
}

/* Section Jump Nav – hover + active styles */
nav[aria-label="Charter rate sections"] .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 38px;
    border-radius: 999px;
    background-color: #f8f9fa;
    color: #003366;
    margin: 2px 4px;
    padding: 4px 10px;
    font-size: 0.85rem;
    border: 1px solid #d0d0d0;
    white-space: normal;
    text-align: center;
    transition: all 0.25s ease;
}

/* Hover / focus */
nav[aria-label="Charter rate sections"] .nav-link:hover,
nav[aria-label="Charter rate sections"] .nav-link:focus {
    background-color: #003366 !important;
    color: #ffffff !important;
    border-color: #003366 !important;
    text-decoration: none;
}

/* Active pill */
nav[aria-label="Charter rate sections"] .nav-link.active {
    background-color: #003366 !important;
    color: #ffffff !important;
    border-color: #003366 !important;
}


/* ======================================
   CTA BUTTONS
   ====================================== */
.btn-aurora-primary {
    background-color: #003366;
    border-color: #003366;
    color: #ffffff;
    transition: all 0.25s ease;
}
.btn-aurora-primary:hover,
.btn-aurora-primary:focus {
    background-color: #cba135;
    border-color: #cba135;
    color: #003366;
}

.btn-aurora-outline {
    background-color: transparent;
    border-color: #cba135;
    color: #003366;           /* navy text on white for contrast */
    transition: all 0.25s ease;
}
.btn-aurora-outline:hover,
.btn-aurora-outline:focus {
    background-color: #cba135;
    border-color: #cba135;
    color: #003366;           /* navy on gold – passes contrast */
}


/* ======================================
   HEADINGS / SECTION TITLES
   ====================================== */
.section-title {
    position: relative;
    display: inline-block;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    color: #003366;
}

/* Top gold line */
.section-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 3px;
    background-color: #cba135;
    border-radius: 999px;
}

/* Bottom gold line */
.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-color: #cba135;
    border-radius: 999px;
}

/* Extra breathing room for the first rate section heading */
#day-charters .section-title {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
}


/* ======================================
   TABLE HEADERS & RATES
   ====================================== */

/* Minimal luxe header for all rate tables */
.table thead th {
    background-color: #ffffff !important;
    color: #003366 !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
    border-bottom: 2px solid #cba135 !important;
    padding-top: 0.6rem;
    padding-bottom: 0.55rem;
    box-shadow: none !important;
}

/* Emphasized rate amount */
.rate-amount {
    color: #003366;   /* Aurora navy */
    font-weight: 700;
}


/* ======================================
   TESTIMONIAL HIGHLIGHT
   ====================================== */
.testimonial-highlight {
    max-width: 640px;
    margin: 1.5rem auto 0;
    padding: 1.25rem 1.75rem;
    border-radius: 10px;

    /* Thin dual-tone metallic border */
    border: 1px solid transparent;
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(
            135deg,
            #f8e7b5 0%,
            #d7b661 25%,
            #cba135 55%,
            #b08c34 85%
        ) border-box;

    /* Softer shadow (luxury subtle) */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    background-color: #ffffff;
}

.testimonial-highlight blockquote {
    margin: 0;
    padding: 0;
    font-style: italic;
    font-size: 0.97rem;
    line-height: 1.55;
    color: #333333;
}

.testimonial-highlight figcaption {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #555555; /* darker for better contrast */
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ======================================
   AT-A-GLANCE STRIP (refined)
   ====================================== */

/* White card wrapper under the hero */
.rates-glance-shell {
    max-width: 1100px;
    margin: 1.75rem auto 1.5rem;      /* added top margin below hero */
    padding: 1.1rem 1.25rem 1.35rem;  /* reduced padding = lower height */
    background-color: #ffffff;
    border-radius: 14px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

/* Label pill */
.rates-glance-label {
    display: inline-block;
    padding: 5px 16px;
    border-radius: 999px;
    border: 1px solid #cba135;
    background-color: #f6de96;
    color: #00152a;
    font-family: "Cinzel Decorative", serif;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.14em;
}

/* Individual stat cards */
.rates-glance-card {
    background: #031738;
    color: #ffffff;
    border-radius: 12px;
    padding: 0.65rem 0.6rem;      /* tighter padding */
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

/* Caption label (top line) */
.rates-glance-caption {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 0.15rem;
    font-family: inherit;         /* fix font: use main site font */
}

/* Value (From $18,000 / Up to 12, etc.) */
.rates-glance-value {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.25;
    font-family: inherit;         /* fix font: use main site font */
}

.rates-glance-value em {
    font-style: normal;           /* remove italics */
}

.rates-glance-card .rate-amount {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

/* Footnote under the row */
.rates-glance-foot {
    margin-top: 1.2rem;
    padding-top: 0.9rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: 0.01em;
    position: relative;

    /* Soft elevated shadow */
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.45),
        0 2px 3px rgba(0, 0, 0, 0.18);
}

/* REMOVE decorative divider */
.rates-glance-foot::before {
    content: none !important;
}

.rates-glance-sub {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.75);
    text-transform: none;
    letter-spacing: 0;
}

.rates-glance-shell {
    background: linear-gradient(
        135deg,
        rgba(0, 0, 40, 0.28),   /* was 0.40 */
        rgba(0, 40, 80, 0.18)   /* was 0.30 */
    );
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

/* Mobile tweaks */
@media (max-width: 575.98px) {
    .rates-glance-card {
        padding: 0.6rem 0.6rem;
    }

    .rates-glance-card .rate-amount {
        font-size: 0.95rem;
    }
}
/* Ensure mobile pills retain color */
@media (max-width: 575.98px) {
    .rates-glance-card {
        background: #031738 !important;
        color: #ffffff !important;
    }

    .rates-glance-card .rate-amount,
    .rates-glance-card .rates-glance-caption,
    .rates-glance-card .rates-glance-sub {
        color: #ffffff !important;
    }
}
