/* Custom styles for Call Girl Luck website */

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.navbar {
    margin-bottom: 20px;
}

.footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Sticky buttons */
.sticky-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sticky-buttons .btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.sticky-buttons .btn-call {
    background-color: #007bff; /* Blue for call */
    color: white;
}

.sticky-buttons .btn-call:hover {
    background-color: white;
    color: #007bff;
    border: 1px solid #007bff;
}

.sticky-buttons .btn-whatsapp {
    background-color: #25D366; /* WhatsApp green */
    color: white;
}

.sticky-buttons .btn-whatsapp:hover {
    background-color: white;
    color: #25D366;
    border: 1px solid #25D366;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sticky-buttons {
        bottom: 10px;
        right: 10px;
        gap: 5px;
    }
    .sticky-buttons .btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}
