/* Custom styles for Dorys Beauty Hair Miami */

/* Smooth scrolling is handled by Tailwind's scroll-smooth utility */

/* Custom gradient backgrounds */
.gradient-terracotta {
    background: linear-gradient(135deg, #c47355 0%, #b85d43 100%);
}

.gradient-sand {
    background: linear-gradient(135deg, #ccaa86 0%, #ba9068 100%);
}

/* Hover effects for cards */
.service-card:hover {
    transform: translateY(-4px);
}

/* Image hover zoom effect */
.gallery-image {
    transition: transform 0.5s ease;
}

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

/* Custom focus styles */
input:focus,
select:focus,
textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(196, 115, 85, 0.2);
}

/* Button hover lift effect */
.btn-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-lift:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(196, 115, 85, 0.3);
}

/* Loading animation for form submission */
@keyframes spin {
    to { transform: rotate(360deg); }
}

.spinner {
    animation: spin 1s linear infinite;
}

/* Print styles */
@media print {
    nav,
    .no-print {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    .service-card,
    .gallery-image {
        break-inside: avoid;
    }
}
