body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: rgba(0, 0, 0, 0); /* Transparent background */
    color: rgb(0, 0, 0);
    height: 20px; /* Reduced height */
    display: flex;
    justify-content: space-between;
    align-items: center;
    left: 16px;
    position: fixed;
    width: 100%;
    margin-top: 35px;
    z-index: 1000;
}



.menu {
    align-items: center;
}

.menu ul {
    display: flex;
    list-style: none;
    padding-right: 35px;
    margin: 0;
}

.menu ul li {
    margin-left: 45px;
}


.menu ul li a {
    font-family: Arial, Helvetica, sans-serif;
    font-style: italic;
    font-weight: lighter;
    font-size: 25px;
    text-decoration: none;
    color: #000000;
}
.menu ul li a:hover {
    text-decoration: underline;
    color: black;
}

.burger {
    color: #000;
    font-size: 40px;
    cursor: pointer;
    display: none; /* Hidden by default for larger screens */
    z-index: 1001;
    position: fixed;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
}

.menu-toggle-checkbox:checked + .burger {
    display: none;
}

/* Overlay container that covers the whole screen */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0); /* Black background with opacity */
    display: none;
    align-items: center; /* Center vertically */
    justify-content: center; /* Hidden by default */
    z-index: 1000; /* Ensure it appears above everything */
}
/* Display the overlay when the menu checkbox is checked */
.menu-toggle-checkbox:checked + .burger + .overlay {
    display: block;
}

/* Overlay content styling */
.overlay-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.overlay-content ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.overlay-content ul li {
    margin: 20px 0;
}

.overlay-content ul li a {
    font-size: 36px;
    color: #ffffff;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-style: italic;
}

.overlay-content ul li a:hover {
    text-decoration: underline;
}

/* Close button inside the overlay */
.closebtn {
    position: fixed;
    top: 20px;
    right: 25px;
    font-size: 40px;
    color: #ffffff;
    cursor: pointer;
}

/* Hide the menu toggle checkbox */
.menu-toggle-checkbox {
    display: none;
}



main {
    padding-top: 150px;
    padding-bottom: 150px;
    max-width: 500px;
    margin: auto;
    position: relative;
  }

  main h1 {
    font-size: 40px;
    font-weight: lighter;
    text-align: center;
    font-style: italic;
    padding-bottom: 50px;
  }

  .van-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .van-item {
    display: flex;
    align-items: center;
    background: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    gap: 30px;
  }

  .van-item img {
    max-width: 200px;
    border-radius: 10px;
  }

  .van-details {
    flex: 1;
    padding-left: 45px;
  }

  .van-details h2 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 100;
  }

  .amenities-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    margin-bottom: 10px;
  }

  .amenities-list li {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .amenities-list i {
    font-size: 15px;
    color: #000;
  }

  .price {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .book-now-bt a {
    display: block;
    height: 40px;
    width: 150px;
    background: #000;
    color: #fff;
    text-align: center;
    font-size: 16px;
    line-height: 40px;
    border-radius: 20px;
    text-decoration: none;
  }

  .book-now-bt a:hover {
    background-color: #fff;
    color: #000;
  }


/* Floating Button Styling */
.floating-contact {
    position: fixed;
    bottom: 40px;
    right: 20px;
    z-index: 1000;
}

.toggle-btn {
    display: none; /* Hide the checkbox */
}

/* Main Button */
.contact-btn {
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.contact-btn:hover {
    transform: scale(1.1);
}

/* Contact Options Styling */
.contact-options {
    position: absolute;
    bottom: 70px; /* Positioned above the main button */
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.contact-options a {
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    margin-bottom: 10px;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out;
}

.whatsapp {
    transition: background-color 0.3 ease-in-out;
}
.whatsapp:hover{
    background-color: #25d366;
}

.mail {
    transition: background-color 0.3 ease-in-out;
}
.mail:hover{
    background-color: #c71610;
}

.telegram {
    transition: background-color 0.3 ease-in-out;
}
.telegram:hover{
    background-color: #0088cc;
}



/* When the checkbox is checked, show the contact options */
.toggle-btn:checked + .contact-btn + .contact-options {
    opacity: 1;
    visibility: visible;
}

/* Transition effect for contact options */
.contact-options a {
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.toggle-btn:checked + .contact-btn + .contact-options a {
    transform: translateY(0);
    opacity: 1;
}




footer {
    background: black;
    color: darkgrey;
    padding: 10px 0;
    text-align: left;
    font-size: 11px;
    position: static;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0 auto;
}

.footer-menu {
    display: flex;
    align-items: center;
}


.footer-menu .social-icons {
    display: inline-block;
    margin-left: 15px;
}

.footer-menu .social-icons a {
    color: #ffffff;
    font-size: 12px;
    margin-left: 15px;
}

.social-icons a {
    list-style-type: none;
    display: inline-block;
    color: #ffffff;
    font-size: 12px;
    margin-left: 15px;
}

.footer-terms {
    color: #ffffff;
    font-size: 8px;
    margin: auto;
    justify-content: space-between;
    align-items: center;
}
.footer-copyright {
    color: #ffffff;
    font-size: 8px;
    margin-left: auto; 
}

.footer-copyright-media {
    display: none;
}


@media (max-width: 700px) {

    .logo {
        max-width: 90%;
    }

    .menu {
        display: none;
    }

    .desktop-menu {
        display: none;
    }

    .burger {
        display: block;
    }

    .overlay-content ul li a {
        font-size: 20px;
    }

    .closebtn {
        font-size: 45px;
    }

    .van-item {
        margin: 15px;
        flex-direction: column;
        align-items: center;
      }

    .van-item img {
        max-width: 65%;
    }
    
    .van-details {
        padding-left: 0; /* Reset padding for mobile */
    }
}
