@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-Variable.ttf") format("truetype");
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --brand-primary: #0197fd;
  --brand-secondary: #0032cf;
  --ink: #111111;
  --paper: #f6fbff;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

.hero {
  color: var(--white);
  background: linear-gradient(130deg, var(--brand-secondary) 0%, #0045df 42%, var(--brand-primary) 100%);
}

.hero-shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.25;
  pointer-events: none;
}

.hero-shape-1 {
  width: 22rem;
  height: 22rem;
  background: #8fe4ff;
  top: -8rem;
  right: -5rem;
}

.hero-shape-2 {
  width: 18rem;
  height: 18rem;
  background: #0b5bff;
  left: -5rem;
  bottom: -7rem;
}

.logo-ico {
  width: 28px;
  height: 28px;
}

.login-link {
  border-color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}

.login-link:hover,
.login-link:focus {
  background: #ffffff;
  color: var(--brand-secondary);
}

.hero-logo {
  max-width: 360px;
  width: 100%;
  animation: floatY 5s ease-in-out infinite;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.py-lg-6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section {
  padding: 4.5rem 0;
}

.section-light {
  background: linear-gradient(180deg, #f8fcff 0%, #eef6ff 100%);
}

.section-dark {
  background: radial-gradient(circle at 10% 5%, #1a64ff 0%, #0038dd 45%, #0029a7 100%);
}

.section-title {
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.section-text {
  color: #2d3a52;
  max-width: 60ch;
}

.text-white-75 {
  color: rgba(255, 255, 255, 0.8);
}

.feature-card {
  padding: 1.25rem;
  border-radius: 14px;
  border: 1px solid #dce8ff;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(8, 38, 126, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 34px rgba(8, 38, 126, 0.14);
}

.feature-icon {
  font-size: 1.5rem;
  color: var(--brand-secondary);
  margin-bottom: 0.75rem;
}

.reservation-list li {
  margin: 0.6rem 0;
  color: #f6f8ff;
  padding-left: 1.3rem;
  position: relative;
}

.reservation-list li::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #63d7ff;
  position: absolute;
  top: 0.5rem;
  left: 0;
}

.reservation-box {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  padding: 1.25rem;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.16);
}

.contact-card {
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #dbe8ff;
  box-shadow: 0 12px 36px rgba(13, 53, 147, 0.1);
  padding: 1.25rem;
}

.btn-brand {
  background: var(--brand-secondary);
  color: #ffffff;
  border: none;
}

.btn-brand:hover,
.btn-brand:focus {
  background: #0028a6;
  color: #ffffff;
}

.site-footer {
  background: #0e172c;
  color: #d8e4ff;
}

.reveal,
.reveal-delay {
  opacity: 0;
  transform: translateY(12px);
  animation: revealUp 0.8s ease forwards;
}

.reveal-delay {
  animation-delay: 0.2s;
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 991px) {
  .login-link {
    margin-left: auto;
    margin-right: 0.75rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .py-lg-6 {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}
