@charset "utf-8";
/* CSS Document */

* {
	box-sizing: border-box;
}

html{
	scroll-behavior:smooth;
	scroll-padding-top: 120px;
}

body {
    animation: fadeInAnimation ease 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Set initial styling for the element */
.my-element {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 5s ease-in-out;
}

/* Add a class to the element to trigger the animation */
.my-element.show {
  opacity: 1;
  transform: translateY(0);
}

body {
	padding:0;
	margin: 0;
	width: 100%;
	min-height: 100vh;
	overflow-x: hidden;
	background-color: black;
	background-image: url("images/background.png");
	background-size: cover;
	background-attachment: fixed;
}

h1, h2{
  font-family: "Black Han Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}

h3{
  font-family: "Tilt Warp", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "XROT" 0,
    "YROT" 0;
}

p, form{
  font-family: "Palanquin Dark", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: white;
  font-size: 1.2em;
}

li{
  font-family: "Dongle", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.container{
	min-width: 100%;
	position: relative;
}

.heading{
	color: white;
	text-align: center;
	font-size: 4em;
}

.purple{
	color:#D0A0FE;
	text-align: center;
	font-size: 4em;
}

.heading2{
	color: black;
	align-items: center;	
}

iframe{
	width: 1120px; 
	height: 630px;
}

#joinfanclub{
	color: black;
	background-color: #D0A0FE;
	padding: 10px 10px 45px 15px;
	border-radius: 10px;
	text-align: center;
	width: 100px;
	height: 40px;
	font-weight: 550;
	margin-bottom: 10px;
}

#joinfanclub:hover {
	color: #ACFFFC;
	padding-bottom: 50px;
	transition: 0.3s ease;
	font-size: 1.1em;
}

li{
	list-style: none;
}

a{
	text-decoration: none;
}

header{
	position: sticky;
	top:0;
	left:0;
	margin-right: 10px;
	z-index: 9999;
	min-width: 100%;
	box-shadow: 0 4px 8px rgba(0,0,0,0.30);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
	z-index: 9999;
	background-color: rgba(0,0,0,0.70);
}

.hamburger {
    display: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: white;
}

.nav-menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
	gap: 0;
	margin-top: 2%;
	margin-right: 1%;
}

.nav-item {
    margin-left: 3rem;
	color: white;
	font-size: 1.8em;
}

.nav-link{
    font-size: 1.8rem;
    font-weight: 400;
    color: white;
}

.nav-menu a:link{
	color: white;
	text-decoration: none;
	font-size: 1em;
}

.nav-menu a:hover{
	color: #ACFFFC;
	border-bottom: 2px solid #D0A0FE;
	transition: 0.3s ease;
	font-size: 1.1em;
}

.nav-menu a:visited{
	color: white;
}

.nav-logo img{
    fheight: 70px;
}


/*Home*/
#home{
	width:100%;
}
.carousel-inner img{
	width: 100%;
}

.carousel-inner .carousel-item {
  transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
}

/*Introduction*/
#introduction{
	margin-top: 7%;
}

.intro{
	color: white;
}

.intro1{
	color: white;
	font-size: 5em
}

.container-intro{
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
}

.intro-left{
	width:45%;
	display: flex;
	justify-content: center;
}

.intro-right{
	width:45%;
}

.container-education{
	margin-top: 7%;
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
}

.education-left{
	width:47%;
}

.education-right{
	width:30%;
	display: flex;
	justify-content: flex-end;
}

img[alt="Karina"] {
	border-radius: 25px;
	width: 50%;
}


img[alt="Karina1"] {
	border-radius: 25px;
	width: 70%;
}

/*Gallery*/
#gallery{
	margin-top: 7%;
}

.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

.column {
  flex: 25%;
  max-width: 50%;
  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}

.column img:hover{
	background-color: rgba(146,146,146,0.84);
	padding: 20px;
	transition: 0.5s ease;
	box-shadow: 0 0 50px 20px rgba(146,146,146,0.84);
}

/*Latest Mv*/
#mv{
	margin-top: 7%;
}

/*Albums*/
#albums{
	margin-top: 7%;
}

.slide p{
	margin-right: 6%;
}

.slider {
	margin-top: 3%;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.5s ease;
	align-items: center;
    text-align: center;
}

.slides img {
    width: 300px;  
    height: auto;
    margin-right: 20px; 
    border-radius: 10px; 
}

.slides img:last-child {
    margin-right: 0; 
}

.prev,.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 20px 15px;
    border: none;
    cursor: pointer;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

.audio-player {
    margin-top: 10px; 
	margin-bottom: 20px;
	margin-right: 20px;
}


/*Instagram*/
#instagram{
	margin-top: 7%;
}

.container-instagram{
	margin-top: 5%;
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
}

.instagram-left{
	width:37%;
	display: flex;
	justify-content: center;
}

.instagram-middle{
	width:10%;
}

.instagram-right{
	margin-left: 3%;
	width: 30%;
	color: white;
}

.instagram-right a:link, a:visited{
	color: white;
	font-size: 2em;
	text-decoration: none;
}

.instagram-right a:hover{
	color: #ACFFFC;
	text-decoration: none;
}

img[alt="instagram"] {
	border-radius: 15px;
	width: 60%;
}

#insta{
	margin-top: 5%;
}

.banner1{
	color: black;
	width: 100%;
	height: 40px;
	text-align: center;
	padding-top: 3px;
	background-color: #ACFFFC; 
}

.igphotos{
	margin-left: 10%;
	margin-top: 7%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-content: center;
	align-items: center;
}

.igphotos img{
	border-radius: 15px;
	width: 70%;
}

.igphotos img:hover{
	transition: 0.5s ease;
	box-shadow: 0 0 50px 20px rgba(146,146,146,0.84);
}

/*Subscription*/
#subscription{
	margin-top: 7%;
}

.container-subscription{
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
}

.subscription-left{
	width:35%;
	display: flex;
	justify-content: center;
}

.subscription-right{
	width:45%;
}

img[alt="karinasubscription"] {
	width: 80%;
}

form{
	color: black;
	background-color: #D0A0FE;
	border-radius: 25px;
	height: 500px;
	padding: 60px 80px 80px 80px;
	box-shadow: 0 0 50px 20px rgba(146,146,146,0.84);
}

input{
	border-radius: 12px;
	border-color: white;
	width:100%;
	height: 50px;
}

label{
	color: black;
	font-size: 1.5em;
	margin-bottom: 3%;
}

#purple{
	text-align: left;
	margin-bottom: 5%;
}

#emailaddress{
	margin-top: 7%;
}

.button{
	margin-top: 7%;
	display: flex;
	justify-content: space-around;
}

#buttons{
	color: #D0A0FE;
	background-color: black; 
	border-radius: 25px;
	padding: 20px 40px;
	text-align: center;
	font-size: 1.5em;
}

.buttons1{
	color: black;
	background-color: #ACFFFC;
	border-color: #ACFFFC;
	border-radius: 25px;
	padding: 20px 40px;
	text-align: center;
	font-size: 1.5em;
}

#buttons{
	color: #D0A0FE;
	text-decoration: none;
}

.buttons1 a{
	color: black;
	text-decoration: none;
}

#buttons:hover{
	font-size: 1.6em;
	transition: 0.3s ease;
	padding: 23px 43px;
}

.buttons1 a:hover{
	font-size: 1.1em;
	transition: 0.3s ease;
}

.buttons1 a:visited{
	color: black;
}

#modalclose{
	background-color: #D0A0FE;
}

.banner2{
	color: black;
	width: 100%;
	height: 40px;
	text-align: center;
	padding-top: 3px;
	background-color: #ACFFFC; 
}

/*Footer*/
.container-footer{
	padding-top: 2%;
	padding-bottom: 2%;
	background-color: #D0A0FE;
}

.footer-up{
	display: flex;
	justify-content: center;
	margin-bottom: 2%;
}

.footer-down{
	display: flex;
	justify-content: center;
	gap:1%;
}


@media (max-width: 1120px) { 
	

#joinfanclub{
	color: black;
	background-color: #D0A0FE;
	padding-left: 20%;
	padding-right: 20%;
	border-radius: 20px;
	font-weight: 500;
	}

#joinfanclub:hover {
	color: aqua; 
	border: 3px solid #D0A0FE;
	transition: 0.3s ease;
	font-size: 1.5em;
	}
	
	header{
		background-color: rgba(0,0,0,0.70);
		box-shadow: 0 4px 8px rgba(0,0,0,0.30);
	}
	
	.nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: rgba(0,0,0,0.70);
        width: 100%;
        border-radius: 10px;
        text-align: center;
        transition: 0.3s;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 2.5rem 0;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }
	
	.nav-logo img{
		height:65px;
	}
	
	.column {
    flex: 30%;
    max-width: 50%;
  }
	
	.intro{
	color: white;
	font-size: 2em;
}

.intro1{
	color: white;
	font-size: 5em;
	margin-bottom: 0;
}

.container-intro{
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
}

.intro-left{
	width:37%;
	margin-right: 2%;
}

.intro-right{
	width:55%;
	font-size: 0.8em;
}

#education{		
	margin-top: 5%;
}	
	
.container-education{
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
}

.education-left{
	width:47%;
	font-size: 0.8em;
	margin-right: 5%;
}

.education-right{
	width:40%;
	display: flex;
	justify-content: center;
}

img[alt="Karina"] {
	border-radius: 25px;
	width: 90%;
}
img[alt="Karina1"] {
	border-radius: 25px;
	width: 90%;
}

.purple{
	font-size: 4em;
}

.heading{
	font-size: 4em;
}
	
	iframe{
		width: 560px;
		height: 315px;

}

.slider {
	margin-top: 3%;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.5s ease;
	align-items: center;
    text-align: center;
}

.slides img {
    width: 300px;  
    height: auto;
    margin-right: 20px; 
    border-radius: 10px; 
}

.slides img:last-child {
    margin-right: 0; 
}

.slide p{
	margin-right: 6%;
}

.instagram-left{
	width:37%;
	display: flex;
	justify-content: center;
}

.instagram-middle{
	width:8%;
}

.instagram-right{
	margin-left: 3%;
	width: 30%;
	color: white;
}

img[alt="instagram"] {
	border-radius: 15px;
	width: 60%;
}

.instagram-right a:link, a:visited{
	color: white;
	font-size: 1em;
	text-decoration: none;
}

.igphotos img{
	border-radius: 5px;
}

.subscription-left{
	width:40%;
	display: flex;
	justify-content: center;
}

.subscription-right{
	width:50%;
}

img[alt="karinasubscription"] {
	width: 100%;
}

form{
	color: black;
	background-color: #D0A0FE;
	border-radius: 25px;
	height: 300px;
	padding: 30px 45px 40px 45px;
	box-shadow: 0 0 40px 20px rgba(146,146,146,0.84);
}

input{
	border-radius: 12px;
	border-color: white;
	width:100%;
	height: 30px;
}

label{
	color: black;
	font-size: 1em;
	margin-bottom: 3%;
}

#purple{
	text-align: left;
	margin-bottom: 5%;
}

.button{
	margin-top: 7%;
	display: flex;
	justify-content: space-around;
}

#buttons{
	color: #D0A0FE;
	background-color: black; 
	border-radius: 15px;
	padding: 10px 20px;
	text-align: center;
	font-size: 1em;
}

.buttons1{
	color: black;
	background-color: #ACFFFC;
	border-color: #ACFFFC;
	border-radius: 15px;
	padding: 10px 20px;
	text-align: center;
	font-size: 1em;
}

#buttons{
	color: #D0A0FE;
	text-decoration: none;
}

.buttons1 a{
	color: black;
	text-decoration: none;
}

#buttons:hover{
	font-size: 1.1em;
	transition: 0.3s ease;
}

.buttons1 a:hover{
	font-size: 1.1em;
	transition: 0.3s ease;
}

.footer-up img{
	width: 10%;
}
	
}

@media (max-width: 430px){

#joinfanclub{
	color: black;
	background-color: #D0A0FE;
	padding-left: 20%;
	padding-right: 20%;
	border-radius: 20px;
	font-weight: 500;
	margin-bottom: 30px;
	}

#joinfanclub:hover {
	color: aqua; 
	border: 3px solid #D0A0FE;
	transition: 0.3s ease;
	font-size: 1.5em;
	}
	
	header{
		background-color: rgba(0,0,0,0.70);
		box-shadow: 0 4px 8px rgba(0,0,0,0.30);
	}
	
	.nav-menu {
        position: fixed;
        left: -100%;
        top: 40px;
        flex-direction: column;
        background-color: rgba(0,0,0,0.70);
        width: 100%;
        border-radius: 10px;
        text-align: center;
        transition: 0.3s;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1rem 20px 0 0;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }
	
	.bar{
		width: 15px;
		height: 2px;
		margin: 2px auto;
	}
	
	.nav-logo img{
		height:35px;
	}
	
	.intro{
	color: white;
	font-size: 1.5em;
}

.intro1{
	color: white;
	font-size: 3em;
	margin-bottom: 0;
}

.container-intro{
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
}

.intro-left{
	width:35%;
	margin-right: 5%;
}

.intro-right{
	width:55%;
	font-size: 0.4em;
}

#education{		
	margin-top: 5%;
}	
	
.container-education{
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
}

.education-left{
	width:47%;
	font-size: 0.4em;
	margin-right: 5%;
}

.education-right{
	width:40%;
	display: flex;
	justify-content: flex-end;
}

img[alt="Karina"] {
	border-radius: 25px;
	width: 100%;
}
	
img[alt="Karina1"] {
	border-radius: 25px;
	width: 100%;
}
	
.purple{
	font-size: 2em;
}

.heading{
	font-size: 2em;
}
	
	iframe{
		width: 280px;
		height: 157.5px;
	}

.slider {
	margin-top: 3%;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.5s ease;
	align-items: center;
    text-align: center;
}

.slides img {
    width: 300px;  
    height: auto;
    margin-right: 20px; 
    border-radius: 10px; 
}

.slides img:last-child {
    margin-right: 0; 
}

.slide p{
	margin-right: 6%;
}

.instagram-left{
	width:30%;
	display: flex;
	justify-content: flex-start;
	margin-right: 3%;
}

.instagram-middle{
	width:8%;
}

.instagram-right{
	margin-left: 3%;
	width: 30%;
	color: white;
}

img[alt="instagram"] {
	border-radius: 15px;
	width: 100%;
}

.instagram-right a:link, a:visited{
	color: white;
	font-size: 0.6em;
	text-decoration: none;
}

.igphotos img{
	border-radius: 5px;
}

.heading2{
	font-size: 0.9em;
}

.banner1{
	color: black;
	width: 100%;
	height: 20px;
	text-align: center;
	padding-top: 3px;
	background-color: #ACFFFC; 
}

.subscription-left{
	width:40%;
	display: flex;
	justify-content: center;
}

.subscription-right{
	width:50%;
}

img[alt="karinasubscription"] {
	width: 100%;
}

form{
	color: black;
	background-color: #D0A0FE;
	border-radius: 25px;
	height: 150px;
	padding: 10px 25px 20px 25px;
	box-shadow: 0 0 40px 20px rgba(146,146,146,0.84);
	display: flex;
	flex-direction: column;
}

input{
	border-radius: 12px;
	border-color: white;
	width:100%;
	height: 20px;
	position:relative;
}

#fname, #email{
	font-size: 0.4em;
}

#emailaddress{
	margin-top: 10%;
}

label{
	color: black;
	font-size: 0.6em;
}

#purple{
	text-align: left;
	margin-bottom: 3%;
}

.button{
	margin-top: 5%;
	display: flex;
	justify-content: space-around;
}

#buttons{
	color: #D0A0FE;
	background-color: black; 
	border-radius: 15px;
	padding: 0 10px;
	height: 30px;
	text-align: center;
	font-size: 0.5em;
}
	
.buttons1{
	color: black;
	background-color: #ACFFFC;
	border-color: #ACFFFC;
	border-radius: 15px;
	padding: 0 10px;
	text-align: center;
	font-size: 0.5em;
}

.buttons1 a{
	color: black;
	text-decoration: none;
}

#buttons:hover{
	font-size: 0.6em;
	transition: 0.3s ease;
}

.buttons1 a:hover{
	font-size: 1.1em;
	transition: 0.3s ease;
}

.banner2{
	color: black;
	width: 100%;
	height: 20px;
	text-align: center;
	padding-top: 3px;
	background-color: #ACFFFC; 
}

.footer-up img{
	width: 10%;
}
	
.footer-down img{
	width: 20px;
}
}