:root{
  --main-color: white;
  --secondary-color: #051d31;
  --main-background-color: #051d31;
  --secondary-background-color: white;/* #56798F; */
}

body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-height: 100vh;
  background-color: var(--main-background-color);
  color: #ffffff;
  margin: 0px;
  padding: 0px;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
  overflow-y: auto; /* Enable vertical scrolling */

}

main {
  flex: 1;
}

/*#region Navbar*/

.navbar {
  background-color: var(--main-background-color);
  color: #fff;
  padding: 10px 0;
}

.navbar-container {
  width: 100%;
  border: 1px solid var(--main-color);
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 0 20px;
}

.brand {
  display: flex;
  align-items: center;
}

.logo {
  width: 70px;
  height: 70px;
  margin-right: 5px;
}

.brand-name {
  margin: 0;
  font-size: 24px;
  color: var(--secondary-background-color);
}

.brand-slogan {
  margin: 0;
  font-size: 14px;
  font-style: italic;
}

.nav-links {
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
}

.nav-links ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center; /* Center the nav links horizontally */
}

.nav-links li {
  display: inline;
  margin-right: 20px;
}

.nav-links li:last-child {
  margin-right: 0;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffd700;
}

.nav-links .active{
  color: var(--secondary-background-color);
  text-decoration: underline;
  font-weight: 600;
}

.contact-btn .btn {
  padding: 10px 20px;
  background-color: var(--secondary-background-color);
  color: var(--main-color);
  text-decoration: none;
  font-size: 16px;
  border-radius: 100px;
  transition: background-color 0.3s ease;
}

.contact-btn .btn:hover {
  background-color: #ff9900;
}

/* Dropdown Menu Styles */
.dropbtn {
  display:none;
}

.dropdown-menu{
  display:none;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--secondary-background-color);
  min-width: 160px;
  z-index: 1;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  border-radius: 4px;
}

.dropdown-content a {
  color: var(--secondary-color);
  padding: 12px 16px;
  display: block;
  text-decoration: none;
}

.dropdown-content a:hover {
  background-color: #56798F;
}

.dropdown-content .active{
  font-weight: 600;
  color: var(--main-background-color);
  text-decoration: underline;
}

.show {
  display: block;
}

/*#endregion */

.wave {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('resources/ocean_background.jpg'); /*url('https://i.gifer.com/Cal.gif');*/
  background-size: cover;
  z-index: -1;
}

.home-logo{
  margin-top: 70px;
  margin-bottom: 70px;
  padding-top: 80px;
  padding-bottom: 20px;
  width: 100%;
  align-items: center;
  text-align: center;
}

.home-logo img {
    max-width: 300px;
}

section h2{
    text-align: center;
}

.description {
    background-color: var(--secondary-background-color);
    color: var(--secondary-color);/*black;*/
    /* margin: 20px 0; */
    padding-left: 10px;
    padding-right: 10px;
    border-top: 1px solid var(--main-color);
    border-bottom: 1px solid var(--main-color);
    /* word-wrap: break-word; */
}

.description h3 {
    color: var(--main-color);
}

.services-section{
  background-color: var(--main-background-color);
  padding: 20px 0;
}

.services {
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
    row-gap: 30px;
}

.service {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding: 10px;
  border: 1px solid var(--main-color);
  border-radius: 8px;
  height: 100%;
}

.service img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
}

.service button {
  width: 100%; /* Set button width to 100% */
  max-width: 200px; /* Optional: Set max-width to control button size */
}

.spacer {
  background: rgba(255,255,255,0.8);/*var(--secondary-color);*/
  height: 20px;
}

.contact {
  background-color: var(--main-background-color);
  /*margin: 40px 0;*/
  text-align: center;
  border-top: 1px solid var(--main-color);
  border-bottom: 1px solid var(--main-color);
}

.contact a {
  color: var(--secondary-background-color);
}


.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.team-member {
  text-align: center;
}
.team-member img {
  width: 100%;
  max-width: 200px;
  border-radius: 50%;
  margin-bottom: 1rem;
}



.center {
  width: 100%;
  text-align: center;
}

.vertical-center {
  margin: 0;
  position: absolute;
  top: 0%;
  -ms-transform: translateY(0%);
  transform: translateY(0%);
}

div.subpage {
  padding: 20px 10px;
  background-color: var(--main-background-color);
  color: var(--main-color);
}

footer {
  position:relative;/*fixed;*/
  width:100%;
  bottom: 0px;
  text-align: center;
  border: 10px 0;
  margin-top: 100px;
  height: 50px;   /* Height of the footer */
  background: rgba(255,255,255,0.8); /* var(--secondary-color); */
  color: black;
}

.button-18 {
  align-items: center;
  background-color: white;/* #56798F; */
  color: var(--secondary-color);#ffffff;
  border: 0;
  border-radius: 100px;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-flex;
  font-family: -apple-system, system-ui, system-ui, "Segoe UI", Roboto, "Helvetica Neue", "Fira Sans", Ubuntu, Oxygen, "Oxygen Sans", Cantarell, "Droid Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Lucida Grande", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  justify-content: center;
  line-height: 20px;
  max-width: 480px;
  min-height: 40px;
  min-width: 0px;
  overflow: hidden;
  padding: 0px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  touch-action: manipulation;
  transition: background-color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, box-shadow 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  user-select: none;
  -webkit-user-select: none;
  vertical-align: middle;
}

.button-18:hover{ 
  background-color: #16437E;
  color: #ffffff;
}

/*.button-18:focus*/

/* Responsive Styles */
@media screen and (max-width: 900px) {
  .container {
    flex-direction: column;
    padding: 0 10px;
  }

  .nav-links {
    margin-top: 20px;
    display: none;
  }

  .dropdown-menu {
    display: block;
    position: relative;
    display: inline-block;
    margin-bottom: 10px; /* Added spacing between Contact Button and Menu Button */
  }

  .nav-links a {
    display: block;
    padding: 10px 0;
  }
  
  .contact-btn {
    margin-bottom: 20px; /* Added spacing between Contact Button and Menu Button */
  }
  
  .dropbtn{
    display: block;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: var(--secondary-background-color);
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
  }
  
}
