@import "themes.css";

body {
  min-height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  font-family: 'Poppins', sans-serif;
  color: var(--wv-font-light);
}

p span {
  font-weight: bold;
}
h1 {
  font-size: 2em;
  color: var(--wv-font-dark);
}

h2 {
  font-size: 1.5em;
  color: var(--wv-font-dark);
}

h3 {
  font-size: 1.17em;
  color: var(--wv-font-dark);
}

b {
  font-weight: bold;
}
.error-text {
  color: var(--wv_color-error);
}
.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 16rem;
  background-color: var(--wv-color-opaque);
  backdrop-filter: blur(12px);
  box-shadow: -10px 0 10px var(--wv_color-shadow);
  list-style: none;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.half-page-height{
  min-height: 50vh;
}
.sidebar li {
  width: 100%;
}

.sidebar a {
  width: 100%;
}

.menu-button {
  display: none;
}

/* Navigation **************************************************************************************/
nav {
  background-color: var(--navbar-backcolor);
  box-shadow: 3px 3px 5px var(--wv_color-shadow);
  position: fixed;
  top: 0;
  width: 100%;
  font-size: small;
  font-weight: 300;
}

nav ul {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

nav li {
  height: var(--navbar-height)
}

.selected-menu-item {
  background-color: var(--wv-color-selected);
}

nav a {
  height: 100%;
  padding: 0 2rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: var(--navbar-link-color);
}

nav a:hover {
  color: var(--wv-color-bright);
  font-weight: 500;
  text-decoration: none;
}

nav li:first-child {
  margin-right: auto;
}

/*****************************************************************************************************************/
.intro-section {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding-top: var(--navbar-height);
  background-color: var(--wv-color-light);
}

.intro-para {
  padding: 1.5rem;
  width: 50%;
  text-align: center;
}
.intro-img {
  padding: 1.5rem;
  width: 50%;
}
.section-buttons {
  flex-direction: row;
  padding: 0 0 0 1.5rem;
}
.section-button {
  background-color: var(--navbar-backcolor);
  color: var(--navbar-link-color);
  padding: 0.5em 1.0em;
  border-radius: 10px;
  font-weight: normal;
  font-size: small;
  box-shadow: 3px 3px 5px var(--wv_color-shadow);
  cursor: pointer;
}

.left-inline-button {
  float: left;
  margin: 0 0.75em 0 0;
}

.section-button:hover {
  background-color: var(--navitem-hover-color);
}

.team-section {
  display: flex;
  flex-direction: row;
  flex-wrap:nowrap;
  justify-content: center;
  align-items: center;
  padding-top: var(--navbar-height);
  background-color: var(--wv-color-light);
}

.team-para {
  padding: 1.5rem;
  width: auto;
  text-align: left;
}
.team-img {
  padding: 1.5rem;
  width: 400px;
}

/* ******************************************************************************************************************/
.services-section {
  background-color: var(--wv-color-shaded);
  width: 100%;
  height: auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  padding-bottom: 1.25rem;
}

.services-intro {
  box-sizing: border-box;
  width: 100%;
  padding: 1.25rem;
  background-color: var(--wv-color-shaded);
  font-size: 1rem;
  line-height: 1.6rem;
  text-align: justify;
}

/*******************************************************************************/
.grid-cards {
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(min(400px,100%), 1fr));
  gap: 1rem;
  width: 100%;
  height: auto;
  padding: 1rem;

}

.grid-card {
  background-color: var(--wv-color-light);
  border-radius: 1.25rem;
  justify-content: center;
  align-content: top;
  padding: 1.25rem;
  margin: 1rem 1rem 0 0;
  width: 100%;
  border: 0.125rem solid var(--wv-color-shaded);
  text-align: center;
  justify-items: center;
  border-radius: 3rem;
  min-width: 20rem;
  min-height: 32rem;
}

.grid-card-img {
  width: 60%;
  border-radius: 50%;
}

.grid-card-text {
  font-size: 1rem;
  line-height: 1.6rem;
  text-align: justify;
}

.grid-card-text-hdr {
  font-size: 1rem;
  line-height: 1.6rem;
  font-weight: bold;
  text-align: center;
}
/*******************************************************************************/


.document-section {
  padding: var(--navbar-height) 2rem 2rem 2rem;
  background-color: var(--wv-color-light);  
}
.document-section p {
  padding-bottom: 1rem;
}
.document-section .bulletlist ul {
  list-style-type: disc;
	line-height: 1.6;
  padding-inline-start: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.document-section li {
  padding-bottom: 0.25rem;
}
.document-section span a {
	text-decoration: none;
	font-weight: bold;
}
.document-section span a:hover {
	opacity: 0.6;
}

.contact-section {
  padding: var(--navbar-height) 2rem 2rem 2rem;
  background-color: var(--wv-color-light);   
}


.wvform {
  background-color: var(--form-backcolor);
  border-radius: 0.5rem;
  max-width: 100%;
  margin: 0;
  padding: 1.25rem;
  align-items: normal;
  font-size: 1rem;
  text-align: left;
}

input,
textarea,
label {
  display: block;
  margin: 0 0 0.75rem 0;
  color: var(--form-text-color)
}

input {
  background-color: var(--form-field-backcolor);
  margin-bottom: 1.25rem;
  padding: 0.75rem;
  border: none;
  border-radius: 0.3rem;
  outline: none;
  width: 33%;
  min-width: min(360px, 100%);
}

textarea {
  background-color: var(--form-field-backcolor);
  margin-right: 0.3rem;
  margin-bottom: 0.3rem;
  padding: 0.75rem;
  border: none;
  border-radius: 0.5rem;
  outline: none;
  width: 80%;
  min-width: min(360px, 100%);
  height: auto;
}

input:focus,
textarea:focus {
  outline: 1px solid var(--wv_color-focus);
}

a[class=email-button] {
  font-style: italic;
  text-decoration: none;
}

a:hover {
  color: var(--wv_color_link);
  text-decoration: underline;
}

button:hover {
  background: #9b9b9b;
  background: var(--wv-color-button-hover);
}
 
.heading_with_image {
font-size: 22px;
  line-height: 26px;
  font-weight: bold;
  padding-top: 16px;
  padding-bottom: 20px;
}
div.heading_with_image img {
max-height: 22px;
vertical-align: top;
  padding-right: 8px;
}

/* Extra small devices (phones, width up to 576px) */
@media only screen and (max-width: 576px) {
  .sidebar { width: 50%; }

  .intro-para {width: 100%; }
  .intro-img {width: 100%; }

  .team-para {width: 100%; }
  .team-img {width: 100%; }}

/* Small devices (portrait tablets and large phones, width >= 576px) */
@media only screen and (min-width: 576px) {
}

/* Medium devices (landscape tablets, width >= 768px) */
@media only screen and (min-width: 768px) {
} 
/* Medium devices (landscape tablets, hide menu for width <= 768px) */
@media only screen and (max-width: 768px) {
  .hideOnMobile { display: none; }
  .menu-button { display: block; }  
}
/* Large devices (laptops/desktops, width >= 992px) */
@media only screen and (min-width: 992px) {
  .team-section { flex-wrap: nowrap; }
} 
/* Large devices (laptops/desktops, width <= 992px) */
@media only screen and (max-width: 992px) {
  .team-section { flex-wrap: wrap; }
} 

/* Large devices (large laptops and desktops, width >= 1200px) */
@media only screen and (min-width: 1200px) {
}
/* Extra large devices (width >= 1400px) */
@media only screen and (min-width: 1400px) {
}

