/* ============================================================
   BASKET BOAT BANNER — sections/boat-banner.css
   ============================================================ */

.boat-banner {
  background: #1d3433;
  padding-block: 68px;
  position: relative;
  overflow: hidden;
}

/* Decorative tropical leaf blobs */
.boat-banner::before,
.boat-banner::after {
  content: '';
  position: absolute;
  border-radius: var(--r-full);
  opacity: .06;
  pointer-events: none;
}
.boat-banner::before {
  width: 400px; height: 400px;
  background: var(--clr-primary);
  top: -120px; right: -100px;
}
.boat-banner::after {
  width: 300px; height: 300px;
  background: var(--clr-primary-light);
  bottom: -100px; left: -80px;
}

/* ---- Inner layout ---- */
.boat-banner__inner {
  position: relative;
  padding: 28px 32px;
  border-radius: 0;
  clip-path: polygon(
    20px 0,
    calc(100% - 20px) 0,
    100% 20px,
    100% calc(100% - 20px),
    calc(100% - 20px) 100%,
    20px 100%,
    0 calc(100% - 20px),
    0 20px
  );
  display: flex;
  align-items: center;
  gap: 48px;
}
.boat-banner__inner > * {
  position: relative;
  z-index: 2;
}
.boat-banner__inner::before,
.boat-banner__inner::after {
  content: '';
  position: absolute;
  pointer-events: none;
  clip-path: polygon(
    20px 0,
    calc(100% - 20px) 0,
    100% 20px,
    100% calc(100% - 20px),
    calc(100% - 20px) 100%,
    20px 100%,
    0 calc(100% - 20px),
    0 20px
  );
}
.boat-banner__inner::before {
  inset: 0;
  background: #d49a32;
  z-index: 0;
}
.boat-banner__inner::after {
  inset: 1.5px;
  background: #1d3433;
  z-index: 1;
}

/* ---- Text side ---- */
.boat-banner__text {
  flex: 1;
  min-width: 0;
}

.boat-banner__label {
  font-family: var(--ff-script);
  font-size: var(--fs-20);
  color: var(--clr-primary-light);
  display: block;
  margin-bottom: var(--sp-2);
}

.boat-banner__title {
  font-family: var(--ff-serif);
  font-size: clamp(var(--fs-28), 3.5vw, var(--fs-42));
  font-weight: var(--fw-extrabold);
  color: var(--clr-white);
  line-height: var(--lh-tight);
  margin-bottom: var(--sp-4);
  letter-spacing: var(--ls-tight);
}

.boat-banner__desc {
  font-size: var(--fs-14);
  color: rgba(255,255,255,.65);
  line-height: var(--lh-relaxed);
  max-width: 400px;
  margin-bottom: var(--sp-7);
}

/* ---- Image ---- */
.boat-banner__image {
  flex-shrink: 0;
  width: 380px;
  height: 248px;
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  position: relative;
  clip-path: polygon(
    16px 0,
    calc(100% - 16px) 0,
    100% 16px,
    100% calc(100% - 16px),
    calc(100% - 16px) 100%,
    16px 100%,
    0 calc(100% - 16px),
    0 16px
  );
  background: transparent;
}
.boat-banner__image img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  clip-path: polygon(
    14px 0,
    calc(100% - 14px) 0,
    100% 14px,
    100% calc(100% - 14px),
    calc(100% - 14px) 100%,
    14px 100%,
    0 calc(100% - 14px),
    0 14px
  );
  object-fit: cover;
  transition: transform 0.5s ease;
}
.boat-banner__image::before {
  display: none;
}
.boat-banner__image:hover img {
  transform: scale(1.04);
}

/* ---- Combo Badge ---- */
.combo-badge {
  flex-shrink: 0;
  width: 148px;
  height: 148px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-primary-light) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--clr-white);
  padding: var(--sp-4);
  position: relative;
  box-shadow: var(--shadow-orange);
  animation: comboPulse 3s ease-in-out infinite;
  cursor: pointer;
  transition: var(--t-base);
}
.combo-badge:hover {
  transform: scale(1.06) rotate(5deg);
}

/* Dashed ring */
.combo-badge::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px dashed rgba(255,255,255,.35);
  border-radius: var(--r-full);
  animation: comboRingSpin 9s linear infinite;
}

.combo-badge__eyebrow {
  font-size: var(--fs-10);
  text-transform: uppercase;
  letter-spacing: var(--ls-widest);
  opacity: .85;
  margin-bottom: 2px;
}
.combo-badge__title {
  font-family: var(--ff-serif);
  font-size: var(--fs-18);
  font-weight: var(--fw-extrabold);
  line-height: 1.1;
}
.combo-badge__sub {
  font-size: var(--fs-11);
  opacity: .8;
  margin-top: 3px;
}

@keyframes comboPulse {
  0%,100% { box-shadow: 0 8px 28px rgba(212,154,50,.38), 0 0 0 0 rgba(212,154,50,.2); }
  50%      { box-shadow: 0 8px 28px rgba(212,154,50,.55), 0 0 0 14px rgba(212,154,50,.0); }
}

@keyframes comboRingSpin {
  to { transform: rotate(360deg); }
}
