@charset "UTF-8";
/* CSS Document */
.whatsapp-telegram-section {
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 0px;
    background-color: #f9f9f9;
    text-align: center;
}
.fa-whatsapp {
  color: #ffffff; /* WhatsApp zaļā krāsa */
  
  transition: color 0.3s;
}
.fa-whatsapp:hover {
  color: #ffffff;
}
.fab {
  font-size: 45px; /* Ikonas izmērs */
  margin-right: 0px; 
}

/* Īpaši stilējam Telegram ikonu */
.fa-telegram-plane {
  color: #ffffff; /* Telegram oficiālā krāsa */
  transition: color 0.3s;
}

/* Pievienojam efektu, pārbraucot ar peli */
.fa-telegram-plane:hover {
  color: #ffffff; 
  cursor: pointer;
}

.whatsapp-telegram-icons {
    display: flex !important;
    flex-direction: row !important; /* Piespiedu kārtā rinda */
    justify-content: center !important;
    align-items: center !important;
    gap: 20px !important;
    margin: 15px 0 !important;
    flex-wrap: wrap !important;
}

.whatsapp-icon, .telegram-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px 20px !important;
    border-radius: 30px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
    width: auto !important; /* Nodrošina, ka platums nav ierobežots */
    float: none !important; /* Atceļ peldošos elementus */
    clear: none !important;
}

.whatsapp-icon {
    background-color: #25D366 !important;
    color: white !important;
}

.telegram-icon {
    background-color: #0088cc !important;
    color: white !important;
}

.whatsapp-icon:hover, .telegram-icon:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15) !important;
}

.icon-text {
    margin-left: 8px !important;
    font-weight: bold !important;
    display: inline-block !important;
}

/* ... (pārējā koda daļa nemainās) */

.availability {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    flex-wrap: wrap;
}

.availability-dot {
    width: 12px;
    height: 12px;
    background-color: #4CAF50;
    border-radius: 50%;
    margin-right: 8px;
    flex-shrink: 0;
}

.availability-text {
    margin-right: 8px;
    font-weight: 500;
}

.availability-status {
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    flex-shrink: 0;
}

.status-open {
    background-color: #e6f7ee;
    color: #0a9c4d;
}

.status-closed {
    background-color: #fde9e9;
    color: #e74c3c;
}

/* Responsive design */
@media (max-width: 768px) {
    .availability {
        flex-direction: column;
        gap: 8px;
    }
    
    .availability-text {
        margin-right: 0;
    }
}

/* ... (pārējā koda daļa nemainās) */

.work-hours {
    font-size: 0.9rem;
    color: #666;
    margin-top: 15px;
    font-weight: bold;
    text-align: center;
    padding: 8px;
   
}

/* Peldošās ikonas */
.floating-contact-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-whatsapp, .floating-telegram {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
}

.floating-whatsapp {
    background-color: #25D366;
}

.floating-telegram {
    background-color: #0088cc;
}

.floating-whatsapp:hover, .floating-telegram:hover {
    transform: scale(1.1);
}

.floating-label {
    position: absolute;
    right: 70px;
    background: white;
    padding: 8px 15px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}

.floating-whatsapp:hover .floating-label,
.floating-telegram:hover .floating-label {
    opacity: 1;
}

.floating-whatsapp .floating-label {
    color: #25D366;
}

.floating-telegram .floating-label {
    color: #0088cc;
}



/* Animācija */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* Responsive design */
@media (max-width: 768px) {
    /* PASTIPRINĀTS: ikonas paliek rindā, nevis kolonnā */
    .whatsapp-telegram-icons {
        flex-direction: row !important;
        justify-content: center !important;
        gap: 15px !important;
        flex-wrap: wrap !important;
        display: flex !important;
    }
    
    .whatsapp-icon, .telegram-icon {
        flex: 0 1 auto !important;
        margin: 5px !important;
        width: auto !important;
        display: inline-flex !important;
    }
    
    .floating-contact-icons {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-whatsapp, .floating-telegram {
        width: 50px;
        height: 50px;
    }
    
    .floating-label {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
}
.availability-dot.open {
    background-color: #4CAF50;
}

.availability-dot.closed {
    background-color: #e74c3c;
}