@charset "utf-8";
/* CSS Document */

/* This is all the fonts */

@font-face{
	font-family: heading;
	src:url("heading.ttf")
}

@font-face{
	font-family: para;
	src:url("para.ttf");
}

/* This is the general things */

html {
	scroll-padding-top:100px;
	scroll-behavior: smooth;
}

* {
	box-sizing: border-box; 
	padding: 0;				
	margin: 0;
}

p{
	font-family: para;
	font-size: 1em;
}


/* This is the header */

.header{
	min-height: 100px;
	background-color: #7e93ba;
	position: sticky;
	z-index: 100;
	top: 0;
	left: 0;
}

.navi {
	display: flex;
	list-style: none;
	justify-content: center;
	align-content: center;
	align-items: center;
	padding-top: 1%;
	gap: 8%;
	font-family: heading;
	font-size: 2em;
}


.logo{
	max-height: 80px;
	height: auto;
	margin: 0;
	padding: 0;
}

.navi a:link {
	color: #1B2F55;
	text-decoration: none;
	
}

.navi a:hover {
	color: black;
	border-bottom: 2px solid #284377;
	padding-bottom: 2%;
	transition: 0.3s ease;
	
}

/* This is the bg vid (home area) */

#home{
	min-height: 538px;
}

.bgvid{
  height: 120vh;
  width: 98.9vw;
  object-fit: cover;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  background: repeat;
}

.heading > h1{
  color: white;
  font-family: heading;
  text-align: center;
  font-size: 5em;
  padding-top: 16%;
  font-weight: bold;
}

.heading > h3{
  font-family: heading;
  font-size: 1.6em;
  text-align: center;
  background-color: white;
  padding: 20px;
  margin: 0 12%;
  opacity: 0.7;
}

/* This is the intro section */

#introduction{
	background: #92adbe;
	padding: 3% 0;
	max-height: 280vh;
}

.intro{
  display: flex;
	padding-left: 8%;
}

.inpic{
	width: 350px;
	margin-left: 70%;
	padding-top: 10%;
}

.inheading {
	font-family: heading;
	font-size: 3em;
	padding-top: 15%;
	margin-left: 30%;
}

.inp{
	width: 70%;
	padding-left: 30%;
	padding-top: 5%;
}

.facts{
	display: flex;
	padding-top: 3%;
	text-align: center;
	align-content: center;
	gap: 10%;
	padding-left: 24%;
	margin-bottom: 50px;
		
}
.f{
	border: solid 3px #284377;
	padding: 1%;
}

.numbers{
	font-family: heading;
	font-size: 2em;
}

.info{
	font-family: para;
	font-size: 1.2em;
}

.purchase-album{
	background-image: url("Images/albumbg-2.png");
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 100vh;
	display: flex;
}

.getup{
	width: 140%;
	padding-left: 25%;
	padding-top: 26%;
	
}

.alinfo{
	font-family: heading;
	font-size: 3.5em;
	color: white;
	width: 80%;
	padding-left: 40%;
	padding-top: 22%;
	padding-bottom: 0.5%;
}

.button{
	font-family: para;
	margin-left: 40%;
	border: #284377;
	padding: 0.8%;
	background-color: #F8C8DC;
	color: black;
	transition-duration: 0.4s;
	font-size: 20px;
	font-weight: bold;
}

.button:hover {
	background-color: black;
	color: #F8C8DC;
	box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}

/* This is the about secton */

#about {
	background: #92adbe;
	padding-top: 2%;
}

.abtheading {
	font-family: heading;
	font-size: 3em;
	padding-left: 8%;
}

.bio-1{
	display: flex;
}

.bio-left1{
	max-width: 50%;
	padding-left: 17%;
	padding-top: 2%;
}

.abtsec1{
	width: 100%;
	padding-left: 32%;
}

.bio-2{
	display: flex;
}

.abtsec2{
	width: 110%;
	margin-top: 30px;
	padding-left: 47%;
}

.bio-right2{
	max-width: 50%;
	margin-top: 60px;
	padding-left: 17%;
}

.mpheading{
	font-family: heading;
	font-size: 1.5em;
	color: white;
	text-align: center;
	padding-right: 3%;
	text-decoration: underline;
	padding-top: 4%;
}

.profiles {
  height: 500px;
  margin: auto;
  display: grid;
  grid-template-rows: 500px 100px;
  grid-template-columns: 1fr 30px 30px 30px 30px 30px 1fr;
  align-items: center;
  justify-items: center;
	padding-right: 100px;
	z-index: 100;
}

main#carousel {
  grid-row: 1 / 2;
  grid-column: 1 / 8;
  width: 50vw;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 600px;
  --items: 5;
  --middle: 3;
  --position: 1;
  pointer-events: none;
}

div.item {
  position: absolute;
  width: 300px;
  height: 400px;
  background-color: coral;
  --r: calc(var(--position) - var(--offset));
  --abs: max(calc(var(--r) * -1), var(--r));
  transition: all 0.25s linear;
  transform: rotateY(calc(-10deg * var(--r)))
    translateX(calc(-300px * var(--r)));
  z-index: calc((var(--position) - var(--abs)));
}

div.item:nth-of-type(1) {
  --offset: 1;
  background-color: #90f1ef;
}
div.item:nth-of-type(2) {
  --offset: 2;
  background-color: #ff70a6;
}
div.item:nth-of-type(3) {
  --offset: 3;
  background-color: #ff9770;
}
div.item:nth-of-type(4) {
  --offset: 4;
  background-color: #ffd670;
}
div.item:nth-of-type(5) {
  --offset: 5;
  background-color: #e9ff70;
}

input:nth-of-type(1) {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}
input:nth-of-type(1):checked ~ main#carousel {
  --position: 1;
}

input:nth-of-type(2) {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
}
input:nth-of-type(2):checked ~ main#carousel {
  --position: 2;
}

input:nth-of-type(3) {
  grid-column: 4 /5;
  grid-row: 2 / 3;
}
input:nth-of-type(3):checked ~ main#carousel {
  --position: 3;
}

input:nth-of-type(4) {
  grid-column: 5 / 6;
  grid-row: 2 / 3;
}
input:nth-of-type(4):checked ~ main#carousel {
  --position: 4;
}

input:nth-of-type(5) {
  grid-column: 6 / 7;
  grid-row: 2 / 3;
}
input:nth-of-type(5):checked ~ main#carousel {
  --position: 5;
}

.albumheading{
	font-family: heading;
	font-size: 1.5em;
	color: white;
	text-align: center;
	text-decoration: underline;
	padding-top: 8%;
}

.album{
	display: flex;
	align-content: center;
	text-align: center;
	gap: 10%;
	padding-top: 3%;
	padding-left: 19%;
	min-height: 40vh;
}

.albumpic{
	width: 200px;
}

/* This is the gallery secton */
.galheading {
	font-family: heading;
	font-size: 3em;
	padding-left: 8%;
	padding-top: 5%;
}

.gallery-1{
	margin-left: 35%; 
	margin-top: 3%;
}

#gallery {
  margin: 0;
  min-height: 100vh;
  display: grid;
  background: #92adbe;
	padding-bottom: 3%;
}

.gallery-1 {
  --s: 150px; /* control the size */
  --g: 10px;  /* control the gap */
  --f: 1.5;   /* control the scale factor */
  
  display: grid;
  gap: var(--g);
  width: calc(3*var(--s) + 2*var(--g));
  aspect-ratio: 1;
  grid-template-columns: repeat(5,auto);
}

.gallery-1 > img {
  width: 0;
  height: 0;
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
  cursor: pointer;
  filter: grayscale(80%);
  transition: .35s linear;
}

.gallery-1 img:hover{
  filter: grayscale(0);
  width:  calc(var(--s)*var(--f));
  height: calc(var(--s)*var(--f));
}

.videos{
	align-content: center;
	padding-left: 32%;
	width: 560px;
	height: 315px;
}

.vidheading{
	font-family: heading;
	font-size: 1.5em;
	color: white;
	text-align: center;
	text-decoration: underline;
	padding-bottom: 2%;
	padding-top: 2%;
}

/* This is the socials secton */
#socials{
	background-color: #4a5f90;
	min-height: 100px;
	padding-top: 2.5%;
}

.soheading {
	font-family: heading;
	font-size: 3em;
	padding-left: 8%;
	padding-bottom: 3%;
}

textarea {
    resize: none;
}

.text {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  white-space: nowrap;
}

@charset "UTF-8";

.svg-inline--fa {
  vertical-align: -0.200em;
}

.rounded-social-buttons {
  text-align: center;
	margin-top: -50px;
}

.rounded-social-buttons .social-button {
  display: inline-block;
  position: relative;
  cursor: pointer;
  width: 3.125rem;
  height: 3.125rem;
  border: 0.125rem solid transparent;
  padding: 0;
  text-decoration: none;
  text-align: center;
  color: #fefefe;
  font-size: 1.5625rem;
  font-weight: normal;
  line-height: 2em;
  border-radius: 1.6875rem;
  transition: all 0.5s ease;
  margin-right: 0.25rem;
  margin-bottom: 0.25rem;
}

.rounded-social-buttons .social-button:hover, .rounded-social-buttons .social-button:focus {
  -webkit-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
          transform: rotate(360deg);
}

.rounded-social-buttons .fa-twitter, .fa-facebook-f, .fa-tiktok, .fa-youtube, .fa-instagram {
  font-size: 25px;
}

.rounded-social-buttons .social-button.facebook {
  background: #3b5998;
}

.rounded-social-buttons .social-button.facebook:hover, .rounded-social-buttons .social-button.facebook:focus {
  color: #3b5998;
  background: #fefefe;
  border-color: #3b5998;
}

.rounded-social-buttons .social-button.twitter {
  background: #55acee;
}

.rounded-social-buttons .social-button.twitter:hover, .rounded-social-buttons .social-button.twitter:focus {
  color: #55acee;
  background: #fefefe;
  border-color: #55acee;
}

.rounded-social-buttons .social-button.tiktok {
  background: #000000;
}

.rounded-social-buttons .social-button.tiktok:hover, .rounded-social-buttons .social-button.tiktok:focus {
  color: #000000;
  background: #fefefe;
  border-color: #000000;
}

.rounded-social-buttons .social-button.youtube {
  background: #bb0000;
}

.rounded-social-buttons .social-button.youtube:hover, .rounded-social-buttons .social-button.youtube:focus {
  color: #bb0000;
  background: #fefefe;
  border-color: #bb0000;
}

.rounded-social-buttons .social-button.instagram {
  background: #125688;
}

.rounded-social-buttons .social-button.instagram:hover, .rounded-social-buttons .social-button.instagram:focus {
  color: #125688;
  background: #fefefe;
  border-color: #125688;
}

.banner{
	padding-top: 2%;
	margin-bottom: -20px;
}
.ban{
	width: 100px;
}

/* This is the mobile responsive codes */
@media (max-width: 700px) {
	
/* This is the header */
	.header{
		min-height: 30px;
	}
	
	.navi{
		font-size: 0.7em;
	}
	
	.logo{
		width: 100%;
	}
	
/* This is the bg vid (home area) */
	#background-video { display: none; }
    body {
      background: url("Images/bgvid.mp4") repeat;
      background-size: cover;
    }
	
	#home{
	min-height: 150px;
}
	
	.bgvid{
  		height: 150px;
  		width: 320px;
		position: relative;
	}
	
	.heading > h1{
		font-size: 1.5em;
		margin-top: -170px;
	}
	
	.heading > h3{
		font-size: 0.7em;
		padding: 5%;
	}
	
/* This is the intro section */

	.inpic{
		width: 130px;
		margin-left: -0.3%;
		margin-top: 70px;
	}
	
	.inheading{
		font-size: 1.5em;
		margin-left: -0.6px;
	}

	.inp{
		font-size: 0.7em;
		min-width: 100%;
		padding-left: 1%;
	}
	
	.facts{
	display: block;
	padding-top: 5%;
	gap: 5%;
	padding-right: 20%;
	}
	
	.numbers{
	font-size: 1.8em;
}

	.info{
	font-size: 1em;
}
	.f{
		margin-bottom: 10%;
	}
	
	.purchase-album{
	background-image: url("Images/albumbg-2.png");
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 80px;
	min-width: 50px;
}
	
	.getup{
		width: 150px;
	}
	
	.alinfo{
		font-size: 1.5em;
		margin-left: -25%;
		width: 120%;
	}
	
	.button{
		font-size: 10px;
		transition-duration: 0.4s;
	}
	
	.button:hover {
	background-color: black;
	color: #F8C8DC;
	box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}
	
/* This is the about section */
	
	#about{
		min-height: 1580px;
	}
	
.abtheading{
		font-size: 1.5em;
	}	
	
	.abtsec1{
		width: 108%;
		margin-left: -25px;
		margin-top: 60px;
	}
	
	.bio-left1{
		font-size: 0.7em;
		min-width: 60%;
		margin-left: -35px;
	}
	
	.abtsec2{
		width: 120%;
		margin-top: 80px;
		padding-left: 10%;
	}
	
	.bio-right2{
		font-size: 0.7em;
		min-width: 68%;
		text-align: right;
		margin-top: -1px;
		padding-right: 5%;
	}
	
	.mpheading{
		font-size: 1em;
		padding-left: 4%;
		margin-top: 3%;
	}
	
.albumheading{
		font-size: 1.5em;
		margin-left: -0.6px;
	}	
	
	.album{
		display: block;
	}
	
	.albumpic{
		width: 100px;
	}
	
	.album p{
		font-size: 0.7em;
	}
	
	.albums{
		padding-bottom: 10%;
		padding-right: 20%;
	}

	
/* This is the gallery section */
	.galheading{
		font-size: 1.5em;
	}
	
	.gallery-1{
		margin-left: 35px;
	}
	
	.gallery-1 {
  --s: 80px; /* control the size */
  --g: 10px;  /* control the gap */
  --f: 0.6;   /* control the scale factor */
  
  display: grid;
  gap: var(--g);
  width: calc(3*var(--s) + 2*var(--g));
  aspect-ratio: 1;
  grid-template-columns: repeat(5,auto);
}

.gallery-1 > img {
  width: 0;
  height: 0;
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
  cursor: pointer;
  filter: grayscale(80%);
  transition: .35s linear;
}

.gallery-1 img:hover{
  filter: grayscale(0);
  width:  calc(var(--s)*var(--f));
  height: calc(var(--s)*var(--f));
}
	
	.vidheading{
		font-size: 1em;
		margin-left: -0.6px;
		margin-top: 3%;
	}	
	
	.videos{
		width: 360px;
		height: 180px;
		margin-left: -80px;
}
	
/* This is the Socials section */
	.soheading{
		font-size: 1.5em;
		padding-top: 1%;
	}
	
	.rounded-social-buttons{
		margin-top: 10px;
		margin-right: 17%;
	}
	
	#socials{
		min-width: 400px;
	}
	
	.ban{
		width: 10%;
	}
	
	
	
}
	

	
	
	
	
@viewport {
  width: device-width ;
  zoom: 1.0 ;
}