*, html {
  cursor: url('../assets/cursor.png'), auto;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #091A25;
  color: #E1C3A3;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', Georgia, serif;
}

/* ── Canvas background ── */
#ocean-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
}

/* ── Radial vignette overlay ── */
.vignette {
  position: fixed;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 50%,
    transparent 30%,
    rgba(9, 26, 37, 0.72) 80%,
    rgba(9, 26, 37, 0.92) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* ── Hero layout ── */
.hero {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.2rem;
  padding: 2rem;
}

/* ── Octopus wrapper — static, only the SVG animates ── */
.octo-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Only the SVG floats ── */
.octopus-svg {
  width: min(380px, 88vw);
  height: auto;
  display: block;
  animation: float 7s ease-in-out infinite;
}

/* ── Brand block — stationary, centred over octopus ── */
.brand-block {
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
  width: max-content;
  max-width: 88vw;
}

.brand-name {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.6rem, 7vw, 3.8rem);
  white-space: nowrap;
  font-weight: 700;
  color: #E1C3A3;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 6px rgba(9, 26, 37, 0.95);
}

.tagline {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.6rem, 2.2vw, 0.75rem);
  font-weight: 400;
  color: #E1C3A3;
  opacity: 0.6;
  letter-spacing: 0.08em;
  line-height: 1.7;
  margin-top: 0.35rem;
}

/* ── Availability / contact line ── */
.availability {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.6rem, 2.2vw, 0.75rem);
  font-weight: 400;
  color: #E1C3A3;
  opacity: 0.5;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.9;
}

.availability a {
  color: #E1C3A3;
  text-decoration: none;
  opacity: 0.8;
  border-bottom: 1px solid rgba(225, 195, 163, 0.3);
  padding-bottom: 1px;
  transition: opacity 0.2s;
}

.availability a:hover {
  opacity: 1;
}

/* ── Eye blink ── */
.octopus-svg circle {
  transform-box: fill-box;
  transform-origin: center;
  animation: blink 3s ease-in-out infinite;
}

.octopus-svg circle:last-of-type {
  animation-delay: 0.05s;
}

@keyframes blink {
  0%, 90%, 100% { transform: scaleY(1); }
  95%            { transform: scaleY(0.05); }
}

/* ── Float animation ── */
@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(-0.4deg);
  }
  33% {
    transform: translateY(-13px) rotate(0.5deg);
  }
  66% {
    transform: translateY(-6px) rotate(-0.2deg);
  }
}
