
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
/* Root variables */
:root {
  --primary: #003366;
  --primary-light: #336699;
  --accent: #e63946;
  --background: #f5f7fa;
  --text: #222222;
  --muted: #666666;
  --max-width: 1100px;
  --radius: 8px;
}
/* Base styles */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--background);
  color: var(--text);
  line-height: 1.6;
}
/* Layout helpers */
.wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem;
}
/* =========================
   Header & Navigation
   ========================== */

header {
  background: linear-gradient(120deg, var(--primary), var(--primary-light));
  color: #ffffff;
}
.header-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem 1rem 0.75rem;
}
.site-title {
  font-size: 1.5rem;
  font-weight: 700;
}
.site-tagline {
  font-size: 0.95rem;
  opacity: 0.9;
  color:white
}

/* Navigation */
nav {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.07);
}
.nav-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  padding: 0.5rem 1rem 0.75rem;
}
.nav-list li {
  margin-right: 0.25rem;
}
.nav-list a {
  display: block;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
  color: #ffffff;
  border: 1px solid transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.nav-list a:hover,
.nav-list a:focus-visible {
  background-color: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  outline: none;
}
.nav-list a.active {
  background-color: #ffffff;
  color: var(--primary);
  border-color: #ffffff;
}
/* Skip link for accessibility */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  margin: 0.5rem;
  background-color: #ffffff;
  color: var(--primary);
  border-radius: 999px;
  z-index: 999;
}
main {
  padding: 1.5rem 0 2.5rem;
}

h1,
h2,
h3 {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

h1 {
  font-size: 1.7rem;
}

h2 {
  font-size: 1.4rem;
}

h3 {
  font-size: 1.1rem;
}

p {
  margin-bottom: 0.9rem;
  color: var(--text);
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
}
/* Utility classes */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

.tag {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  font-size: 0.75rem;
  border-radius: 999px;
  background-color: var(--primary-light);
  color: #ffffff;
}
/* Card layout */
.card {
  background-color: #ffffff;
  border-radius: var(--radius);
  padding: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.card img {
  width: 100%;
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
}
/* Grid layout for sections */
.grid {
  display: grid;
  gap: 1rem;
}
.grid-2 {
  grid-template-columns: 1fr;
}

/* Lists */
ul {
  margin-left: 1.3rem;
  margin-bottom: 0.9rem;
}

ul li {
  margin-bottom: 0.35rem;
}
/* =========================
   Hero section (Home)
   ========================== */

.hero {
  display: grid;
  gap: 1rem;
  align-items: center;
}
.hero-text h1 {
  margin-bottom: 0.5rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.btn {
  display: inline-block;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn-primary {
  background-color: var(--accent);
  color: #ffffff;
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background-color: #c62832;
  outline: none;
}
.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover,
.btn-outline:focus-visible {
  background-color: var(--primary);
  color: #ffffff;
  outline: none;
}
/* =========================
   Tables (for mini itinerary, etc.)
   ========================== */

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}

th,
td {
  padding: 0.55rem;
  border-bottom: 1px solid #e0e0e0;
  text-align: left;
  font-size: 0.9rem;
}

th {
  background-color: #f0f2f7;
  font-weight: 600;
}

/* =========================
   Forms (Contact)
   ========================== */

form {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.75rem;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}
input[type="text"],
input[type="email"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: 0.5rem 0.6rem;
  border-radius: 6px;
  border: 1px solid #ccd0dd;
  font-size: 0.9rem;
  font-family: inherit;
}
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--primary-light);
  border-color: var(--primary-light);
}
textarea {
  min-height: 120px;
  resize: vertical;
}
.form-row-inline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.form-helper {
  font-size: 0.8rem;
  color: var(--muted);
}

input[type="checkbox"] {
  width: auto;
  margin-right: 0.3rem;
}
/* =========================
   Footer
   ========================== */
footer {
  background-color: #0b1727;
  color: #ffffff;
  padding: 1rem 0;
  font-size: 0.85rem;
}
footer .wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
footer a {
  color: #ffffff;
}
.footer-meta {
  color: #d0d4e0;
}
/* =========================
   Responsive Breakpoints
   ========================== */
@media (min-width: 600px) {
  .header-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .hero {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  }

  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-row-inline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  footer .wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
@media (min-width: 900px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .nav-list a {
    font-size: 0.95rem;
  }
}
