/*declaration font style for case.study*/
@font-face {
	font-family: 'MyCursiveFont';
	src: url('fonts/CedarvilleCursive-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}
/*declaration font style for qwhole body*/
@font-face {
	font-family: 'Single Day';
	src: url('./fonts/SingleDay-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
  }

* {
	font-family: 'Single Day', cursive;
}

html {
  scroll-behavior: smooth;
}

body {
	background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	height: 100vh;
	color: white;
	font-size: 15px;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.navbar-brand {
	font-family: "Brush Script MT", cursive;
}

.custom-navbar {
  background: rgba(0, 0, 0, 0.4); /* semi-transparent black */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease, backdrop-filter 0.3s ease;

}


.navbar .nav-link {
    color: white !important; /* Set the text color to white */
    transition: color 0.3s ease; /* Add a smooth transition for hover effects */
	cursor: pointer;
	font-size: 25px;
}

.navbar .nav-link:hover {
    color: #f0abfc !important; /* Optional: Add a hover effect (e.g., light purple) */
}

.team-member {
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.5s ease-out forwards;
}



.team-member img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
  box-shadow: -20px 10px 55px rgba(0, 0, 0, 0.9);
  transition: transform 0.3s ease;
}

.team-member img:hover {
  transform: scale(1.05);
  box-shadow: -20px 10px 55px rgba(0, 0, 0, 0.9);
}


.img-wrapper {
	position: relative;
	display: inline-block;
  }
  
  .img-wrapper img {
	transition: filter 0.3s ease;
  }
  
  .img-wrapper:hover img {
	filter: blur(2.5px);
	transform: scale(1.05);
	transition: transform 0.3s ease;
  }
  
  .social-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
  }
  
  .img-wrapper:hover .social-overlay {
	opacity: 1;
	pointer-events: auto;
  }
  
  .social-overlay .social-box {
	flex-direction: row;
	gap: 1.5rem;
  }

  .social-box .item svg {
	width: 45px; /* Adjust width of the icon */
	height: 45px; /* Adjust height of the icon */
	transition: width 0.3s ease, height 0.3s ease, transform 0.3s ease, border-radius 0.3s ease; /* Add smooth transition */

  }
  
  .social-box .item svg:hover {
	border-radius: 50%; /* Make the icon fully round */
	width: 60px; /* Increase the width on hover */
	height: 60px; /* Increase the height on hover */
	transform: scale(1.1); /* Slight scale-up effect */
  }
  

.about-description {
	font-size: 18px;
	line-height: 1.6;
	text-align: center;
	color: #f9fafb;
	margin-bottom: 15px;
	opacity: 0;
	transform: translateY(30px);
	animation: fadeUp 1s ease-out forwards;
	animation-delay: 0.3s;
	transition: all 0.3s ease;
  }
  
  .about-description:nth-child(1) {
	animation-delay: 0.3s;
  }
  .about-description:nth-child(2) {
	animation-delay: 0.6s;
  }
  .about-description:nth-child(3) {
	animation-delay: 0.9s;
  }
  
  @keyframes fadeUp {
	to {
	  opacity: 1;
	  transform: translateY(0);
	}
  }

section {
  display: none;
}
section.active {
  display: block;
}




.hamburger {
  display: inline-block;
  cursor: pointer;
  width: 24px;
  height: 18px;
  position: relative;
}

.hamburger span {
  background: white;
  display: block;
  height: 3px;
  width: 100%;
  position: absolute;
  left: 0;
  transition: 0.3s ease;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 7.5px;
}

.hamburger span:nth-child(3) {
  top: 15px;
}

.custom-toggler.open .hamburger span:nth-child(1) {
  transform: rotate(45deg);
  top: 7.5px;
}

.custom-toggler.open .hamburger span:nth-child(2) {
  opacity: 0;
}

.custom-toggler.open .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  top: 7.5px;
}






.cameraa {
	margin-top: 80px;
	height: 250px;
  }
  

.intro-gif {
	margin-bottom: 0;
	padding-bottom: 0;
	margin-top: -90px;
}

.short-text {
	margin-top: -180px;
	padding: 0;
	font-size: 20px;
}

a {
	text-decoration: none;
  }


.pangaran {
	padding-top: 15px;
	font-size: 16px;
}

.papel-sa-mundo {
	font-size: 13px;
	margin-top: -15px;
	font-style: italic;
}


/* From Uiverse.io by adamgiebl */ 
.cssbuttons-io-button {
	background: black;
	color: white;
	font-family: inherit;
	padding: 0.35em;
	padding-left: 1.2em;
	font-size: 17px;
	font-weight: 500;
	border-radius: 0.9em;
	border: none;
	letter-spacing: 0.05em;
	display: flex;
	align-items: center;
	box-shadow: inset 0 0 1.6em -0.6em #714da6;
	overflow: hidden;
	position: relative;
	height: 2.8em;
	padding-right: 3.3em;
	cursor: pointer;
  }
  
.cssbuttons-io-button .icon {
	background: rgb(219, 119, 207);
	margin-left: 1em;
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 2.2em;
	width: 2.2em;
	border-radius: 0.7em;
	box-shadow: 0.1em 0.1em 0.6em 0.2em #7b52b9;
	right: 0.3em;
	transition: all 0.3s;
}
  
.cssbuttons-io-button:hover .icon {
	width: calc(100% - 0.6em);
}
  
.cssbuttons-io-button .icon svg {
	width: 1.1em;
	transition: transform 0.3s;
	color: #7b52b9;
  }
  
.cssbuttons-io-button:hover .icon svg {
	transform: translateX(0.1em);
  }
  
  .cssbuttons-io-button:active .icon {
	transform: scale(0.95);
  }
  






  /* announcement*/


.modal-content {
	background: rgba(255, 255, 255, 0.1); /* semi-transparent white */
	backdrop-filter: blur(15px);          /* blur the background */
	-webkit-backdrop-filter: blur(15px);  /* Safari support */
	border: 1px solid rgba(255, 255, 255, 0.2); /* optional frosty border */
	color: white;                         /* optional, for dark backgrounds */
  }
  

/* Target the actual close icon inside the .btn-close button */
.btn-close span {
	color: red !important; /* Change the X icon color to red */
  }
  
  /* Change color on hover */
.btn-close:hover span {
	color: darkred !important; /* Darker red on hover */
	background-color: transparent; /* Keep background transparent */
}


   /* css for contact sectiion message box glassphormism*/

.glass-card {
	position: relative;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 16px;
	padding: 30px;
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	max-width: 600px;
	animation: shadow-animation 5s linear infinite; /* Add animation to box-shadow */
}
  
  /* Keyframe animation for box-shadow */
  @keyframes shadow-animation {
	0% {
	  box-shadow: -15px 10px 95px rgba(0, 0, 0, 0.9), 0 0 20px #ee7752;
	}
	25% {
	  box-shadow: -20px 10px 95px rgba(0, 0, 0, 0.9), 0 0 20px #e73c7e;
	}
	50% {
	  box-shadow: -20px 10px 95px rgba(0, 0, 0, 0.9), 0 0 20px #23a6d5;
	}
	75% {
	  box-shadow: -20px 10px 95px rgba(0, 0, 0, 0.9), 0 0 20px #23d5ab;
	}
	100% {
	  box-shadow: -20px 10px 95px rgba(0, 0, 0, 0.9), 0 0 20px #ee7752;
	}
  }
  
  
  
  .glass-input {
	background: rgba(255, 255, 255, 0.1);
	color: white;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 10px;
	padding: 10px 15px;
  }
  
  .glass-input::placeholder {
	color: #ccc;
  }
  
  .glass-button {
	background: rgba(255, 255, 255, 0.15);
	color: white;
	border: none;
	padding: 10px 30px;
	border-radius: 8px;
	transition: 0.3s;
  }
  
  .glass-button:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: scale(1.10);
  }

#msg {
	display: none;
	color: white;
}
