/*
Theme Name: Evolution Cleaning Services
Description: Professional cleaning services theme converted from HTML - Fully Editable via WordPress Admin
Version: 1.0
Author: Evolution Team
Text Domain: evolution-cleaning
*/

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

body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

.gradient-bg {
    background: linear-gradient(135deg, #00C4FF 0%, #004EA8 100%);
}

.gradient-text {
    background: linear-gradient(135deg, #00C4FF 0%, #004EA8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

a[href^="#"], 
a[href^="tel:"], 
a[href^="mailto:"], 
a[href^="sms:"], 
button {
    transition: all 0.3s ease;
}

a[href^="#"]:hover, 
a[href^="tel:"]:hover, 
a[href^="mailto:"]:hover, 
a[href^="sms:"]:hover, 
button:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.gallery-item {
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

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

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(148, 40, 162, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(148, 40, 162, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(148, 40, 162, 0);
    }
}

.mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.mobile-menu.open {
    max-height: 500px;
}

.book-button {
    display: inline-block;
    background-color: #FFA420;
    color: white;
    font-weight: bold;
    padding: 12px 32px;
    border-radius: 8px;
    transition: background-color 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.book-button:hover {
    background-color: #e6911c;
    text-decoration: none;
    color: white;
}

@media (max-width: 767px) {
    .book-button {
        display: block;
        margin: 0 auto;
        text-align: center;
    }
}

/* Admin Bar Adjustment */
.admin-bar header.sticky {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar header.sticky {
        top: 46px;
    }
}
