/* BETONGOLD ACADEMY - Custom Styles */

:root {
    --gold: #D4AF37;
    --gold-dark: #C5A028;
    --gold-light: #F5E6C8;
    --beige: #F5F1E8;
}

body {
    font-family: 'DM Sans', sans-serif;
}

/* Logo */
.logo {
    height: 90px;
}

/* Gold Color Classes */
.text-gold {
    color: var(--gold) !important;
}

.bg-gold {
    background-color: var(--gold) !important;
}

/* Button Styles */
.btn-gold {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 12px 32px;
    box-shadow: 0 4px 14px 0 rgba(245, 158, 11, 0.39);
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(245, 158, 11, 0.5);
    color: white;
}

.btn-outline-gold {
    border: 2px solid var(--gold);
    color: var(--gold);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background-color: var(--gold);
    color: white;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--beige) 0%, rgba(245, 241, 232, 0.8) 50%, white 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 35px,
        rgba(212, 175, 55, 0.05) 35px,
        rgba(212, 175, 55, 0.05) 70px
    );
    pointer-events: none;
}

.min-vh-75 {
    min-height: 75vh;
}

/* Course Cards */
.course-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--gold);
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

/* Master Certificate Box */
.master-cert-box {
    background: linear-gradient(135deg, var(--beige) 0%, rgba(245, 241, 232, 0.5) 100%);
    border: 2px dashed var(--gold);
}

/* Feature Cards */
.feature-card {
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

/* Testimonial Cards */
.testimonial-card {
    border-left: 4px solid var(--gold);
}

.avatar-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    padding: 80px 0;
}

/* Step Numbers */
.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Track Indicator */
.track-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

/* Border Top Gold */
.border-top-gold {
    border-top: 4px solid var(--gold) !important;
}

/* Admin Sidebar */
.sidebar {
    min-height: calc(100vh - 56px);
    padding: 0;
}

.sidebar .nav-link {
    color: #333;
    padding: 12px 20px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.sidebar .nav-link:hover,
.sidebar .nav-link.active {
    background-color: var(--gold-light);
    border-left-color: var(--gold);
    color: var(--gold-dark);
}

.sidebar .nav-link i {
    width: 20px;
}

/* Stat Icons */
.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

/* Footer */
.footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--gold) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
    }
    
    .logo {
        height: 48px;
    }
    
    .btn-gold {
        padding: 10px 24px;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.shadow-gold {
    box-shadow: 0 4px 14px 0 rgba(212, 175, 55, 0.25);
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}
