*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    list-style: none;
    text-decoration: none;
    scroll-behavior: smooth;
}
:root{
    --bg-color: #b5fdb0;
    --text-color: #000;
    --secound-color: #a09dab;
    --main-color: #f75023;
    --big-font: 5rem;
    --h2-font: 3rem;
    --p-font: 1.1rem;
}
body{
    background:
    linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)),
    url("images/Motif-bali.png");

    background-size: 350px;
    background-repeat: repeat;
    background-position: center;
}
.header {
    position: fixed;
	width: 100%;
	top: 0;
	right: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 30px 18%;

	background-color: #f5e6c8; 
	border-bottom: 4px solid #c98a2e;  

	box-shadow:0 4px 10px rgba(0,0,0,0.08);
}
.navbar{
    padding-top: 8px !important;
	background-color:#f5e6c8 !important;
    border-bottom:4px solid #c98a2e;
    
}
.nav-item{
    margin-left: 40px;
    margin-bottom: 10px;
}
.nav-link{
    color:black !important;
    font-size: 18px !important;
    padding: 0 0 5px 0 !important;
    display: unset !important;
}
.navbar-brand img{
    width: 65px;
}
.navbar-brand p1{
    margin-left: 25px;
    color:black;
    font-size: 25px;
}
.navbar-toggler-icon{
    color: black;
    font-size: 25px !important;
}
.navbar-toggler{
    border: 0 !important;
    outline: none !important;
    padding:initial !important;
}
.nav-link:hover{
    border-bottom: 2px solid #fdfdfd;
}
section{
	padding: 100px 18%;
}
.home{
	min-height: 100vh;
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	align-items: center;
	grid-gap: 4rem;
	position: relative;
	margin-top: 80px;
}
.home::before{
	content:"";
	position:absolute;
	right:80px;
	top:150px;
	width:200px;
	height:200px;
	background:url("images/Motif-bali.png");
	background-size:contain;
	opacity:0.12;
	pointer-events:none;
}
.home-text h1{
	margin-left: 0px;
	font-size: var(--h2-font);
	line-height: 1;
	font-weight: 500;
}
.home-text p1{
	font-size: var(--p-font);
	color: var(--secound-color);
	line-height: 28px;
	margin-bottom: 20px;
}
.home-img img{
	max-width: 130%;
	width: 800px;
	height: auto;
    border-radius: 15px;
	box-shadow: 5px 5px 20px black;
	overflow: hidden;
}
.about{
	min-height: 100vh;
	height: 100%;
	width: 100%;
	background-size: cover;
	background-position: center;
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	align-items: center;
	grid-gap: 4rem;
}
.about-img img{
	width: 100%;
	max-width: 600px;
	height: auto;
	border-radius: 15px;
	box-shadow: 5px 5px 20px black;
}
.about-text h2{
	font-size: var(--h2-font);
	font-weight: 500;
	margin: 10px 0 20px;
	line-height: 1.1;
	font-family: 'Poppins', sans-serif;
}
.about-text p{
	max-width: 550px;
	font-size: var(--p-font);
	color: var(--secound-color);
	line-height: 28px;
    margin: 10px 0 20px;
	font-family: 'Open Sans', sans-serif;
	 text-align: justify;
}
.heading{
	text-align: center;
    
}
.heading h2{
	font-size: var(--h2-font);
	font-weight: 500;
	margin: 7px 120px 20px;
	line-height: 1.1;
}
.card{
	height: auto;
	width: auto;
	margin: 80px;
	box-shadow: 5px 5px 20px black;
	overflow: hidden;
}

.col{
	position: relative;
}
.col img{
	max-width: 100%;
	width: 1000px;
	height: auto;
	object-fit: cover;
	border-radius: 12px;
}
.layer{
	background: transparent;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 12px;
	transition: all .40s;
}
.layer:hover{
	background: linear-gradient(rgba(0,0,0,0.5) 0%, #191919);
}
.layer h3{
	position: absolute;
	width: 50%;
	font-size: 25px;
	font-weight: 500;
	color: var(--bg-color);
	bottom: 0;
	left: 50%;
	transform:translate(-50%, -50%);
	opacity: 0;
	transition: all .40s;
}
.layer:hover h3{
	bottom: 52%;
	opacity: 1;
}

.layer h5{
	position: absolute;
	width: 100%;
	font-size:17px;
	font-weight: 500;
	color: var(--bg-color);
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	opacity: 0;
	transition: all .40s;
}
.layer:hover h5{
	bottom: 48%;
	opacity: 1;
}
.row{
	padding-top: 25px;

}
.col{
	padding-top: 100px ;
}
.profile{
	padding-top: 30px;
}
.identitas h1{
	margin-bottom: 100px;
	margin-top: 80px;
}
.col p1{
	margin-top: 30px;
}
.profilr-img{
	border-radius: 25px;
}
.jabapura{
	padding: 20px;
}
.video-grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    padding: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.video-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.video-card:hover {
    transform: translateY(-8px);
}

video {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
}

.video-info {
    padding: 15px;
}

.video-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}
.button{
	display: grid;
	place-items: center;
}
.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24;
  place-items: center;
}
.footer{
    background:#E9D8B4;
    border-top:4px solid #B47B2A;
    padding:40px 0;
}
.footer h2{
    margin-bottom:10px;
}
.footer p{
    margin:5px 0;
}
.footer iframe{
    display:block;
    margin:20px auto;
}
.card-title{
	color: #000;
}
.card-link{
text-decoration:none;
color:inherit;
display:block;
}
.back-btn{
    display:inline-block;
    margin-top:40px;
    padding:12px 25px;
    background:#f75023;
    color:rgb(39, 45, 242);
    border-radius:8px;
    transition:0.3s;
}

.back-btn:hover{
    background:#d63c10;
}
.button{
    margin-top:40px;
    text-align:center;
}
.back-container{
    margin-top: 30px;
}

.back-btn{
    display: inline-block;
    padding: 10px 18px;
    background-color: #6c63ff;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
}

.back-btn:hover{
    background-color: #574fd6;
}