

/* Elite Vessel — custom styles (theme + layout). Bootstrap handles grid/utilities. */

:root {
  --ev-primary: #a58144;
  --ev-on-primary: #030303;
  --ev-secondary: #5f5e59;
  --ev-on-surface: #1b1c1c;
  --ev-surface: #fcf9f8;
  --ev-background: #fcf9f8;
  --ev-primary-container: #a58144;
  --ev-outline-variant: #d0c5af;
  --ev-secondary-container: #e5e2db;
  --ev-surface-container-low: #f6f3f2;
  --ev-surface-container: #f0eded;
  --ev-container-max: 1280px;
  --ev-gutter: 24px;
  --ev-header-height: 72px;
  --ev-brand-logo-width: 80px;
  --ev-brand-logo-height: 65px;
  --ev-radius: 0.125rem;
  --ev-radius-lg: 0.25rem;
  --ev-radius-xl: 0.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/popins/Poppins-Regular.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(".../fonts/popins/Poppins-Medium.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/popins/Poppins-SemiBold.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/popins/Poppins-Bold.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/jost-latin-800-normal.woff2") format("woff2");
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--ev-on-surface);
  background-color: var(--ev-background);
}

::selection {
  background-color: rgba(115, 92, 0, 0.35);
}

/* Typography scale */
.text-display {
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.text-headline-lg {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.2;
  font-weight: 600;
}

.text-headline-md {
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 500;
}

.text-body-lg {
  font-size: 1.125rem;
  line-height: 1.6;
}

.label-caps {
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
}

/* Layout shell */
.container-mafff7eae0x {
  max-width: var(--ev-container-max);
  margin-left: auto;
  margin-right: auto;
}

.px-page {
  padding-left: 20px;
  padding-right: 20px;
}

@media (min-width: 992px) {
  .px-page {
    padding-left: 64px;
    padding-right: 64px;
  }
}

.text-primary-ev {
  color: var(--ev-primary) !important;
}

.text-secondary-ev {
  color: var(--ev-secondary) !important;
}

.bg-surface-ev {
  background-color: #ffffff !important;
}

.bg-surface-low-ev {
  background-color: #e0d0ac !important;
}

.border-outline-soft {
  border-color: rgba(208, 197, 175, 0.35) !important;
}

/* Header */
.site-header {
  z-index: 1030;
  background-color: #fff;
  border-bottom: 1px solid rgba(208, 197, 175, 0.2);
  box-shadow: 0 10px 30px rgba(115, 92, 0, 0.05);
}

.site-brand {
  min-width: 0;
}

.brand-title {
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--ev-primary);
  letter-spacing: -0.02em;
}

.site-brand .brand-title {
  line-height: 1.2;
}

.site-brand:hover .brand-title {
  color: var(--ev-primary);
}

/* Logo area — add <img class="brand-logo" src="..." alt=""> inside .brand-logo-slot when ready */
.brand-logo-slot {
  width: var(--ev-brand-logo-width);
  height: var(--ev-brand-logo-height);
  border-radius: var(--ev-radius-lg);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.brand-logo-slot .brand-logo,
.brand-logo-slot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: inherit;
}

@media (max-width: 575.98px) {
  .site-brand .brand-title {
    font-size: 1.05rem;
  }
}

.nav-desktop .nav-link {
  font-weight: 500;
  color: var(--ev-secondary);
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}

.nav-desktop .nav-link:hover {
  color: var(--ev-primary);
}

.nav-desktop .nav-link.active {
  color: var(--ev-primary);
  border-bottom-color: var(--ev-primary);
}

.menu-toggle {
  color: var(--ev-primary);
  padding: 0.25rem;
  border: none;
  background: transparent;
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--ev-primary-container);
  outline-offset: 2px;
}

/* Offcanvas mobile menu */
.offcanvas-nav .nav-link {
  font-weight: 600;
  color: var(--ev-secondary);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(208, 197, 175, 0.25);
}

.offcanvas-nav .nav-link:hover,
.offcanvas-nav .nav-link.active {
  color: var(--ev-primary);
}

.offcanvas-title-brand {
  color: var(--ev-primary);
  font-weight: 600;
}

/* Main offset for fixed header */
main {
  padding-top: var(--ev-header-height);
}

/* Anchor targets: offset so headings aren’t hidden under fixed header */
#about,
#contact,
#current-openings,
#browse-roles,
#openings {
  scroll-margin-top: calc(var(--ev-header-height) + 1rem);
}

/* Hero */
.hero-section {
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--ev-surface) 0%,
    rgba(252, 249, 248, 0.92) 35%,
    rgba(252, 249, 248, 0.65) 55%,
    transparent 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
}

/* Inner pages: short hero strip + optional tighter vertical padding */
.hero-section.hero-section-inner {
  min-height: 140px;
  align-items: center;
}

@media (min-width: 576px) {
  .hero-section.hero-section-inner {
    min-height: 168px;
  }
}

@media (min-width: 992px) {
  .hero-section.hero-section-inner {
    min-height: 188px;
  }
}

.hero-section-inner .hero-bg img {
  object-fit: cover;
  object-position: center 42%;
}

.hero-section-inner .hero-gradient {
  background: linear-gradient(
    to right,
    var(--ev-surface) 0%,
    rgba(252, 249, 248, 0.94) 42%,
    rgba(252, 249, 248, 0) 62%,
    rgba(252, 249, 248, 0.2) 100%
  );
}

.hero-inner-compact {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}

@media (min-width: 768px) {
  .hero-inner-compact {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
}

.breadcrumb-ev {
  --bs-breadcrumb-divider: "/";
  --bs-breadcrumb-item-padding-x: 0.35rem;
  font-size: 0.8125rem;
}

.breadcrumb-ev .breadcrumb-item a {
  color: var(--ev-secondary);
  text-decoration: none;
}

.breadcrumb-ev .breadcrumb-item a:hover {
  color: var(--ev-primary);
  text-decoration: underline;
}

.breadcrumb-ev .breadcrumb-item.active {
  color: var(--ev-on-surface);
  font-weight: 500;
}

/* Buttons */
.btn-primary-ev {
  --bs-btn-color: var(--ev-on-primary);
  --bs-btn-bg: var(--ev-primary);
  --bs-btn-border-color: var(--ev-primary);
  --bs-btn-hover-bg: #5c4a00;
  --bs-btn-hover-border-color: #5c4a00;
  --bs-btn-hover-color: var(--ev-on-primary);
  --bs-btn-active-bg: #5c4a00;
  --bs-btn-active-border-color: #5c4a00;
  border-radius: var(--ev-radius);
  font-weight: 600;
  padding: 0.75rem 2rem;
}

.btn-outline-primary-ev {
  color: var(--ev-primary);
  border-color: var(--ev-primary);
  background: transparent;
  border-radius: var(--ev-radius);
  font-weight: 600;
  padding: 0.75rem 2rem;
}

.btn-outline-primary-ev:hover {
  background-color: rgba(115, 92, 0, 0.06);
  color: var(--ev-primary);
  border-color: var(--ev-primary);
}

/* About image frame */
.about-frame {
  position: relative;
}

.about-frame::before {
  content: "";
  position: absolute;
  top: -1rem;
  left: -1rem;
  right: 1rem;
  bottom: 1rem;
  border: 1px solid rgba(115, 92, 0, 0.2);
  border-radius: var(--ev-radius-lg);
  pointer-events: none;
}

.about-img {
  position: relative;
  z-index: 1;
  border-radius: var(--ev-radius-lg);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  filter: grayscale(20%);
  transition: filter 0.7s ease;
}

.about-img:hover {
  filter: grayscale(0%);
}

.feature-icon {
  color: var(--ev-primary);
  font-size: 2rem;
  width: 2rem;
  text-align: center;
}

/* Job cards */
.vessel-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: var(--ev-radius-xl);
  border: 1px solid rgba(115, 92, 0, 0.1);
}

.vessel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(115, 92, 0, 0.08);
}

.badge-soft-secondary {
  background-color: rgba(229, 226, 219, 0.45);
  color: var(--ev-secondary);
}

.badge-soft-primary {
  background-color: rgba(115, 92, 0, 0.06);
  color: var(--ev-primary);
}

.btn-card {
  border: 1px solid rgba(115, 92, 0, 0.2);
  color: var(--ev-primary);
  font-weight: 600;
  border-radius: var(--ev-radius-lg);
}

.btn-card:hover {
  background-color: var(--ev-primary);
  border-color: var(--ev-primary);
  color: var(--ev-on-primary);
}

/* Careers header row */
.careers-head .btn-link-ev {
  color: var(--ev-primary);
  font-weight: 600;
  text-decoration: none;
}

.careers-head .btn-link-ev:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Modal job detail */
.modal-content-ev {
  border-radius: var(--ev-radius-xl);
}

.sidebar-job {
  background-color: var(--ev-surface-container-low);
  border: 1px solid rgba(208, 197, 175, 0.35);
  border-radius: var(--ev-radius-lg);
}

.job-prose h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ev-on-surface);
  margin-bottom: 0.75rem;
}

.job-prose p,
.job-prose li {
  color: var(--ev-secondary);
}

.btn-send-resume {
  background-color: var(--ev-primary);
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: var(--ev-radius);
  padding: 1rem;
}
/*custom*/
.btn {
  color: #fff;
}
.btn:hover {
  color:#fff !important;
}
.py-3 {
  padding-top: 6px !important;
  padding-bottom: 6px !important;
}
.btn-outline-primary-ev {
  color: #000 !important;
}
.btn-card {
  color: #a58144;
}
.btn-send-resume:hover {
  background-color: #5c4a00;
  color: var(--ev-on-primary);
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(208, 197, 175, 0.2);
}

.site-footer .brand-title {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.3;
  max-width: 100%;
}

.social-circle {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(208, 197, 175, 0.35);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ev-secondary);
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.social-circle:hover {
  color: var(--ev-primary);
  border-color: var(--ev-primary);
}

.footer-links a {
  color: var(--ev-secondary);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--ev-primary);
}

.site-footer .list-unstyled a {
  color: var(--ev-secondary);
  text-decoration: none;
}

.site-footer .list-unstyled a:hover {
  color: var(--ev-primary);
  text-decoration: underline;
}

.site-footer .list-unstyled a:focus-visible {
  outline: 2px solid var(--ev-primary-container);
  outline-offset: 2px;
}
