/* 2372043 Rafaellie B */
    /* NavBar */
    .navbar {
        background-color:black;
        padding: 20px;
        color: #fff;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 60px 40px 0 40px;
        opacity: 0;
        transition: opacity 0.7s ease;
      }
    
      .logo {
        font-size: 1em;
        font-weight: bold;
        text-align: center;
        padding: 20px 0 20px 20px ;
      }

      .nav-list {
        list-style-type: none;
        margin: 0;
        padding: 0;
        align-items: center;
        display: flex;
      }
    
      .nav-list li {
        margin-right: 20px; 
      }
      
      .nav-list a {
        text-decoration: none;
        color: #fff;
        padding: 10px;
        border-radius: 5px;
        
      }
      .nav-list a:hover {
        background-color: #555;
      }
      
      .nav-list a i {
        margin-right: 5px;
      }
      /* Navbar END */
    
      /* Button Login in Navbar*/
      .cta-buttons {
        display: flex;
        align-items: center;
      }
    
      .cta-buttons a {
        display: inline-block;
        padding: 10px 10px;
        margin-left: 10px;
        background-color: blue; 
        color: #fff;
        border-radius: 5px;
        text-decoration: none;
      }
      
      .cta-buttons a:hover {
        background-color: white;
        color: black;
      }
      
      /* Button Login in Navbar END */
      
      /* Home Page Footer */
      
      .footer{
        opacity: 0;
        transition: opacity 0.5s ease;
      }

      .footer-container{
        display: flex;
        justify-content: space-between;
        align-items: flex-start; 
        bottom: 0;
        margin: 500px 40px 60px 40px; 
        padding: 40px 40px 40px 40px; 
        background-color: black;
        color: #fff;
        font-size: 10px;
      }
    
      svg{
        fill: white;
      }
      
      .par,.par2,.par3,.par4 {
        text-align: center;
        margin: 0;
      } 
    
      .par3{
        font-size: 14px;
      }

      .par4{
        padding-top: 30px;
      }
    
      .footer-column {
        display: flex;
        flex-direction: column;
        gap: 10px;  
      }

      .follow{
        display: flex;
        gap: 10px;
        flex-direction: column;
      }
      
      .social-icons {
        display: flex;
        flex-direction: row; 
        margin: 0;
        justify-content: center;
        align-items: flex-start;
        gap: 6px;
      }
      
      .social-icons a {
        color: white; 
        text-decoration: none; /
      }
      
      .social-icons a:hover {
        fill:blue; 
      }
      /* Home Page Footer  END */
  

  /* Home Page Background */
  body {
    margin: 0;
    font-family: 'DM Sans', sans-serif;
    background-image: url(https://images.unsplash.com/photo-1447078806655-40579c2520d6?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
    background-size: cover;
    background-repeat: no-repeat;
  }

  /* Background About Page , Menu Page, Book Reservation Page & Contact Us Page */
  .body2 {
    margin: 0;
    font-family: 'DM Sans', sans-serif;
    background-image: url(https://images.unsplash.com/photo-1583339824000-5afecfd41835?q=80&w=1887&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
    background-size: cover;
    background-repeat: no-repeat;
  }

  /* Home Page */
  .midtext {
    margin-top: 250px;
    position: relative;
    text-align: center;
    color: black;
    opacity: 100%;
    opacity: 0;
    animation: fadeIn 1.5s ease-in-out forwards;
  }

  @keyframes fadeIn {
    from {
      opacity: 0; /* Start with opacity 0 */
    }
    to {
      opacity: 1; /* End with opacity 1 */
    }
  }

  .centered{
    position: absolute;
    background-color: #fff;
    opacity: 70%;
    border-radius: 10px;
    padding: 0 20px 0 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .button{
    display: inline-block;
    background-color: black; 
    padding: 10px 80px 10px 80px;
    margin-bottom: 20px;
    color: #fff;
    border-radius: 5px;
  }

  .linkbuttonmenu {
    text-decoration: none;
    color: #fff;
  }
  /* Home Page END */
  

  /* About Page */

  .main2{
    position: relative;
    margin: 10px 40px 0 40px;
  }

  .centered2,.centered3{
    position: absolute;
    display: flex-start;
    background-color: black;
    color: #fff;
    padding: 20px;
    z-index: 2;
  }

  .centered3 {
    justify-content: center;
    align-items: center;
    margin-top: 5px;
  }
  
  .par5{
    text-align: center;
  }

  .par6{
    text-align: center;
    font-size: 15px;
    margin: 30px;
  }
  
  .par7{
    text-align: center;
  }

  .par8{
    text-align: center;
    font-size: 15px;
    margin: 30px;
  }
  
  .img1{
    width: 100%;
    margin-top: 5px;
    z-index: 0;
    animation: parallaxAnimation 9s infinite linear;
  }

  .parallax {
    overflow: hidden;
    position: relative;
    height: 490px;
  }

  @keyframes parallaxAnimation {
    0% {
      transform: translateY(-50%);
    }
    50% {
      transform: translateY(-25%);
    } 
    100% {
      transform: translateY(-50%);
    }
  }

  .split-container {
    display: flex;
    position: relative;
    height: 100vh;
    overflow-x: hidden;
    padding-top: 20px
  }  

  .split{ 
    width: 50%;
    position: relative;
    overflow: hidden;
  }

  .centerimg {
    position: absolute;
    background-color: #fff;
  }

  .img{
    width: 100%;
    height: 100%;
    filter: grayscale(100%);
    transition: filter 0.7s ease-in-out;
  }

  .img:hover{
    filter: none;
    cursor: pointer;
  }

  .footer-container2{
    display: flex;
    justify-content: space-between;
    align-items: flex-start; 
    margin: 0 40px 60px 40px;
    padding: 40px 40px 40px 40px; 
    background-color: black;
    color: #fff;
    font-size: 10px;
  }
  /* About Page END */

  /* Page Menu */
  
  .centered4{
    position: relative;
    display: flex-start;
    background-color: black;
    color: #fff;
    align-items: center;
    padding: 20px 80px 20px 80px;
    width: calc(100%);
    box-sizing: border-box;
    }

    .par9{
      text-align: center;
      align-items: center;
      align-content: center;
    }

    .par10{
      text-align: center;
      font-size: 15px;
      margin: 30px;
    }

    .menu {
      position: relative;
      margin: 10px 40px 10px 40px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
      padding: 20px;
      background-color: black
    }

  .judul{
      align-content: center;
      text-align: center;
      color: #fff;
      width: 100%;
      font-size: 20px;
      margin-bottom: 10px;
  }
  
  hr{
      max-width: 1350px;
  }
  .item {
      width: 300px;
      margin-bottom: 20px;
      margin-top: 20px;
      background-color: #fff;
      overflow: hidden;
      display: flex;
      flex-direction: column;
  }
  
  .item img {
      width: 100%;
      height: 200px;
      object-fit: cover;
  }
  
  .item h2 {
      font-size: 1.5em;
      margin-top: 8px;
      text-align: center;
  }
  
  .item p {
      font-size: 14px;
      margin: 0 10px 10px 10px;
      text-align: center;
      flex-grow: 1;
  }
  
  .item button {
      display: block;
      background-color:#555;
      color: white;
      text-align: center;
      padding: 10px;
      font-size: 1.2em;
      border: none;
      cursor: pointer;
      transition: background-color 0.3s ease;
  }

  .item button:hover {
    background-color: black;
    color: #fff;
    outline-style: auto;
    
  }

  /* Page Menu END */

  /* Page BookReservation */
  
   form {
     display: flex;
     flex-direction: column;
     gap: 5px;
     margin-bottom: 30px;
   }

   .form-row {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 20px;
   }

   .form-column{
     display: flex;
     flex-direction: column;
   }

   .label1 {
     margin-bottom: 5px;
   }

   .input1{
     width: 300px;
     box-sizing: border-box;
     flex: 1;
   }

   .btn{
     display: flex;
     justify-content: flex-end; 
   }

    select, input {
     padding: 10px 10px 10px 10px;
     background-color: white;
     color: black;
   }

   .button4{
     padding: 10px 0px 10px 0px;
     background-color: white;
     color: black;
     outline-style: auto;
     width: 120px;
   }

   button:hover {
     background-color: black;
     color: #fff;
     outline-style: auto;
   }

   .background3{
     background: url("images/background3.avif");
     background-attachment: fixed;
     background-position: center;
     background-size: cover;
     padding: 200px;
   }

   .contact-container{
     display: flex;
     flex-direction: row;
     padding: 50px;
     gap: 400px;
   }

   .left-section{
     display: flex;
     flex-direction: column;
     text-align: center;
   }

   .par12{
     padding: 20px;
   }

   .right-section{
     display: flex;
     flex-direction: column;
     gap: 20px;
   }

   .form-row2{
     display: flex;
     flex-direction: row;
     gap: 10px;
   }

  .input-row{
     display: flex;
     flex-direction: column;
     gap: 10px;
   }

  .form-input{
     display: flex;
     flex-direction: column;
     gap: 10px;
   }

  .input2{
     display: flex;
     flex-direction: column;
     border-bottom: 2px solid white;
     background-color: black;
     color: white;
   }

  .label2{
     display: flex;
     justify-content: center;
     outline: none;
   }

  #message{
     border-bottom: 2px solid white;
     background-color: black;
     outline: none;
   }

  .button5{
    display: flex-start;
    padding: 10px;
   }

  .centered5{
    position: relative;
    display: flex;
    background-color: black;
    color: #fff;
    align-items: center;
    margin-top: 10px;
    justify-content: center;
   }
  
  .iframe-container {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; 
  }
  
  .iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .map{
    width: 100%;
    max-width: 1395px;
    padding: 25px;
   }

  /* Page BookReservation END */

  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
      align-items: center;
    }
    .footer-column, .follow {
      margin-bottom: 20px;
    }
    .social-icons a {
      display: inline-block; 
    }
  }

  @media only screen and (max-width: 768px) {
    .navbar {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .nav-list {
      margin-top: 10px;
      flex-direction: column;
      align-items: flex-start;
    }
  
    .nav-list li {
      margin-right: 0;
      margin-bottom: 10px;
    }
    .cta-buttons {
      margin-top: 10px;
    }
  }

  @media (max-width: 768px) {
    .form-column {
      flex: 100%; 
     }
  }

  @media (max-width: 800px) {
    .contact-container{
      flex-direction: column;
      gap: 20px;
     }
    .form-row2{
    flex-direction: column; 
     }
  }