* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: Arial, Helvetica, sans-serif;
}

.container {
  width: 80%;
  margin-inline: auto;
}

@media (max-width: 992px) {
  .container {
    width: 90%;
  }
}

/*Navbar*/
.navbar {
  padding: 25px;
  background-color: rgb(255, 196, 0);
}
.navbar-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-box .menu {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-left: 100px;
}

.navbar-box .menu li {
  list-style-type: none;
}

.navbar-box .menu li a {
  text-decoration: none;
  color: rgb(104, 104, 104);
}

@media (max-width: 768px) {
  .navbar-box .menu {
    position: fixed;
    align-items: center;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    gap: 40px;
    background-color: rgb(255, 199, 94, 0.5);
    padding: 20px;
    backdrop-filter: blur(10px);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin-left: 0%;
    z-index: 10;
  }
}

.navbar-box {
  justify-content: center;
}

.navbar-box .menu li a {
  color: rgb(0, 0, 223);
  
}

@media (max-width: 475px) {
  .navbar-box .menu {
    gap: 20px;
  }
}

/*Navbar*/

/*Hero*/

.hero {
  background-image: linear-gradient(rgb(255, 187, 61, 0.7), rgb(140, 0, 255, 0.4)),
    url(/2025-01-16.webp);
  width: 100%;

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
  color: white;
  padding-top: 150px;
  padding-bottom: 150px;
}


.hero h1 {
  font-size: 56px;
  margin-bottom: 15px;
  line-height: 1.3;
}

.hero p {
  margin-bottom: 30px;
}

.hero a {
  color: rgb(74, 74, 240);
  text-decoration: none;
  background-color: rgb(255, 196, 0);
  padding: 10px 20px;
  font-size: 20px;
  transition: all 0.3s ease;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.hero a:hover {
  color: rgb(255, 192, 76);
  background-color: rgb(89, 89, 249);
}

/*Hero*/

/*Tentang*/
.tentang{
  width: 100%;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background-color: rgb(140, 0, 255);
}

.tentang-box{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  align-items: center;
  gap: 30px;
}

.tentang-box img{
  position: relative;
  width: 512px;
  height: 512px;
  border-radius: 100%;
  left: -100px;
}
.tentang-box h3{
  margin-left: 210px;
}

.tentang-box h1{
  margin-bottom: 20px;
  font-size: 40px;
  color: white;
  text-align: center;
}
.tentang-box p{
  line-height: 2;
  text-align: justify;
  text-indent: 50px;
  font-size: 17.5px;
  color: white;
}


@media (max-width: 992px){
  .tentang-box{
    grid-template-columns: 1fr;
    text-align: center;
  }
  .tentang-box p{
    text-align: justify;
    text-justify:inter-word ;
    text-indent: 0%;
    padding-bottom: 20px;
  }
  .tentang-box h3{
    margin-left: 0%;
  }
}

@media(max-width:662px){
  .tentang-box img{
    width: 85%;
    height: 60%;
    left: 0%;
    padding-top: 20px;
  }
}
/*Tentang*/

/*Visimisi*/
.visimisi{
  width: 100%;
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.visimisi-box{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  align-items: center;
  gap: 30px;
}

.visimisi-box h1 {
  position: relative;
  margin-bottom: 20px;
  font-size: 40px;
color: black;
left: -500px;
text-align: justify;
}


.visimisi-box p{
  position: relative;
  line-height: 2;
  text-align: justify;
  left: -700px;
  font-size: 17.5px;
}


.visimisi-box img{
   position: relative;
  width: 512px;
  height: 512px;
  border-radius: 10%;
  left: 750px;
}

@media (max-width: 992px){
  .visimisi-box{
    grid-template-columns: 1fr; 
    text-align: center;
  }
  .visimisi-box p{
    text-align: justify;
    text-justify:inter-word;
    padding-bottom: 20px;
    left: 0%;
  }
  .visimisi-box h1{
    left: 0%;
    text-align: center;
  }
 
}

@media(max-width:570px){
  .visimisi-box img{
    width: 85%;
    height: 60%;
    left: 0%;
    padding-top: 20px;
  }
}


/*Visimisi*/

/*Alamat*/

.alamat{
  width: 100%;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background-color: rgb(69, 6, 147);
}

.alamat-box{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  align-items: center;
  gap: 30px;
}

.alamat-box img{
  width: 500px;
  border-radius: 10px;
  gap: 10px;
}

.alamat-box p{
  line-height: 2;
  text-align: justify;
  color: white;
}


.alamat-box h1 {
  margin-bottom: 20px;
  font-size: 40px;
  color: white;
}

@media (max-width: 992px){
  .alamat-box{
    grid-template-columns: 1fr;
    text-align: center;
  }
  .alamat-box p{
    text-align: center;
  }
}

@media(max-width:570px){
  .alamat-box img{
    width: 100%;
  }
}
/*Alamat*/

/*Kontak*/

footer{
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgb(140, 0, 255);
  padding: 30px;
  color:white;
}

footer p span{
  font-weight: bold;
}
footer .social{
  display: flex;
  align-items: center;
  gap: 20px;
}

footer .social a{
  color: white;
  font-size: 28px;

}

@media (max-width: 768px){
footer {
flex-direction: column;
gap: 30px;
}

footer p{
  order: 1;
}
footer .social{
  order: 2;
  padding-bottom: 50px;
}
}
/*Kontak*/

/*Atas*/
.atas{
  background-color: rgb(233, 233, 233);
}
.atas-box{
  display: flex;
  justify-content: space-between;
  align-items: center;
  
}
.atas-box .box{
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: 100px;
}
.atas-box img{
  display: flex;
  position: relative;
  width: 256px;
  height: 144px;
  left: -256px;
  padding: 25px;
 
}
.atas h1{
  position: relative;
  left: -324px;
  font-size: 36px;
  letter-spacing: 5px;
}
@media (max-width: 768px) {
  .atas-box  {
    position: relative;
    left: 100px;
  }
 
}




/*Atas*/

/*Page*/
.page{
  background-image: url(/208c27742fc2de776ae2263c84761902.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 100vh;
   box-shadow: 0 0 50px rgba(10, 47, 168, 0.7);
}
.page-container{
  width: 100%;

}
.page-box{
  background-color: white;
  padding: 30px;
  background-clip: border-box;
  border-radius: 75px;
 box-shadow: 0 0 20px rgba(10, 47, 168, 0.7);
}

.page-box iframe{
  margin-top: 40px;
  border-radius: 25px;
}
.page-box p{
 
  display: block;
  font-size: 18px;
  text-indent: 50px;
  letter-spacing: 0.5px;
  line-height: 1.7;
  font-family: "Poppins", "Open Sans", "Roboto", sans-serif;
  text-align: justify;
}
.page-box a{
   color: rgb(74, 74, 240);
  text-decoration: none;
  background-color: rgb(255, 196, 0);
  padding: 10px 20px;
  font-size: 20px;
  transition: all 0.3s ease;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px; 
  position: relative;
  bottom: 336px;
  left: 476px;
}
.page-box a:hover {
  color: rgb(255, 192, 76);
  background-color: rgb(89, 89, 249);
}
@media (max-width: 768px) {
 .page-box a{
  display: block;
  margin: 30px auto;
  text-align: center;
  position: static;
  font-size: 16px;
  padding: 10px 18px;
 }
 .page-box p{
  
  margin-bottom: 25px;
  text-align: justify;
  text-justify: inter-word;
 }
.page-box iframe {
    position: relative;
    width: 100%;
    max-width: 480px; /* Atur ukuran maksimum agar video tidak terlalu besar */
    margin: 0 auto;   /* Biar tetap di tengah */
    aspect-ratio: 16/9;  /* Menjaga rasio video */
    overflow: hidden;
    border-radius: 15px; /* Opsional: bikin rounded */
    margin-top: 15px;
}

.page-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

}
/*Page*/

