@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Outfit:wght@400;700;900&display=swap');

:root {
  --volcano-black: #0F0F0F;
  --lanzarote-white: #FFFFFF;
  --atlantic-turquoise: #10B981;
  --lava-ochre: #D97706;
  --silk-glass: rgba(255, 255, 255, 0.85);
  --soft-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  --deep-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--lanzarote-white);
  color: var(--volcano-black);
  overflow-x: hidden;
  margin: 0;
}

h1,
h2,
h3,
h4,
.font-heading {
  font-family: 'Outfit', sans-serif;
}

/* Luminous Mirage Hero Layout */
.hero-mirage {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--volcano-black);
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 20s infinite alternate ease-in-out;
}

@keyframes kenBurns {
  0% {
    transform: scale(1) translate(0, 0);
  }

  100% {
    transform: scale(1.1) translate(-2%, -2%);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 5;
}

/* Luxury Magazine Typography */
.mag-title {
  position: absolute;
  width: 100%;
  text-align: center;
  z-index: 10;
  top: 15%;
}

.mag-title h1 {
  font-size: 16vw;
  font-weight: 900;
  color: white;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  line-height: 0.8;
  margin: 0;
  opacity: 0.9;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.mag-title .subtitle {
  font-family: 'Outfit', sans-serif;
  font-style: italic;
  font-weight: 400;
  color: var(--atlantic-turquoise);
  font-size: 2rem;
  letter-spacing: 0.2em;
  margin-top: -1rem;
}

/* Floating Command Center */
.command-center {
  background: var(--silk-glass);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 3rem;
  padding: 1.5rem;
  box-shadow: var(--deep-shadow);
  width: 90%;
  max-width: 1000px;
  z-index: 20;
  position: absolute;
  bottom: 12%;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.command-center:hover {
  transform: translateY(-10px) scale(1.02);
}

.command-item {
  flex: 1;
  padding: 1rem 2rem;
  border-radius: 2rem;
  transition: background 0.3s ease;
  cursor: pointer;
}

.command-item:hover {
  background: rgba(16, 185, 129, 0.05);
}

.command-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--atlantic-turquoise);
  letter-spacing: 0.1em;
  margin-bottom: 0.2rem;
}

.command-value {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--volcano-black);
}

.command-cta {
  background: var(--volcano-black);
  color: white;
  padding: 1.5rem 3rem;
  border-radius: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.command-center a:hover .command-cta {
  background: var(--atlantic-turquoise);
  transform: scale(1.05);
}

/* Section Components */
.section-spacing {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--soft-shadow);
}

.btn-primary {
  background: var(--volcano-black);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 1rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--atlantic-turquoise);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

#fleet {
  background-color: var(--volcano-black);
  width: 100%;
}

@media (max-width: 1024px) {
  .mag-title h1 {
    font-size: 20vw;
  }

  .command-center {
    flex-direction: column;
    border-radius: 2rem;
    padding: 1rem;
    width: 95%;
  }

  .command-item {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
  }

  .command-cta {
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
  }

  .section-spacing {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}