/* Arya Tuition & Coaching Classes - Custom Style sheet */

:root {
    --navy: #071A52;
    --navy-dark: #030d2a;
    --navy-light: #122b7a;
    --gold: #FFC107;
    --gold-dark: #e0a800;
    --gold-light: #ffcd38;
}

body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    background-color: #f8f9fa;
}

/* Custom Color classes */
.bg-navy {
    background-color: var(--navy) !important;
}
.bg-navy-dark {
    background-color: var(--navy-dark) !important;
}
.bg-navy-light {
    background-color: var(--navy-light) !important;
}
.bg-gold {
    background-color: var(--gold) !important;
}
.bg-gold-10 {
    background-color: rgba(255, 193, 7, 0.1) !important;
}
.text-navy {
    color: var(--navy) !important;
}
.text-gold {
    color: var(--gold) !important;
}

/* Button Stylings */
.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy-dark);
    border: none;
    transition: all 0.3s ease;
    font-weight: 800;
}
.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    transform: translateY(-3px) scale(1.02);
    color: var(--navy-dark);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.6);
}

.btn-navy-light {
    background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    font-weight: 700;
}
.btn-navy-light:hover {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    transform: translateY(-3px) scale(1.02);
    color: white;
    box-shadow: 0 8px 25px rgba(7, 26, 82, 0.4);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
    font-weight: 700;
}
.btn-outline-gold:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy-dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.5);
}

.shadow-gold {
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.5);
}

.shadow-premium {
    box-shadow: 0 10px 30px rgba(7, 26, 82, 0.05);
}

/* Hero gradient */
.bg-gradient-navy {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
}

/* Hover effects */
.card-hover-gold {
    transition: all 0.3s ease;
}
.card-hover-gold:hover {
    transform: translateY(-5px);
    border-bottom: 4px solid var(--gold) !important;
    box-shadow: 0 15px 30px rgba(7, 26, 82, 0.1) !important;
}

.hover-gold {
    transition: color 0.2s ease;
}
.hover-gold:hover {
    color: var(--gold) !important;
}

/* Background opacity helper */
.bg-white-5 {
    background-color: rgba(255, 255, 255, 0.05) !important;
}
.border-white-10 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}
.border-white-5 {
    border-color: rgba(255, 255, 255, 0.05) !important;
}
.border-gold-30 {
    border-color: rgba(255, 193, 7, 0.3) !important;
}
