@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600&display=swap');

:root {
  --ocean: #0f4c75;
  --lagoon: #10a19d;
  --ink: #0b1b2b;
  --ash: #e7edf2;
  --ember: #f59e0b;
  --navy: #0b2c4b;
}

body {
  font-family: 'Manrope', sans-serif;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 44, 75, 0.9);
  backdrop-filter: blur(10px);
}

.home-slider {
  position: relative;
  overflow: hidden;
  height: clamp(360px, 60vh, 560px);
  background: #0b2c4b;
}

.slider-track {
  position: relative;
  height: 100%;
}

.slider-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.slider-slide.is-active {
  opacity: 1;
}

.slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-controls {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  padding: 0 18px;
}

.slider-btn {
  pointer-events: auto;
  height: 44px;
  width: 44px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.35);
}

.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.slider-dot {
  height: 8px;
  width: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
}

.slider-dot.is-active {
  background: #ffffff;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-panel {
  position: relative;
  border-radius: 28px;
  padding: 28px;
  background: #ffffff;
  box-shadow: 0 28px 60px rgba(11, 27, 43, 0.2);
}

.dot {
  margin-top: 6px;
  height: 8px;
  width: 8px;
  border-radius: 999px;
  background: var(--ember);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ocean);
  font-weight: 600;
}

.shadow-soft {
  box-shadow: 0 18px 40px rgba(11, 27, 43, 0.08);
}

.image-stack {
  position: relative;
  min-height: 360px;
}

.image-stack img {
  border-radius: 22px;
  object-fit: cover;
  width: 100%;
  height: 100%;
  box-shadow: 0 18px 35px rgba(11, 27, 43, 0.18);
}

.image-stack img:first-child {
  position: absolute;
  inset: 0 20% 0 0;
}

.image-stack img:last-child {
  position: absolute;
  right: 0;
  bottom: -20px;
  width: 52%;
  height: 55%;
  border: 6px solid #f7f9fb;
}

.feature-card {
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 32px rgba(11, 27, 43, 0.12);
}

.feature-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.band-wrap {
  background: #0b2c4b;
}

.band-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 26px rgba(0, 0, 0, 0.25);
}

.band-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.testimonial-card {
  border-radius: 18px;
  padding: 22px;
  background: #ffffff;
  box-shadow: 0 16px 26px rgba(11, 27, 43, 0.08);
}

.avatar {
  height: 44px;
  width: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0f4c75, #10a19d);
}

.cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 28px;
  padding: 48px;
  background: linear-gradient(120deg, #0f4c75, #10a19d);
  box-shadow: 0 24px 40px rgba(11, 27, 43, 0.18);
}

.form-input {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(15, 76, 117, 0.2);
  background: rgba(231, 237, 242, 0.45);
  padding: 12px 14px;
  font-size: 0.95rem;
  outline: none;
}

.form-input:focus {
  border-color: var(--ocean);
  box-shadow: 0 0 0 3px rgba(15, 76, 117, 0.15);
  background: #ffffff;
}

@media (max-width: 900px) {
  .image-stack {
    min-height: 280px;
  }

  .image-stack img:first-child {
    position: relative;
    inset: auto;
  }

  .image-stack img:last-child {
    position: relative;
    width: 100%;
    height: 180px;
    margin-top: 16px;
    border-width: 0;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.4rem;
  }

  .home-slider {
    height: clamp(300px, 55vh, 460px);
  }

  .slider-controls {
    padding: 0 10px;
  }

  .cta-wrap {
    padding: 32px;
  }
}
