@import url('https://fonts.googleapis.com/css2?family=Raleway&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Marcellus+SC&display=swap');

body {
    overflow-x: hidden;
    background-color: black;
}

/* navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 90;
  background-color: black;
  transition: background-color 0.3s ease-in-out;
}

/* desc */
.air-cafe-section {
  background-color: #080808; 
  font-family: "Raleway", sans-serif;
}

.teks {
  margin: 90px;
}

.title {
  font-size: 32px;
  color: #977029; 
  font-weight: 100;
  letter-spacing: 1px;
  margin-bottom: 50px;
}

.subtitle {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  color: #ddd;
  margin-bottom: 40px;
}

.desc {
  max-width: 1130px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: #ccccccef;
  text-align: justify;
  text-align-last: center;
}
 
@media (max-width: 768px) {
  .teks {
    margin: 40px 20px;
  }

  .title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .subtitle {
    font-size: 11px;
    margin-bottom: 25px;
  }

  .desc {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* spa section */
.spa{
  padding: 0px;
}

.spa-1{
  margin-bottom: 0 !important;
}
.spa-2{
  margin-top: 0 !important;
}
.spa h5{
  font-size: 29px;
}
.spa p{
  font-size: 17px;
  color: rgba(255, 255, 255, 0.63);
  text-align: justify;
}

/* text spa ke gambar */
.card-body{
  padding: 0;
  margin-top: -25px;
}

/* button spa section */
.btn {
  font-family: "Marcellus SC", serif;
  font-weight: 400;
  opacity: 0.7;
  width: 250px;
  height: 50px;
  justify-content: center;
  line-height: 50px;       
  padding: 0;              
  display: inline-block;
}

/* responsif spa section */
@media (max-width: 768px) {
  .spa .card {
      margin: 0;
      padding: 0;
  }

  .spa .card-body p {
    text-align: justify;
  }

  .spa .card-body h5 {
    text-align: center;
    font-size: 24px;
  }
}


/* video section */

/* video section */

.video-wrapper {
  position: relative;
  width: 100%;
  height: 100vh; /* atau sesuaikan tinggi yang kamu mau */
  overflow: hidden;
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* background section  */
.background-section {
    background-image: url(/img/20.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 40vh;
    margin-top: 100px;
    display: flex;
    justify-content: center; 
    align-items: center;      
  }

@media (max-width: 768px) {
    .background-section {
      height: 20vh;
      margin-top: 60px;
    }
}

/* footer */
footer h6{
    font-family: "Marcellus SC", serif;
    opacity: 0.8;
}

footer p{
    font-family: "Raleway", sans-serif;
    font-weight: 200;
    font-size: 15px;
}

footer h5{
    font-family: "Marcellus SC", serif;
    opacity: 0.9;
    font-size: 18px;
    margin-bottom: 30px;
}

footer .btn{
    width: 120px;
}

.custom-input::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
}

.custom-input {
    background-color: transparent !important;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    color: white !important;
    border-radius: 0; 
    padding: 8px 0; 
}

.custom-input::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
}

.custom-input:focus {
    border-bottom: 1px solid white;
    outline: none; 
    box-shadow: none; 
}

.terms-text {
    margin-top: 10px; 
    font-size: 0.85rem; 
    max-width: 400px; 
    padding-top: 20px;
    opacity: 0.7;
}

/* sosial icon */
.social-icons a i {
    opacity: 0.7; 
    transition: opacity 0.3s ease-in-out;
    padding-top: 30px;
}

.social-icons a i:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    footer h5,
    footer h6 {
      font-size: 16px;
    }
  
    footer p {
      font-size: 14px;
    }
  
    .terms-text {
      font-size: 0.75rem;
      text-align: left;
    }
  
    .social-icons {
      flex-wrap: wrap;
      gap: 10px;
      justify-content: flex-start;
      padding-top: 15px;
    }
  
    .social-icons a {
      font-size: 1.2rem;
    }
  
    .custom-input {
      font-size: 14px;
    }
  
    footer .btn {
      width: 25%;
    }
  }