/*
 * SIMPLE ENHANCEMENTS - FONTS & WHATSAPP ONLY
 * Safe, minimal changes
 */

/* ============================================
   1. MODERN FONTS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* Apply Poppins to body text */
body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Apply Playfair Display to all headings */
h1, h2, h3, h4, h5, h6,
.sec-title h2,
.big-title h2,
.title h1,
.section-title h2 {
    font-family: 'Playfair Display', Georgia, serif !important;
}

/* Better navigation font */
.main-menu .navigation > li > a {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 500;
}

/* ============================================
   2. FLOATING WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
    color: white;
    text-decoration: none;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 5px 30px rgba(37, 211, 102, 0.8);
    }
}

/* WhatsApp tooltip */
.whatsapp-float::before {
    content: 'Chat with us!';
    position: absolute;
    right: 70px;
    background: #1A1A1A;
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    white-space: nowrap;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.whatsapp-float:hover::before {
    opacity: 1;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }

    .whatsapp-float::before {
        display: none; /* Hide tooltip on mobile */
    }
}
