/* ========================================
   DENTALOWL CUSTOM STYLES
   Main custom styles for DentalOwl website
   ======================================== */

/* Global DentalOwl Styles */
.dentalowl-brand {
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 600;
}

/* DentalOwl Color Scheme */
:root {
    --dentalowl-primary: #8B5CF6;
    --dentalowl-secondary: #7C3AED;
    --dentalowl-accent: #F59E0B;
    --dentalowl-success: #10B981;
    --dentalowl-danger: #EF4444;
    --dentalowl-warning: #F59E0B;
    --dentalowl-info: #3B82F6;
}

/* DentalOwl Button Styles */
.btn-dentalowl {
    background: linear-gradient(135deg, var(--dentalowl-primary) 0%, var(--dentalowl-secondary) 100%);
    border: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-dentalowl:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
    color: white;
}

/* DentalOwl Card Styles */
.card-dentalowl {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card-dentalowl:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* DentalOwl Section Styles */
.section-dentalowl {
    padding: 60px 0;
}

.section-dentalowl h2 {
    color: var(--dentalowl-primary);
    font-weight: 700;
    margin-bottom: 20px;
}

/* DentalOwl Animation Classes */
.dentalowl-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.dentalowl-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.dentalowl-slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.dentalowl-slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.dentalowl-slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.dentalowl-slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* DentalOwl Mobile Optimizations */
@media (max-width: 768px) {
    .dentalowl-mobile-padding {
        padding: 40px 0;
    }
    
    .dentalowl-mobile-text {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .dentalowl-mobile-title {
        font-size: 24px;
        line-height: 1.3;
    }
}

/* DentalOwl Utility Classes */
.dentalowl-text-primary {
    color: var(--dentalowl-primary) !important;
}

.dentalowl-bg-primary {
    background: linear-gradient(135deg, var(--dentalowl-primary) 0%, var(--dentalowl-secondary) 100%) !important;
}

.dentalowl-shadow {
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.2);
}

.dentalowl-border-radius {
    border-radius: 12px;
}

/* DentalOwl Loading States */
.dentalowl-loading {
    position: relative;
    overflow: hidden;
}

.dentalowl-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: dentalowl-shimmer 2s infinite;
}

@keyframes dentalowl-shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* DentalOwl Accessibility */
.dentalowl-focus:focus {
    outline: 2px solid var(--dentalowl-primary);
    outline-offset: 2px;
}

/* DentalOwl Print Styles */
@media print {
    .dentalowl-no-print {
        display: none !important;
    }
}

/* DentalOwl High Contrast Mode */
@media (prefers-contrast: high) {
    .dentalowl-brand {
        color: #000000;
    }
    
    .btn-dentalowl {
        background: #000000;
        color: #FFFFFF;
        border: 2px solid #FFFFFF;
    }
}

/* DentalOwl Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .dentalowl-fade-in,
    .dentalowl-slide-in-left,
    .dentalowl-slide-in-right {
        transition: none;
    }
    
    .dentalowl-loading::after {
        animation: none;
    }
}
