/* style.css - Pusat Estetika Aplikasi */
:root { 
    --primary-dark: #2c3e50; 
    --primary-blue: #0d6efd; 
    --accent-blue: #3498db;
    --success-green: #27ae60;
    --bg-light: #f4f7f6;
    --glass-bg: rgba(255, 255, 255, 0.1);
}

body { 
    background-color: var(--bg-light); 
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    color: #333;
    overflow-x: hidden;
}

/* Hero Section Modern with Parallax Effect */
.hero-section {
    background: linear-gradient(rgba(20, 30, 48, 0.8), rgba(36, 59, 85, 0.9)), 
                url('https://images.unsplash.com/photo-1497215728101-856f4ea42174?auto=format&fit=crop&w=1600&q=80') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
    color: white;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content { z-index: 2; }

.hero-section h1 {
    letter-spacing: -1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-weight: 800;
}

/* Buttons & Interactive Elements */
.btn { border-radius: 8px; font-weight: 600; transition: all 0.3s; }
.btn-primary { background-color: var(--primary-blue); border: none; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3); }

.btn-glow {
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
    border: none;
}
.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.6);
    background-color: #2980b9 !important;
}

/* Cards & Features */
.card { 
    border-radius: 15px; 
    border: none; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); 
    overflow: hidden;
}

.feature-card {
    border: none;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: #fff;
}
.feature-card:hover { 
    transform: translateY(-12px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

.feature-icon {
    font-size: 3.5rem;
    background: linear-gradient(45deg, var(--primary-dark), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.col-md-4:hover .feature-icon {
    transform: scale(1.1);
}

/* Status Badge */
.badge-status {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}
.dot {
    height: 8px;
    width: 8px;
    background-color: #2ecc71;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(46, 204, 113, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}

/* Forms & Tables */
.header-box { 
    background: linear-gradient(135deg, var(--primary-dark) 0%, #34495e 100%); 
    color: white; 
    padding: 25px; 
}

.form-control { 
    border-radius: 8px; 
    padding: 10px 15px;
}

.form-control:focus { 
    box-shadow: none; 
    border-color: var(--primary-blue); 
}

.input-group-text { 
    cursor: pointer; 
    background: white; 
    border-left: none; 
    color: #7f8c8d;
}

.table thead { background: var(--primary-dark); color: white; }
.table-hover tbody tr:hover { background-color: #f8f9fa; cursor: pointer; }

/* Auth Card */
.auth-card { 
    width: 100%; 
    max-width: 420px; 
    padding: 2.5rem; 
}

/* Footer */
footer {
    background: #1a252f;
    padding: 3rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-link {
    text-decoration: none;
    color: rgba(255,255,255,0.7);
    transition: 0.3s;
}
.footer-link:hover { color: var(--accent-blue); }