/* Jukebox KWH Custom Styles - Orange and Purple Theme */
:root {
    --primary-orange: #ff8c42;
    --primary-purple: #8e44ad;
    --light-orange: rgba(255, 140, 66, 0.1);
    --light-purple: rgba(142, 68, 173, 0.1);
    --gradient-bg: linear-gradient(135deg, var(--primary-orange), var(--primary-purple));
    --text-dark: #2c3e50;
    --text-light: #ecf0f1;
}

/* Global smooth transitions */
* {
    transition: all 0.3s ease-in-out;
}

/* Global Styles */
body {
    background: var(--gradient-bg);
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
}
/* Font smoothing for iOS Safari & macOS */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    color: var(--primary-purple) !important;
    font-size: 1.5rem;
}

.navbar-brand:hover {
    color: var(--primary-orange) !important;
}

/* Buttons */
.btn-primary {
    background: var(--gradient-bg);
    border: none;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-orange));
}

}

.btn-primary:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(142, 68, 173, 0.3);
}

.btn-outline-primary {
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 140, 66, 0.3);
}

/* Hero Section */
.hero-section {
    padding: 4rem 0;
    text-align: center;
}

.logo-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2rem;
}

.logo-icon {
    font-size: 4rem;
    color: var(--primary-orange);
    display: block;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.display-2 {
    background: var(--gradient-bg);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.lead {
    color: var(--text-light);
    font-weight: 300;
}

/* Feature Cards */
.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
    display: block;
}

.feature-icon-small {
    font-size: 1.5rem;
    color: var(--primary-purple);
}

/* Menu Cards */
.menu-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.menu-icon {
    font-size: 3rem;
    color: var(--primary-purple);
}

/* Forms */
.form-control, .form-select {
    border-radius: 10px;
    border: 2px solid rgba(255, 140, 66, 0.3);
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 140, 66, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* Cards */
.card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card-header {
    background: var(--light-orange);
    border-bottom: 1px solid rgba(255, 140, 66, 0.2);
    border-radius: 15px 15px 0 0 !important;
}

/* Tables */
.table {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    overflow: hidden;
}

.table-hover tbody tr:hover {
    background-color: var(--light-orange);
}

.table-light {
    background: var(--light-purple);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    color: var(--text-light);
    margin-top: auto;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-light);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-3px);
}

/* Badges */
.badge {
    border-radius: 15px;
    padding: 0.5rem 1rem;
    font-weight: 500;
}

.badge.bg-primary {
    background: var(--gradient-bg) !important;
}

/* Alerts */
.alert {
    border-radius: 10px;
    border: none;
}

.alert-success {
    background: rgba(46, 204, 113, 0.1);
    color: #27ae60;
    border-left: 4px solid #27ae60;
}

.alert-danger {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border-left: 4px solid #e74c3c;
}

.alert-info {
    background: var(--light-orange);
    color: var(--primary-orange);
    border-left: 4px solid var(--primary-orange);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 0;
    }
    
    .logo-container {
        padding: 2rem 1rem;
    }
    
    .display-2 {
        font-size: 2.5rem;
    }
    
    .main-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .social-links {
        gap: 0.5rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Loading States */
.spinner-border {
    color: var(--primary-orange);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-bg);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-orange));
}

/* Feature Items */
.feature-item {
    padding: 1rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.card, .feature-card, .menu-card {
    animation: fadeIn 0.6s ease-out;
}

/* Utility Classes */
.text-gradient {
    background: var(--gradient-bg);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
}

.brand-title {
    display: flex;
    justify-content: center;     /* Center horizontally */
    align-items: center;         /* Center vertically */
    text-align: center;

    width: 100%;
    max-width: 100%;
    padding: 20px;
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 2px;
    border-radius: 15px;
    background: var(--gradient-bg);
    color: #fff;
    border: 3px solid rgba(255, 255, 255, 0.3);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    white-space: normal;
    word-break: break-word;
    box-sizing: border-box;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .brand-title {
        font-size: 2.2rem;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .brand-title {
        font-size: 1.6rem;
        padding: 10px 12px;
    }
}
