:root {
  --gap: 18px;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--gap);
  top: 0;
  position: sticky;
  z-index: 100;
  background-color: #f7fbfd;
}
@media (min-width: 1200px) {
  .header {
    position: relative;
    padding: var(--gap) 0;
  }
}

.footer {
  padding: var(--gap);
  border-top: 1px solid #e6eef6;
  margin-top: var(--gap);
  color: var(--muted);
}
@media (min-width: 1200px) {
  .footer {
    padding: var(--gap) 0;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--navy);
}

.logo {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--sea), var(--navy));
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 20px;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 14px;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav a {
  color: var(--navy);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 700;
}
.nav a.active, .nav a.cta {
  background: var(--sea);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 12px;
}
@media (max-width: 600px) {
  .nav ul {
    display: none;
  }
}
@media (max-width: 1000px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    padding: 80px 20px 20px;
    transition: 0.3s ease-in-out;
    z-index: 1000;
  }
  .nav.active {
    right: 0;
  }
  .nav ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .nav a {
    font-size: 18px;
    display: block;
    width: 100%;
  }
}

.promo-card {
  flex-direction: column;
}
.promo-card .promo-card-img {
  width: 100%;
  min-height: 500px;
  aspect-ratio: 1/1;
}
.promo-card .promo-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.promo-card .promo-card-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Mobile Menu */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 2000;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: 0.3s;
}
@media (max-width: 1000px) {
  .hamburger {
    display: block;
    /* Hamburger animation */
  }
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.gallery-grid img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
}
@media (max-width: 1000px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
}
@media (min-width: 600px) {
  .grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 1000px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1000px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.page-yachts .promo-card .promo-card-img {
  min-height: auto;
}
.page-yachts .promo-card-content {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.page-yachts .grid {
  width: 100%;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) {
  .page-yachts .grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1000px) {
  .page-yachts .grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.page-activities .promo-card .promo-card-img {
  min-height: auto;
}
.page-activities .grid {
  width: 100%;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) {
  .page-activities .grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1000px) {
  .page-activities .grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* Gallery Hero Carousel */
.gallery-hero-swiper {
  width: 100vw;
  height: 600px;
  margin: 0 calc(-50vw + 50%) 2rem calc(-50vw + 50%);
  border-radius: 0;
  overflow: hidden;
}
.gallery-hero-swiper .swiper-slide {
  position: relative;
  width: 60%;
  max-width: 800px;
}
.gallery-hero-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.gallery-hero-swiper .swiper-slide .swiper-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 2rem;
  border-radius: 0 0 12px 12px;
}
.gallery-hero-swiper .swiper-slide .swiper-slide-caption h3 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.gallery-hero-swiper .swiper-button-next,
.gallery-hero-swiper .swiper-button-prev {
  color: white;
  background: rgba(0, 0, 0, 0.3);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  backdrop-filter: blur(10px);
}
.gallery-hero-swiper .swiper-button-next:after,
.gallery-hero-swiper .swiper-button-prev:after {
  font-size: 20px;
}
.gallery-hero-swiper .swiper-pagination {
  bottom: 30px;
}
.gallery-hero-swiper .swiper-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}
.gallery-hero-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: white;
  transform: scale(1.2);
}

:root {
  --navy: #032a4a;
  --sea: #0b6e99;
  --gold: #f6c85f;
  --muted: #6b7b8c;
  --white: #ffffff;
  --max-width: 1200px;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(2, 6, 23, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  margin: 0;
  color: var(--navy);
  background-color: #f7fbfd;
}

a {
  color: inherit;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 28px;
}

.hero {
  position: relative;
  display: block;
  height: 56vh;
  min-height: 420px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: var(--gap);
}
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.78);
}
.hero .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 40px;
}
.hero h1 {
  color: var(--white);
  font-size: 40px;
  margin: 0 0 8px;
  text-shadow: 0 8px 30px rgba(2, 6, 23, 0.6);
  line-height: 1.05;
}
.hero p {
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 14px;
  font-weight: 600;
  max-width: 720px;
}
@media (max-width: 1000px) {
  .hero .overlay {
    padding: 20px;
  }
}

.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
}

.btn-primary {
  background: var(--sea);
  color: var(--white);
}

.section {
  padding: 28px 0;
}

.card {
  background: var(--white);
  border-radius: 12px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.yacht-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
}

.small {
  color: var(--muted);
  font-size: 14px;
}

.tag {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f2f8fb;
  font-weight: 600;
  color: var(--sea);
  font-size: 13px;
}

.activity-card {
  display: flex;
  gap: 12px;
  align-items: center;
}
.activity-card img {
  width: 160px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
}

.price-badge {
  background: var(--gold);
  color: var(--navy);
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 800;
}

.table-of-contents {
  position: sticky;
  background: linear-gradient(180deg, #f7fbfd 0%, #f0f6fb 100%);
  top: 120px;
  margin-left: calc(var(--gap) * -1);
  margin-right: calc(var(--gap) * -1);
  padding-left: var(--gap);
  padding-right: var(--gap);
}
@media (min-width: 1000px) {
  .table-of-contents {
    top: 2rem;
    float: left;
    width: 200px;
    margin-right: 2rem;
    background: transparent;
  }
}
.table-of-contents ul {
  list-style: none;
  padding: 0;
}
.table-of-contents li {
  margin-bottom: 0.5rem;
}
.table-of-contents a {
  text-decoration: none;
  color: #333;
  padding: 0.25rem 0;
  display: block;
}
.table-of-contents a:hover {
  color: #007bff;
  text-decoration: underline;
}

@media (min-width: 1000px) {
  .gallery-content {
    margin-left: 220px; /* Width of TOC + margin */
  }
}
.gallery-content {
  display: flow-root;
}

.category-section {
  margin-bottom: 3rem;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Offset for sticky header when scrolling to anchors */
.category-section {
  scroll-margin-top: 2rem;
}

/*# sourceMappingURL=style.css.map */
