/* ===================================== Basic Setup ================================ */
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body
{
    background-color: #fff;
    color: #000000;
    font-family: 'Lato', 'Arial', sans-serif;
    font-size: 20px;
    font-weight: 400;
    text-rendering: optimizeLegibility; 
    overflow-x: hidden;
    /* makes font more readable */
}

.clearfix:after/* fixes the sections errors that are caused by floats - clearing floats*/
{
    content: '.';
    clear: both;
    display: block;
    height: 0;
    visibility: hidden;
}

.clearfix {zoom: 1;}

a { text-decoration: none;}
/* ---------------------------------------------------------------------------------- */



/* ================================== Reusable Componets ====================================== */
header { font-size: 16px; }
.row
{
    max-width: 1200px;
    margin: 0 auto 0 auto;
   /*  margin: 0 auto; -- is same as margin: 0 auto 0 auto; -- */
}

section
{
    padding: 80px 2%;
    background: #fff;
}

.box
{
    padding: 1%;
}

/* --------------- Headings ------------- */

h1, h2, h3, h4 /* h2 heading from features */
{
    font-weight: 300;
    text-transform: uppercase; /* makes letters uppercase without physically doing it in html */ 
}

h1
{
    margin-top: 0;
    margin-bottom: 20px;
    color: #fff;
    font-size: 240%;
    word-spacing: 4px;
    letter-spacing: 1px; 
    
}

h2 /* features */
{
    font-size: 180%;
    word-spacing: 2px;
    text-align: center; /* text in middle of page */
    margin-bottom: 30px;
    letter-spacing: 1px; 
}

h3
{
    font-size: 110%;
    margin-bottom: 15px;
}

/* --------------- Video Container ------------- */
.test-round {
    
    background: #ECE9E6;  /* fallback for old browsers */
    background: linear-gradient(to right, #FFFFFF, #f2e6d9); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background-size: cover; /* set background to see whole img */
    background-position: center; /* centered the background image */
    background-attachment: fixed;
    padding: 2%;
    border-radius: 50px;
}


/* ---------------------------------------------------------------------------------- */



/* ==================================== Header Info =============================================== */
.navigation{
  padding-top:15px;
  padding-bottom:15px;
  position:absolute;
  top:0;
  width:100%;
  z-index:9999;
  letter-spacing: 1.8px;
  font-family: 'Lato', sans-serif;
}

.navbar-right{
  float: right;
  padding-right: 5%;
  margin-top: 40px;
  display: none;
  
}

.navbar-right a:link,
.navbar-right a:visited
{
    color: #fff;
    text-decoration: none;
    font-size: 110%;
/*    border-bottom: 2px solid transparent;  created a invisible border */
    padding: 10px;
}
.navbar-right a:hover,
.navbar-right a:active {
  color: #facd9d;
    transform: scale(0.95);
    transition: transform .5s;
     transition: color 0.3s;
}


.bookin-video { z-index: 10; }
/* Sticky Navigation */

.sticky
{
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 9999;  /* defines vertical stacking of elements */
}

.sticky .navbar-right a:link,
.sticky .navbar-right a:visited
{
    color: #fff;
    padding: 18px 0;
}

.sticky .pause { display: none; }
.sticky .volume { display: none; }
.sticky .logo-black { display: block; }

.sticky navbar-right {  margin-top: 18px; }

.sticky ion-icon {color: #555; }



/* Mobile Navigation */
.no-sound, .play, .mobile-nav-icon
{
    float: right;
    margin-top: 20px;
    cursor: pointer;
    /* display: none; */
    display: block;
    margin-right: 40px;
    
}

.no-sound ion-icon, .play ion-icon, .mobile-nav-icon ion-icon 
{
    font-size: 200%;
    color: rgba(255, 255, 255, 0.9);
}
.no-sound ion-icon:hover, .play ion-icon:hover
{
    font-size: 200%;
    color: #fff;
    transition: color 0.5s;
}

.mobile-nav-icon ion-icon:hover
{
    font-size: 200%;
    color: #f5cfa6;
    transition: color 0.3s;
}

.socials ion-icon { margin-left: 20px; color: #fff;  }
    
.socials { margin-left: 60px;
}

.socials-main-logo { opacity: 0; }
.scroll-down ion-icon
{
    color: #fff;
     --ionicon-stroke-width: 16px;
    font-size: 32px; 
}
/* ---------------------------------------------------------------------------------------------------------- */

/* ---------------------------------------------------------------------------------------------------------- */
.showcase {
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	padding: 0 20px;
}

.content h1 {
    font-weight: 500;
    letter-spacing: 5px;
    line-height: 1.2px;
    color: rgba(255, 255, 255, 0.4)
}
.content h3 { letter-spacing: 2px;}

.video-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.video-container video {
	min-width: 100%;
	min-height: 100%;
    position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	object-fit: cover;
}

.video-container:after {
	content: '';
	z-index: 1;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	background: rgba(255, 255, 255, 0);
	position: absolute;
}

.content {
	z-index: 2;
    position: absolute;
    top: 90%;
}

.btn {
	display: inline-block;
	padding: 10px 30px;
	background: #3a4052;
	color: #fff;
	border-radius: 100px;
	border: solid #fff 1px;
	margin-top: 25px;
	opacity: 0.7;
    box-shadow: 0px, 4px, 2px, #5aa5cc;
}

.btn:hover {
	transform: scale(0.90);
    transition: transform 0.5s;
}


/* ==================================================================================================== */
/* ===================================== Booking ============================================= */

.short {text-align: center; }

.booking
{
    background: #fff;  /* fallback for old browsers */
    background-position: center; /* centered the background image */
    background-attachment: fixed;
    text-align: center;
    padding-top: 0px;
    margin-top: 80px; 
}

.services h1 
{
    color: #555;
    font-weight: 300;
    text-align: center;
}

.booking-p  { text-align: center;
letter-spacing: .2px;
line-height: 150%;}

.booking a { text-align: center; }


/* ===================================== Section Welcome ============================================= */
.nic-photo
{
    border-radius: 5%;
    height: 400px;
}
.about-me h2 {margin-top: 50px;}
.long-copy
{
    line-height: 160%;
    text-align: center;
    color: #000000;
    font-weight: 400;
}

.welcome 
{
    background: #fff;  /* fallback for old browsers */
    background-size: cover; /* set background to see whole img */
    background-position: center; /* centered the background image */
    background-attachment: fixed;
    padding-top: 0px;
}


/* ===================================== Lessons and Songs ============================================= */
.part-two {
    max-width: 1200px;
   /*  margin: 0 auto; -- is same as margin: 0 auto 0 auto; -- */
}

.short { margin-bottom: 20px; }

.box 
{ 
    margin-top: 20px;
    box-shadow: 0 -5px 2px #848484; /* x-axis, y-axis, blur, color */
    border-radius: 10px;
    background-color: #fff;
    transition: box-shadow 5s;
 }

.box:hover{
    box-shadow: 0 -2px 2px #848484; /* x-axis, y-axis, blur, color */
    transition: box-shadow 5s;
}


.collabs h3 {
    text-align: center;
}

.two-part {
    padding-top: 0px;
    background: #fff;  /* fallback for old browsers */
    background-size: cover; /* set background to see whole img */
    background-position: center; /* centered the background image */
}

.showcase-song {
    
    padding: 0px 3%;
    background: #fff;  /* fallback for old browsers */
    background-size: cover; /* set background to see whole img */
    background-position: center; /* centered the background image */
    background-attachment: fixed;
    text-align: center;
}

.song div { padding: 0; }

.showcase-song audio
{ 
    margin: 2%;
    align-content: center;
}

.two-part ion-icon
{
    display: block;
    color: #c40404;
    margin-bottom: 10px;
    font-size: 275%;
    --ionicon-stroke-width: 20px;
}
.sample-song h3 { text-align: center; }


/* ===================================== Performanes ============================================= */
.recent { align-content: center; }

.performances 
{
   background: #FFF;  /* fallback for old browsers */
   background-size: cover; /* set background to see whole img */
   background-position: center; /* centered the background image */
    padding-top: 0px;
    margin-top: 50px;
}

.iframe-container{
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; 
  height: 0;
}
.iframe-container iframe{
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
} 


/* ===================================== Contact ============================================= */
.form-wrap-test
{
    background: #ECE9E6;  /* fallback for old browsers */
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.8), rgba(245, 245, 245, 0.8)), url(img/de-an-sun-b57RqS-nQ1c-unsplash-min.jpg); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background-size: cover; /* set background to see whole img */
    background-position: center; /* centered the background image */
    background-attachment: fixed;
    border-radius:50px;
    padding: 2%;
}

.section-form { padding-top: 0px; 
    margin-top: -20px; }

.contact-form
{
    width: 70%;
    margin: 0 auto;  
}

.testing { margin-left: 20%; }

input[type=text],input[type=email], select, textarea  /* [] selects all input elements with that type inside */
{
    width: 100%;
    padding: 7px;
    border-radius: 3px;
    border: 1px solid #ccc;
}

textarea { height: 100px; }

input[type=checkbox] { margin: 10px 5px 10px 0; }

*:focus { outline: none; }

.form-messages
{
    width: 70%;
    margin: 0 auto;
    padding: 10px;
    margin-bottom: 20px;
}
/* ===================================== Footer ============================================= */
footer
{
    background-color: #333;
    padding: 30px;
    font-size: 80%;
}

.social-links { list-style: none; }

.social-links li
{
    display: inline-block;
    margin-right: 20px;
}

.social-links li:last-child
{
   margin-right: 0; 
}

.social-links li a:link,
.social-links li a:visited
{
    text-decoration: none;
    border: 0;
    color: #888;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}

footer p 
{
    color: #888;
    text-align: center;
    margin-top: 20px;
}

.social-links li a:link,
.social-links li a:visited
{
    font-size: 200%;
}

/* to style each icon individaually had to class them and double class seclect */
.social-links .twit ion-icon:hover
{
    color: #00aced;
}

.social-links .inst ion-icon:hover
{
    color: #fd1d1d;
}
.social-links .face ion-icon:hover
{
    color: #4267B2;
}

.social-links ion-icon
{  transition: color .5s; }

.logowhite 
{ 
    height: auto;
    width: 150px;
    align-items: center;
    background-position: center;
    background-size: cover;
    overflow: hidden;
    display: block;
    margin-left: auto;
    margin-right: auto;
}


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
