/* Navbar styling */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background-color: #004634;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

/* Logo Animation */
.navbar-brand img {
    transition: transform 2s ease-in-out;
}

.navbar-brand img:hover {
    transform: scale(1.1);
}

/* Navigation links */
.nav-link {
    color: rgb(215, 212, 194);
    font-size: 15px;
    font-weight: bold;
    position: relative;
    transition: color 0.3s ease-in-out;
}

.nav-link:hover {
    color: rgb(215, 212, 194);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: rgb(215, 212, 194);
    transition: width 0.3s ease-in-out;
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown Menu on Hover */
.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu {
    background-color: #004634;
    border: none;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    transform: translateY(10px);
    opacity: 0;
}

.dropdown-item {
    color: rgb(215, 212, 194);
    transition: color 0.3s ease-in-out;
}

.dropdown-item:hover {
    color: rgb(215, 212, 194);
    background-color: transparent;
}

/* Button styling */
.btn {
    color: rgb(6, 6, 77);
    background-color: rgb(215, 212, 194);
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.btn:hover {
    background-color: rgb(215, 212, 194);
    color: white;
}

/* Navbar toggler (for mobile) */
.navbar-toggler {
    background-color: #e1d39b;
    border: none;
}


/* +++++++++++ */
 /* Fullscreen Image Section */
 .fullscreen-image {
  position: relative;
  height: 100vh; /* Always take full viewport height */
  overflow: hidden;
}

.fullscreen-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 75%; /* Ensures it fills the height */
  object-fit: cover; /* Keeps the image proportions and prevents distortion */
  transform: translate(-50%, -50%);
}

.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
  border-radius: 10px;
  width: 80%;
  max-width: 600px;
}

.overlay h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.overlay p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .overlay h1 {
    font-size: 2rem;
  }

  .overlay p {
    font-size: 1rem;
  }

  .overlay {
    padding: 15px;
    width: 90%;
  }
}

@media (max-width: 576px) {
  .overlay h1 {
    font-size: 1.8rem;
  }

  .overlay p {
    font-size: 0.9rem;
  }
}

/* +++++++++ */
#asd{
  background-color: #f9fafb;
}
 /* Custom Styling */
 #h4 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #004634;
}

#p, #li {
  font-size: 1rem;
  line-height: 1.6;
}

#ul {
  padding-left: 30px;
}

/* Adjust image and text alignment for smaller screens */
@media (max-width: 768px) {
  #h4 {
    font-size: 1.5rem;
    text-align: center;
  }

  #p, #li {
    font-size: 0.9rem;
  }

  .col-md-6 {
    text-align: center;
  }

  .col-md-6 img {
    max-width: 80%;
    margin: 20px 0;
  }
}

@media (max-width: 576px) {
  #h4 {
    font-size: 1.3rem;
  }

  #p, #li {
    font-size: 0.85rem;
  }
}

/* ++++++ */

/* Container Styling */
#fleet-container {
  padding: 20px;
}

/* Heading Styling */
#fleet-heading {
  color: #004634; /* Merun red */
  font-weight: bold;
}

/* Card Styling */
#card {
  border: 1px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#image1{
  width: 100%;
  height: 200px;
}

#card-body {
  padding: 15px;
  text-align: center;
}

#title {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #004634;
}

#pricing {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}

#pricing li {
  margin: 5px 0;
}

/* Button Styling */
#book-btn {
  display: block;
  text-decoration: none;
  background-color: #ae9610;
  color: white;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  font-weight: bold;
  transition: background-color 0.3s;
  border-radius: 30px;
}

#book-btn:hover {
  background-color: #ae9610;
}


/* +++++++++ */

.footer {
  background-color: #004634;
  color: white;
  padding: 40px 0;
  font-family: Arial, sans-serif;
}

.footer h5 {
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.footer a {
  color: #e6e6e6;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer a:hover {
  color: #fff;
}

.footer .social-icons a {
  color: white;
  font-size: 1.2rem;
  margin: 0 10px;
  transition: color 0.3s;
}

.footer .social-icons a:hover {
  color: #e6e6e6;
}

.footer .divider {
  border-top: 1px solid #e6e6e6;
  margin: 20px 0;
}

.footer .copyright {
  font-size: 0.9rem;
  color: #e6e6e6;
}

