@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);
}

/******************************************************************************************************/
.slyh-banner {
  padding-top: var(--navbar-height);
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.slyh-banner img{
  width: 100%;
}
/******************************************************************************************************/
.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;
}
.quarter-page-height{
  min-height: 25vh;
}
.sidebar li {
  width: 100%;
}

.sidebar a {
  width: 100%;
}

.menu-button {
  display: none;
}

/* Navigation **************************************************************************************/
nav {
  background-color: var(--navbar-backcolor);
  background-image: url(../images/pitch.jpg);
	background-repeat: repeat;
	background-size: auto;

  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);
 */  
 background-image: url(../images/pitchlight.jpg);
 background-repeat: repeat;
 background-size: auto;
}

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;
}
.fixed-left {
  position: fixed;
  left: 0;
}

.slyball {
  width:36px;
  height:36px;
  margin-right: 1rem;
}
.sly-programme {
  padding: 1rem;
}
/*****************************************************************************************************************/
.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);
  */

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(400px,100%), 1fr));
  gap: 1rem;
  width: 100%;
  height: auto;
  padding: 1rem;
}

.intro-para {
  padding: 0 1.5rem;
  width: 100%;
  text-align: center;
}
.intro-img {
  padding: 0 1.5rem;
  width: 100%;
}
.section-buttons {
  flex-direction: row;
  padding: 0 0 0 1.5rem;
}
.section-button {
  background-color: var(--navbar-backcolor);
  background-image: url(../images/pitch.jpg);
	background-repeat: repeat;
	background-size: auto;

  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);
  background-image: url(../images/pitchlight.jpg);
}

.fullwidth-padded-img {
  padding: 1.5rem;
  width: 100%;
}

/* ******************************************************************************************************************/
.activities-section {
  background-color: rgba(0, 255, 255, 0.25);/*var(--wv-color-shaded);*/
  width: 100%;
  height: auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  padding-bottom: 1.25rem;
}

/*******************************************************************************/
.people-section {
  display: flex;
  flex-direction: column;
  flex-wrap:wrap;
  justify-content: center;
  align-items: center;
  background-color: var(--wv-color-light);
  padding: 1.5rem;
  width: 100%;
}
.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px,100%), 1fr));
  gap: 1rem;
  width: 100%;
  height: auto;
  padding: 1rem;
}
.profiles {
  grid-template-columns: repeat(auto-fit, minmax(min(400px,100%), 1fr));
  padding: 0;
}
.grid-card {
  border-radius: 1.25rem;
  justify-content: center;
  align-content: top;
  padding: 1.25rem;
  margin: 1rem 1rem 0 0;
  width: 100%;
  text-align: center;
  justify-items: center;
  border-radius: 1rem;
  min-width: min(20rem, 100%);
  min-height: 22rem;
  background-color:  var(--wv-color-card-background);
  border: 0.125rem solid var(--wv-color-card-background);
  color: var(--wv-color-card-text);
}
.personal-info {
  display: flex;
  flex-wrap: nowrap;
  border-radius: 1.25rem;
  justify-content: center;
  align-content: top;
  padding: 1.25rem;
  margin: 1rem 1rem 0 0;
  width: 100%;

  text-align: center;
  justify-items: center;
  border-radius: 1rem;
  background-color:  var(--wv-color-card-background);
  border: 0.125rem solid var(--wv-color-card-background);
  color: var(--wv-color-card-text);
	background: linear-gradient(to left, #434343, #000000);
  min-width: min(54rem, 100%);
  min-height: 22rem;
	background: linear-gradient(to left, #434343, #000000);
}

.sponsor-image{
  width: 100%;
  padding: 1.5rem;
}
.sponsor-text {
  margin-top: 1rem;
}
.sponsor-text p {
  font-size: 1rem;
}
.grid-card-img {
  width: 60%;
  border-radius: 50%;
}

.grid-card-text {
  font-size: 1em;
  line-height: 1.6em;
  text-align: center;
}

.grid-card-text-hdr {
  font-size: 1em;
  line-height: 1.6em;
  font-weight: bold;
  text-align: center;
}
/******** WV-PROFILES **********************************/

    .wv-profiles-section {
        width: 100%;
        padding: 1rem;
        background-color: var(--wv-color-light);
    }

    .wv-profiles {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(var(--wv-card-min-width), 1fr));
        gap: 1em;
        width: 100%;
        height: auto;
        padding: 1em 0;
    }

    .wv-profile-card {
        background-color: var(--wv-card-backcolor);
        min-width: var(--wv-card-min-width);
        min-height: var(--wv-card-min-height);
        border-radius: var(--wv-card-border-radius);
        background: linear-gradient(to left, #434343, #000000);
        box-shadow: 0 0.25rem 0.5rem 0 rgba(0, 0, 0, 0.2), 0 0.3rem 1,5rem 0 rgba(0, 0, 0, 0.19);
    }

    .wv-profile-images {
        display: flex;
        justify-content: center;
        flex-wrap: nowrap;
    }

    .wv-profile-images img {
        width: 40%;
        aspect-ratio: 1/1;
        border-radius: 50%;
        margin: 1em;
    }

    .wv-profile-info {
        color: var(--wv-card-text-color);
        padding: 1em;
        text-align: center;
    }

    .wv-profile-name {
        font-size: 1.6em;
    }

    .wv-profile-status {
        font-size: 1.2em;
    }

    .wv-profile-info q {
        font-style: italic;
        font-size: 0.9em;
    }

    .wv-profile-table {
        width: 100%;
        font-size: 0.75em;
        text-align: left;
        margin-top: 1em;
    }

    .wv-profile-table tr {
        border-top: 1px solid var(--wv-card-text-color);
    }

    .wv-profile-table td {
        padding: 0.5em;
    }

    .wv-iconlink {
        border: none;
        font-size: 1em;
        margin-top: 0.5em;
    }

    .wv-iconlink a {
        color: var(--wv-card-text-color);
        vertical-align: middle;
        text-decoration: none;
    }

    .wv-iconlink img {
        max-width: 1em;
        vertical-align: middle;
    }


/****************************************** Profile Cards ******************************************/
.left-container {
/*
	background: linear-gradient(to right, #434343, var(--wv-color-card-background));
 	border-radius: 20px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
 */
 	max-width: 30%;

  display: grid;
  grid-template-columns: 1fr;
 
	align-items: top;
	height: auto;
	padding: 0;
	margin: 0;
}

.left-container img {
  --img-size: 100%;
	width: var(--img-size);
	max-width: min(var(--img-size), 100%);
	border-radius: 50%;
  margin-top: 1em;
	box-shadow: 0 0.25rem 0.5rem 0 rgba(0, 0, 0, 0.2), 0 0.3rem 1,5rem 0 rgba(0, 0, 0, 0.19);
  border: 1px solid black;
}

.iconlink {
	border: none;
	font-size: 1em;
}
.iconlink a {
	color: antiquewhite;
	vertical-align: middle;
	text-decoration: none;
}

.iconlink img {
	max-width: 1.5em;
	vertical-align: middle;
}

.right-container {
	flex: 1;
	max-width: auto;
	height: auto;
	padding: 1rem;
	margin-left: 1rem;
	border-radius: 1.5em;
	box-shadow: 0 0.25rem 0.5rem 0 rgba(0, 0, 0, 0.2), 0 0.3rem 1,5rem 0 rgba(0, 0, 0, 0.19);
  text-align: left;
}

.right-container q {
	color: antiquewhite;
	font-size: 14px;
	font-weight: normal;
	font-style: italic;
	color: antiquewhite;
}

.right-container h2 {
	text-align: left;
	font-size: 24px;
	margin-bottom: 5px;
	color: white;
}

.right-container h3 {
	text-align:left;
	margin-bottom: 5px;
	color: bisque;
	font-size: 18px;
}

.right-container p {
	color: antiquewhite;
}

.right-container table {
	border:none;
	color: white;
	background-color: transparent;
	border-collapse: collapse;
	margin: 25px 0;
	font-size: 0.9em;
	font-family: sans-serif;
	min-width: 100%;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
	background-image: none;
}

.right-container table td {
	padding: 12px 15px;
	vertical-align: top;
}

.right-container table tbody tr {
	border-bottom: 1px solid #dddddd;
}

/************************************************************************/
.card {
  display: grid;
  grid-template-columns: 1fr;
 
	align-items: top;
	height: auto;
	padding: 0;
	margin: 0;

  border-radius: 1.25rem;
  justify-content: center;
  align-content: top;
  padding: 1.25rem;
  margin: 1rem 1rem 0 0;
  width: 100%;

  text-align: center;
  justify-items: center;

  background-color:  var(--wv-color-card-background);
  border: 0.125rem solid var(--wv-color-card-background);
  color: var(--wv-color-card-text);
	background: linear-gradient(to left, #434343, #000000);
  min-width: min(54rem, 100%);
  min-height: 22rem;
	background: linear-gradient(to left, #434343, #000000);
}
.card-image img {
  --img-size: 40%;
	width: var(--img-size);
	max-width: min(var(--img-size), 100%);
	border-radius: 50%;
  margin-top: 1em;
	box-shadow: 0 0.25rem 0.5rem 0 rgba(0, 0, 0, 0.2), 0 0.3rem 1,5rem 0 rgba(0, 0, 0, 0.19);
}
.card-name {
  font-size: 2em;
}
.card-status {
  font-size: 1.6em;
}

.card q {
  font-size: 1em;
  font-style: italic;
  padding: 1em;
}
.card-body {
  width: 100%;
  padding: 1em;

}
.card-section {
  width: 100%;
  border-top: 1px solid var(--wv-color-card-text);
}
.card-section
p,
ul{
  text-align: left;
  font-size: 1em;
  width: 100%;
}
.card-section ul {
  list-style-type: square;
	line-height: 1.6;
  padding-inline-start: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/*******************************************************************************/


.document-section {
  padding: var(--navbar-height) 2rem 2rem 2rem;
  background-color: var(--wv-color-light);  
}
.document-section p {
  padding-bottom: 1rem;
}
.document-section 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 a {
	text-decoration: underline;
}

.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;
}

.wv-table {
  margin: 0.5rem 0;
}
.wv-table td {
  padding-right: 1rem;
}
.wv-table span {
    font-weight: bold;
}
/* 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) {
}

/* small devices (width <= 768px) */
@media only screen and (max-width: 768px) {
  .wv-profiles {
    grid-auto-flow: row;
}
} /* Medium devices (landscape tablets, width >= 768px) */
@media only screen and (min-width: 768px) {
} 
/* Medium devices (landscape tablets, hide menu for width <= 1096px) */
@media only screen and (max-width: 1096px) {
  .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) {
}

