/* B.E.A.T. Branding Styles */

/* Logo and Brand Elements */
.app-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.app-logo:hover {
    transform: scale(1.05);
}

.flutter-badge {
    width: 120px;
    height: auto;
    opacity: 0.9;
}

.flutter-force-badge {
    margin-top: 0.5rem;
}

.brand-header {
    position: relative;
}

.app-title {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.app-title a {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.app-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* CWLO Integration Styles */
.cwlo-link {
    display: flex;
    align-items: center;
}

.dropdown-icon {
    width: 20px;
    height: 20px;
}

.cwlo-btn .btn-icon {
    width: 20px;
    height: 20px;
}

.cwlo-btn {
    border-color: #7cb342;
    color: #7cb342;
}

.cwlo-btn:hover {
    background-color: #7cb342;
    border-color: #7cb342;
    color: white;
}

/* Enhanced Header Styling */
.header-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #8b5cf6 100%);
    position: relative;
    overflow: hidden;
}

.header-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.05) 10px,
        rgba(255, 255, 255, 0.05) 20px
    );
    animation: shimmer 20s linear infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Footer Enhancements */
.footer-section {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    padding: 2rem 0;
}

.footer-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.footer-brand {
    font-weight: 600;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.partner-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-right: 0.5rem;
}

.partner-logo {
    width: 120px;
    height: auto;
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.05);
}

.partner-link {
    text-decoration: none;
}

/* Butterfly Theme Colors */
:root {
    --butterfly-purple: #8b5cf6;
    --butterfly-pink: #ec4899;
    --butterfly-blue: #06b6d4;
    --flutter-gradient: linear-gradient(135deg, var(--butterfly-purple) 0%, var(--butterfly-pink) 50%, var(--butterfly-blue) 100%);
}

/* Apply butterfly theme to buttons and accents */
.btn-primary {
    background: var(--flutter-gradient);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #db2777 50%, #0891b2 100%);
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .app-logo {
        width: 60px;
        height: 60px;
    }
    
    .app-title {
        font-size: 2rem;
    }
    
    .flutter-badge {
        width: 100px;
    }
    
    .footer-section .row {
        text-align: center;
    }
    
    .footer-section .col-md-4 {
        margin-bottom: 1rem;
    }
}