/* Import a wavy, decorative font for headings */
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@400;700&display=swap');

/* Body font: clean sans-serif */
body {
  background-color: #e6f5fa;
  font-family: 'Segoe UI', sans-serif;
  color: #222;
  line-height: 1.7;
  font-size: 16px;
}

/* Header and logo font: wave-style */
#site-title a, #main h1, #main h2, #main h3 {
  font-family: 'Comfortaa', cursive;
  color: #004c66;
}

/* Navigation Bar */
.navbar {
  background-color: #009ec3;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}
.navbar a {
  color: #ffffff !important;
  font-weight: bold;
}
.navbar a:hover {
  color: #d9f6ff !important;
}

/* Top bar (admin or login strip) */
#site-top {
  background-color: #006a8e;
  color: white;
}

/* Banner section */
#banner {
  background-color: #0084a8;
  background-image: linear-gradient(to right, #0084a8, #00aacc);
  color: white;
  text-align: center;
  padding: 40px 15px;
}
#banner h1 {
  font-size: 2.5em;
  font-family: 'Comfortaa', cursive;
}

/* Footer */
#site-footer {
  background-color: #003344;
  color: #e0f0f5;
  padding: 25px;
  text-align: center;
  font-size: 0.9em;
}

/* Links */
a {
  color: #007fa6;
  text-decoration: none;
}
a:hover {
  color: #004466;
  text-decoration: underline;
}

/* Pills nav tweaks */
.nav-pills > li > a {
  background-color: #00a1b3;
  color: white;
  border-radius: 20px;
  margin: 0 4px;
}
.nav-pills > li > a:hover {
  background-color: #00788a;
}

/* Responsive image scaling */
#main img {
  max-width: 100%;
  height: auto;
}

/* Sidebar (if used) */
.sidebar {
  background-color: #f0fbfd;
  padding: 10px;
  border-left: 4px solid #b3e0ea;
#site-footer {
  background-image: url("/wemburywaves/assets/images/footerhoriz");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
  padding: 40px 15px;
}
/* Fix for admin settings dropdown */
.dropdown-menu-right {
  background-color: #004d66 !important;
  border: 1px solid #003344 !important;
}

.dropdown-menu-right a {
  color: white !important;
  background-color: transparent !important;
  display: block;
  padding: 10px 15px;
  font-size: 14px;
}

.dropdown-menu-right a:hover {
  background-color: #006a8e !important;
  color: #ffffff !important;
}/* FORCE admin dropdown menu to be visible on Cerulean */
ul.dropdown-menu.dropdown-menu-right {
  background-color: #004d66 !important;
  border: 1px solid #003344;
}

ul.dropdown-menu.dropdown-menu-right > li > a {
  background-color: #004d66 !important;
  color: white !important;
}

ul.dropdown-menu.dropdown-menu-right > li > a:hover {
  background-color: #006a8e !important;
  color: #ffffff !important;
}}