:root {
  --primary-sea: #003366;
  --primary-accent: #0d6efd;
  --light-background: #f0f8ff;
}

body {
  background-color: var(--light-background);
}

.navbar,
.footer
 {
  background-color: var(--primary-sea) !important;
}

.navbar .nav-link,
.navbar-brand,
.footer,
.text-white {
  color: #ffffff !important;
}

.btn-primary {
  background-color: var(--primary-accent);
  border-color: var(--primary-accent);
}

.btn-primary:hover {
  background-color: #0b5ed7;
  border-color: #0a58ca;
}

/*
.hero {
  background: linear-gradient(rgba(0, 51, 102, 0.6), rgba(0, 51, 102, 0.6)),
    url('../img/hero-boat.jpg') center/cover no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}*/


.hero {
  position: relative;
  background-size: cover;
  height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Adjust opacity here */
  z-index: 1;
}

.hero > div {
  position: relative;
  z-index: 2;
}


.card img {
  height: 200px;
  object-fit: cover;
}

.search-bar {
  margin-top: -60px;
  z-index: 10;
  position: relative;
}

.social-icon {
  font-size: 1.5rem;
  margin: 0 10px;
}

.boat-thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.boat-thumb:hover {
  transform: scale(1.02);
}

.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}


/* Navbar animation on load */
    .navbar {
      animation: fadeSlideDown 1s ease-in-out forwards;
      opacity: 0;
      transform: translateY(-20px);
    }

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

    /* Logo hover animation */
    .navbar-brand {
      transition: transform 0.3s ease, text-shadow 0.3s ease;
    }

    .navbar-brand:hover {
      transform: scale(1.05);
      text-shadow: 0 0 8px #00cdde;
    }

    /* Nav link underline animation */
    .nav-link {
      position: relative;
      transition: color 0.3s ease;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 0;
      background-color: #00cdde;
      transition: width 0.3s ease;
    }

    .nav-link:hover::after {
      width: 100%;
    }
	
	
	
	/* Improved contrast for outline buttons */
.custom-location-btn {
  color: #0056b3;
  border-color: #0056b3;
  font-weight: 600;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.custom-location-btn:hover {
  background-color: #0056b3;
  color: #ffffff;
  border-color: #0056b3;
}
