body {
  background-color: rgb(137, 160, 184) !important;
}




/*/ Navbar /*/

li{
    list-style: none;
}

.navbar a {
    text-decoration: none;
    color: #fff;
    font-size: 1em;
}

.dropdown_menu a{
    text-decoration: none;
    color: #fff;
    font-size: 1em;
}

a:hover {
    color: #004d96;
}








/* Header */

header {
    position: relative;
    padding: 0 2em;
}

.navbar{
    width: 100%;
    height: 60px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo{
    width: 250px;
    cursor: pointer;
}


.navbar .links{
    display: flex;
    gap: 2rem;
}

.navbar .toggle_btn{
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

.action_btn{
    background-color: #004d96;
    color: #fff;
    padding: 0.5rem 1rem;
    border: none;
    outline: none;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold; 
    cursor: pointer;
}

.action_btn:hover{
    scale: 1.05;
    color: #fff;
}

.action_btn:active{
    scale: 0.95;
}





/* Dropdown menu */

.dropdown_menu {
    display: none;
    position: absolute;
    right: 2rem;
    top: 60px;
    height: 0;
    width: 300px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    overflow: hidden;
    transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dropdown_menu.open{
    height: 200px;
}

.dropdown_menu li{
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown_menu .action_btn{
    width: 100%;
    display: flex;
    justify-content: center;
}


/* Responsive Design for phone*/

@media(max-width: 992px){
    .navbar .links,
    .navbar .action_btn{
        display: none;
    }

    .navbar .toggle_btn{
        display: block;
    }

    .dropdown_menu{
        display: block;
    }
}


@media(max-width: 576px) {
    .dropdown_menu {
        left: 2rem;
        width: unset;
    }
}









/*/ Gallery /*/

    .thumb {
      width: 100px;
      height: 70px;
      object-fit: cover;
      border-radius: 6px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
      transition: transform 0.2s ease-in-out;
      cursor: pointer;
    }
    .thumb:hover {
      transform: scale(1.05);
    }
    .main-photo {
      max-width: 100%;
      border-radius: 10px;
      margin-bottom: 15px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }
    .price {
      font-size: 1.5rem;
      font-weight: bold;
    }
    .discount-price {
      font-size: 1.5rem;
      color: red;
    }


/* Table for boats */

.specs-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 30px;
  color: white;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  font-size: 1.1rem;
}


.specs-card h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #fff;
}

.spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.spec-list li {
  padding: 8px 0;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  gap: 10px;
}

.spec-list li i {
  color: #ffffff;
  min-width: 20px;
}

