/* Shared base variables for header/footer */
:root {
  --primary-blue: #003b95;
  --dark-blue: #002d72;
  --bg-light: #f5f7fa;
  --text-dark: #1a1a1a;
  --text-muted: #666666;
  --white: #ffffff;
}

/* Shared header (navbar) and footer styles */

.navbar {
  background-color: var(--primary-blue);
  padding: 15px 0;
  color: var(--white);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.logo img {
  display: block;
  max-height: 32px;
}

.logo:hover {
  color: var(--white);
  text-decoration: none;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  opacity: 0.8;
}

.nav-links a.active {
  opacity: 1;
  font-weight: 600;
}

.btn-primary {
  background-color: var(--white);
  color: var(--primary-blue);
  border: none;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  font-size: 13px;
}

.btn-manage-booking {
  text-decoration: none;
}

.btn-manage-booking:hover {
  text-decoration: none;
}

/* Footer */
.footer {
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 80px 0 40px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}

.footer .logo img {
  width: 131px;
  height: 37px;
  object-fit: contain;
  display: block;
}

.footer-links-grid {
  display: flex;
  gap: 100px;
}

.footer-col h4 {
  margin-bottom: 25px;
  font-size: 18px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  font-size: 14px;
  opacity: 0.7;
}

@media (max-width: 992px) {
  .footer-links-grid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .btn-primary {
    display: none;
  }

  .footer-content {
    flex-direction: column;
    gap: 40px;
  }

  .footer-links-grid {
    gap: 40px;
  }
}
