:root {
  --white-color: #fff;
  --black-color: #333;
  --gray-color: #575a5c;
  --primary-color: #1a3d56;
  --secondary-color: #6c757d;
  --background-color: #f8f9fa;
  --text-primary: #21354b;
  --text-secondary: #656565;
}

/* :root {
  --white-color: #fff;
  --black-color: #333;
  --gray-color: #575a5c;
  --primary-color: #132430;
  --secondary-color: #6c757d;
  --background-color: #f8f9fa;
  --text-primary: #212529;
  --text-secondary: #656565;
  --font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --bg-color: rgb(49, 79, 76);
  --color-1: rgb(19, 36, 48);
  --color-2: #f6f4ef;
  --color-3: #ede9ef;
  --color-4: #bc9e59;
  --color-5: #4a7fce;
  --color-6: rgba(188, 158, 89, 0.3);
  --cokir-7: #134430;
  --color-8: #f6f7f1;
  --color-9: rgb(49, 79, 76);
  --color-10: #002a3e;
  --color-11: #012940;
} */
/* =========================
   1. Normalize / Reset
========================= */
/* Box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Nunito", serif;
}
header {
  width: 100%;
  z-index: 100;
  display: flex !important;
  opacity: 1;
  flex-direction: row !important;
  justify-content: start !important;
}
p,
li {
  font-family: "Nunito", serif;
  color: var(--black-color);
}
/* Remove default list styles */
ul,
ol {
  list-style: none;
}

/* Remove default link styles */
a {
  text-decoration: none;
  color: inherit;
}

/* Reset form elements */
input,
button,
textarea,
select {
  font: inherit;
  border: none;
  outline: none;
  background: transparent;
}

/* Button defaults */
button {
  cursor: pointer;
}
html {
  scroll-behavior: smooth;
}
/* Body defaults */
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background-color: #ffffff;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  font-weight: 600;
  padding: 0;
}

/* =========================
   2. Utility Classes
========================= */

/* Spacing */
.m-0 {
  margin: 0 !important;
}
.mt-1 {
  margin-top: 0.5rem !important;
}
.mb-1 {
  margin-bottom: 0.5rem !important;
}
.mt-2 {
  margin-top: 1rem !important;
}
.mb-2 {
  margin-bottom: 1rem !important;
}
.mt-3 {
  margin-top: 1.5rem !important;
}
.mb-3 {
  margin-bottom: 1.5rem !important;
}
.mx-auto {
  margin: 0 auto;
}
.p-0 {
  padding: 0 !important;
}
.p-1 {
  padding: 0.5rem !important;
}
.p-2 {
  padding: 1rem !important;
}
.p-3 {
  padding: 1.5rem !important;
}

/* Flex utilities */
.flex {
  display: flex !important;
}
.flex-col {
  flex-direction: column !important;
}
.flex-row {
  flex-direction: row !important;
}
.justify-center {
  justify-content: center !important;
}
.justify-between {
  justify-content: space-between !important;
}
.items-center {
  align-items: center !important;
}

/* Grid utilities */
.grid {
  display: grid !important;
}
.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr) !important;
}
.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr) !important;
}
.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr) !important;
}
.grid-cols-5 {
  grid-template-columns: repeat(5, 1fr) !important;
}
.gap-1 {
  gap: 0.5rem !important;
}
.gap-2 {
  gap: 1rem !important;
}
.gap-3 {
  gap: 1.5rem !important;
}
.gap-4 {
  gap: 2rem !important;
}
.gap-5 {
  gap: 2.5rem !important;
}
/* Text utilities */
.text-center {
  text-align: center !important;
}
.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}
.bold {
  font-weight: 700 !important;
}
.italic {
  font-style: italic !important;
}
.uppercase {
  text-transform: uppercase !important;
}
.lowercase {
  text-transform: lowercase !important;
}
.fs-sm {
  font-size: 0.8rem;
}
.fs-base {
  font-size: 1rem;
}
.fs-md {
  font-size: 1.25rem;
}
.fs-lg {
  font-size: 1.5rem;
}
.fs-xl {
  font-size: 2rem;
}
.fs-2 {
  font-size: 2rem;
}
.fs-3 {
  font-size: 3rem;
}
.fs-4 {
  font-size: 4rem;
}
.fs-5 {
  font-size: 5rem !important;
}
.fw-400 {
  font-weight: 400;
}
.fw-500 {
  font-weight: 500;
}
.fw-600 {
  font-weight: 600;
}
.fw-700 {
  font-weight: 700;
}
.fw-800 {
  font-weight: 800;
}
.hero-content-title {
  font-size: 7rem;
  font-weight: 900;
}
.section-title {
  font-size: 4rem;
  font-weight: 700;
}
.primary-text {
  font-size: 1rem;
}
.secondary-text {
  font-size: 1.25rem;
}
/* =========================
  Color Utilities
========================= */
.text-white {
  color: var(--white-color);
}
.text-color-black {
  color: var(--black-color);
}
.text-color-gray {
  color: var(--gray-color);
}
/* .text-color-muted {
}
.text-color-primary {
}
.text-color-secondary {
} */
.text-accent {
  color: var(--color-4);
}
.bg-primary {
  background-color: var(--primary-color);
}
/* Width helpers */
.w-full {
  width: 100% !important;
}
.max-w-screen {
  max-width: 1200px;
  margin: 0 auto;
}
.w-50 {
  width: 50%;
}

/* Hide/show */
.hidden {
  display: none !important;
}
.block {
  display: block !important;
}

/* =========================
   3. Helper Classes
========================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
/* =========================
   3. Helper Classes
========================= */
.text-color-primary {
  color: var(--text-primary);
}
.text-color-secondary {
  color: var(--text-secondary);
}
.ff-primary {
  font-family: "Libre Baskerville", serif;
}
.ff-secondary p {
  font-family: "Nunito", serif;
}
/* Button styles */
.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}
.btn-primary {
  background: var(--primary-color);
  color: #fff;
  border: 2px solid var(--primary-color);
}
.btn-primary:hover {
  background: #fff;
  color: var(--primary-color);
}
.btn-secondary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: none;
}
/* create a glassmorphism effect */
.btn-glass {
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
/* =========================
  Standardization classes
========================= */
section {
  padding: 5rem 2rem;
}
.section-heading-container {
  width: 50%;
  margin: auto;
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
/* =========================
   3. Hero Section classes
========================= */
main {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  height: 100%;
}
/* Tabs */
.tab-buttons {
  display: flex;
  justify-content: center;
  margin: 2rem 0 1rem;
  gap: 1rem;
}

.tab-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  background: #eee;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.tab-btn.active {
  background: var(--primary-color, #132430);
  color: #fff;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

/* Ferry Table */
.ferry-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 1rem;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ferry-table th,
.ferry-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #eee;
  text-align: center;
}

.ferry-table th {
  background: var(--primary-color, #132430);
  color: #fff;
}

.ferry-table tr:nth-child(even) {
  background: #f9f9f9;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
p {
  font-size: 1.25rem;
  line-height: 2rem;
}
li {
  font-size: 1.25rem;
}
.pic-credit {
  font-size: 0.75rem;
  margin-left: auto;
  float: right;
}
.link {
  color: cornflowerblue;
}

img {
  width: 100%;
}
