/* background color */
body {
    background-image: linear-gradient(180deg,white, rgb(173, 255, 173))
}

/*navigation bar*/
.topnav {
    text-align: center;
    background-color: black;
    overflow: hidden;
    top: 0;
    z-index: 100;
    position: sticky;
}
    
.topnav a {
    display: inline-block;
    color: white;
    text-align: center;
    padding: 25px 30px;
    text-decoration: none;
    font-size: 17px;
}
    
.topnav a:hover {
    background-color: white;
    color: black;
}

.topnav .image-button-left{
    float: left;
    padding: 0px 0px;
}

@media screen and (min-width: 768px) {
    .topnav .image-button-left-mobile{
        display: none;
    }
}

.topnav .image-button-left:hover{
    background-color: rgba(255, 255, 255, 0);
}

.topnav .image-button-right{
    float: right;
    padding: 0px 0px;
}

.topnav .image-button-right:hover{
    background-color: rgba(255, 255, 255, 0);
}

/* index.html: gallary*/
.gallary {
    background-color: #33333385;
    overflow: hidden;
    white-space: nowrap;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px; 
}

.gallary img {
    width: 1000px;
    height: 500px;
    object-fit: cover;
    display: none;
}

.gallary img:first-child {
    display: block;
}

/* index.html: westview banner*/
.zoom{
    text-align: center;
    background-color: rgb(240, 240, 240);
    overflow: hidden;
  }

.zoom h1 {
    color: black;
    text-align: center;
    font-size: 60px;
  }

/* index.html: brief intoduction to programs*/

.introduction {
    text-align: center;
    background-color: white;
    overflow: hidden;
    position: relative;
    padding-bottom: 50px;
    padding-top: 50px;
    padding-left: 20px;
    padding-right: 20px;
}

.introduction img{
    text-align: center;
    width: 25px;
    height: 25px;
    padding-top: 50px;
    padding-bottom: 50px;
}

.button {
    transition: transform .2s;
    background-color: rgb(173, 255, 173, 0.5);
    border: none;
    color: black;
    padding-top: 1px;
    padding-bottom: 1px;
    padding-right: 10px;
    padding-left: 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 16px;
  }

.button:hover{
    transform: scale(1.25);
}

.introduction p{
    font-size: large;
}   

/* index.html: about us*/
.about {
    text-align: center; 
    position: relative;
    background-color: white;
    overflow: hidden;
  }
  
.about img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}
  
.content {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(0, 0, 0, 0.5); 
    color: white;
    padding: 30px; 
    width: 500px; 
    height: 415px; 
  }
.about p1 {
    font-size: 20px;
}

/*index.html: download and donate button*/
.downloads {
    background-color: white;
    text-align: center;
    display: flex; 
    justify-content: center; 
    align-items: center;
    padding-bottom: 50px;
}

.stuff {
    background-color: rgb(0, 75, 0); 
    color: white;
    padding: 10px;
    width: 300px; 
    border-radius: 10px;
    margin: 0 10px;
    display: flex; 
    align-items: center;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, .75)
}

.instruction {
    background-color: rgb(226, 255, 205); 
    padding: 10px;
    width: 700px; 
    border-radius: 10px;
    margin: auto;
    display: flex; 
    align-items: center;
	text-align: left;
	font-style:italic;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, .75)
}

.text_container {
    flex: 1;
}

.button_container {
    border: solid white;
    border-radius: 10px;
}

.button_1 {
    background-color: rgb(0, 75, 0);
    color: lightgrey;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
}

.button_1:hover {
    background-color: rgb(100, 255, 100);
}

/* index.html: important notice*/
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
}

/* Style the popup content */
.popup_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    width: 75%; 
    text-align: left;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    color: black
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

/*bottom navigation bar*/
.bottomnav{
    text-align: left;
    position: relative;
    background-color: rgb(60, 60, 60);
    height: 200px;
    overflow: hidden;
}

.content_1 .list_1 {
    position: absolute;
    top: 0 px;
    left: 300px;
    background-color: rgba(0, 0, 0, 0); 
    color: white;
    padding: 30px; 
    width: 500px; 
    height: 415px; 
  }

.content_1 .list_2 {
    position: absolute;
    top: 0 px;
    left: 600px;
    background-color: rgba(0, 0, 0, 0); 
    color: white;
    padding: 30px; 
    width: 500px; 
    height: 415px; 
  }

.bottomnav img{
    float: left;
    width: 200px;
    height: 200px;
}

/* head images */
.head_image {
    background-color: rgb(200,200,200);
    display: flex; 
    align-items: center; 
    font-size: 27px;
    font-family: cursive;
}

.head_image img {
    margin-right: 125px; 
    box-shadow: 0px 5px 10px rgba(0, 0, 0, .5);
}

/* infos */
.info_1 {
    padding-top: 75px;
    padding-bottom: 50px;
    background-color: white;
    display: flex;
    align-items: center;
    font-size: 15px;
    justify-content: space-between;
}

.info-text {
    flex: 1;
    margin-right: 20px;
    margin-left: 125px;
}

.info_1 img {
    width: 20%;
    margin-right: 125px;
}

.info_2 {
    padding-top: 50px;
    padding-bottom: 75px;
    background-color: white;
    display: flex; 
    align-items: center; 
    font-size: 15px;
}

.info_2 img {
    margin-left: 120px;
}

.info-text2 {
    margin-left: 30px;
    margin-right:125px;
}


.news{
    padding: 100px;
    background-color: rgb(225, 225, 225);
    overflow: hidden;
    font-size: 20px;
    text-align: center;
}

.updates {
    background-color: rgb(225, 225, 225);
    border: 2px dotted green;
    padding: 20px; 
    width: 1200px; 
    text-align: left; 
    margin: 0 auto; 
}

/*Lessons.html: coaches*/
.coaches {
    background-color: white;
    text-align: center;
    padding: 20px;
    padding-top: 50px;
    padding-bottom: 100px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px; 
}

.flip-card {
    background-color: white;
    width: 300px;
    height: 300px;
    border: 1px solid #f1f1f1;
    perspective: 1000px;
    margin: 50px auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}



.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}
  
.flip-card:hover .flip-card-inner {
    transform: rotateY(-180deg);
  }

.flip-card-front, .flip-card-back {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  
.flip-card-back {
    background-color: #bbb;
    color: black;
    transform: rotateY(180deg);
  }

/*Pop-up for when they enter page*/
.modal {
    display: none;
    position: fixed;
    top: 20%;
    right: 10px;
    transform: translate(0, -50%); 
    width: 25%;
    z-index: 1;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.75);
}

.modal-content {
    background-color: rgba(0, 0, 0, 0.75);
    margin: 0;
    padding: 20px; 
    text-align: center;
    border-radius: 0;
    color: white;
    font-size: 15px;
}

.close {
    color: white;
    float: right;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}

