@import url('fonts.css');


* {
	box-sizing: border-box;
	transition: all 120ms ease-out;
}

.row, .col {
	flex: 1;
}

:root{
	--primary-color: #006BB2;
	--secondary-color: #fff;
	--acrylic-dark: rgba(20, 21, 23, 0.5);
	--acrylic-light: rgba(95, 100, 109, 0.5);

	--acrylic-border-image: linear-gradient(rgba(0, 0, 0, 0), rgba(255, 255, 255, 0.05))
}

.logo{
	
	width: 28%;
}
.sport-logo{
	margin-top: 15%;
	margin-bottom: 15%;
	width:50px;
	float: left;
}
.return-logo{
	float: left;
}
.coach{
	width: 30%;
	border:5px solid;
}
.roster{
	width: 100%;
	border:5px solid;
	margin-top:10%;
	margin-bottom: 10%;
}
.CCWroster{
	width: 60%;
	border:5px solid;
	float: left;
	margin-left:10px;
	margin-top:10px;
}
.CCMroster{
	width: 60%;
	border:5px solid;
	float: right;
	margin-left:10px;
	margin-bottom:10px;
}
.ribbon{
	width:30px;
	float:left; /* Not ideal but it works*/
}
body, html {
	margin: 0;
	padding: 0;
	font-family: 'Urbanist', sans-serif;
	background: #646567;
	min-width: 100vw;
	min-height: 100vh;
	
}

/* =================================
  Navbar Styling
================================= */

nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(20, 21, 23, 0.5);
	backdrop-filter: blur(80px);
	padding: .20rem 0;
	z-index: 100;
	border-bottom-style: solid;
	border-color:yellow;
	
}

nav .container {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	
}

nav .container ul {
	display: flex;
	list-style: none;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 0px !important;
}

nav .container ul li a {
	text-decoration: none;
	vertical-align: center;
	color: #fff;
	font-size: 20pt;
	font-weight: lighter;
	margin: 0 1rem;
}

nav .container ul li a.active {
	font-weight: bold;
	border-bottom: solid var(--primary-color) 3pt;
}


/* =================================
  Main Content
==================================== */
.title h1{
	font-size: 400%;
}
.title h2{
	font-size: 300%;
}
main {
	clear: both;
	position: relative;
	background: white;
	width: 100vw; 
	height: 100vh; 
	padding-top:100px;
	display: flex;
	justify-content: center;
	align-items: stretch;
}
.container{
	clear: both;
	text-align: center;
}
.container .row .col{
	clear: both;
	border: solid 2px;
	border-radius: 10px;
	text-align: center;
	font-size: 15pt;
	margin: 5px;
	margin-top: 10px;
	background-color: #006BB2;
	color: white;
	
}
.col h3,
.col p {
    margin-top: 5%; /* padding in buttons, fix if it breaks on pepper */
	margin-bottom: 5%;
}

a{
	text-decoration: none;
}
a:hover{
	color:yellow !important;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.16), 0 4px 8px rgba(0, 0, 0, 0.23);
}
.main-button-group {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: stretch;
	background-image: url("../img/whiteBackground.jpg"); 
}
.talk-button:hover {
	color:yellow;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.16), 0 4px 8px rgba(0, 0, 0, 0.23); /* Enhance shadow*/
	
}
  
.talk-button:active {
	background: var(--primary-color); 
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
	
  }
  .talk-button {
    background-color: #006BB2;
    color: white;
    font-size: 40px;
    border: none;
    border-radius: 5px;
    padding: 5px 40px 5px 50px; 
    position: absolute;
    bottom: 5px;
    right: 50%; 
    transform: translateX(50%);
    background-image: url("../img/microphone.png"); 
    background-repeat: no-repeat;
    background-position: -1px center; 
}

.talk-button:hover {
    background-color: #005699; 
}

.talk-button:active {
    background-color: #004477;
	background-image: url("../img/microphone.png");
	background-repeat: no-repeat;
	background-position: -1px center;
}

#hiddenText { /*Change to .hiddenText if it doesnt work */
	display: none; 
} 
ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}
/* ================================= 
  Media Queries
==================================== */

@media (min-width: 800px) {
    /* Pepper tablet should be 1280 x 800px */
    .header,
    .main-nav {
        display: flex;
    }
    
    .header {
        flex-direction: column;
        align-items: center;
        width: 80%;
        margin: 0 auto;
        max-width: 1280px; 
    }
}


