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

header {
    background-color: rgba(0, 0, 0, 0);
    color: rgb(0, 0, 0);
    height: 20px;
    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;
    z-index: 1001;
    position: fixed;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
}

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

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.menu-toggle-checkbox:checked + .burger + .overlay {
    display: block;
}

.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;
}

.closebtn {
    position: fixed;
    top: 20px;
    right: 25px;
    font-size: 40px;
    color: #ffffff;
    cursor: pointer;
}

.menu-toggle-checkbox {
    display: none;
}

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

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

/* 2x2 grid instead of a single vertical list */
.van-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: stretch;
}

.van-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    gap: 15px;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.4s ease;
}

/* Bubbly grow + slight darken on hover */
.van-item:hover {
    transform: scale(1.04);
    background-color: #ececec;
}

/* Fixed-height box so every van image gets the same amount of visual
   breathing room, no matter how much (or little) empty space is baked
   into that particular image file. */
.van-image {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.van-image img {
    max-width: 200px;
    max-height: 200px;
    object-fit: contain;
    border-radius: 10px;
}

.van-details {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
}

.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;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.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;
    margin: 0 auto;
}

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

.floating-contact {
    position: fixed;
    bottom: 40px;
    right: 20px;
    z-index: 1000;
}

.toggle-btn {
    display: none;
}

.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 {
    position: absolute;
    bottom: 70px;
    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:hover { background-color: #25d366; }
.mail:hover { background-color: #c71610; }
.telegram:hover { background-color: #0088cc; }

.toggle-btn:checked + .contact-btn + .contact-options {
    opacity: 1;
    visibility: visible;
}

.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;
    }

    /* Single column on small screens instead of a squeezed 2x2 grid */
    .van-list {
        grid-template-columns: 1fr;
    }

    .van-item {
        margin: 15px 0;
    }

    .van-item img {
        max-width: 65%;
    }
}