/* ===================================
   TRUE GRADING COMPANY - MAIN STYLES
   =================================== */

:root {
    --primary: #D4AF37;
    --primary-light: #F2D675;
    --dark: #0B0F17;
    --dark-2: #141A24;
    --text: #FFFFFF;
    --muted: #AAB4C4;
    --accent-blue: #00D4FF;
    --accent-blue-dark: #0099FF;
    --accent-green: #00FF88;
    --accent-green-dark: #00CC66;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--dark);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

img {
    max-width: 100%;
    height: auto;
}

/* Typography */
.display-3 {
    font-weight: 900 !important;
}

.lead {
    font-size: 1.15rem;
    color: var(--muted);
}

/* Gradients */
.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-bg {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

/* Buttons */
.btn {
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.btn-gold {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border: none;
    color: #000 !important;
    font-weight: 700;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.btn-gold:active {
    transform: translateY(0);
}

.btn-outline-light-premium {
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
}

.btn-outline-light-premium:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* Forms */
.form-control,
.form-select {
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-control:focus,
.form-select:focus {
    background: #111827;
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

/* Glass Morphism */
.glass-effect {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
}

/* Badges */
.badge {
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
}

.badge-gradient {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #000;
}

/* Cards */
.card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
    }
}

/* Scroll Reveal */
.fade-in {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.reveal-1 { animation-delay: 0s; }
.reveal-2 { animation-delay: 0.1s; }
.reveal-3 { animation-delay: 0.2s; }
.reveal-4 { animation-delay: 0.3s; }
.reveal-5 { animation-delay: 0.4s; }
.reveal-6 { animation-delay: 0.5s; }

/* Responsive */
@media (max-width: 768px) {
    .display-3 {
        font-size: 2rem !important;
    }

    .btn-group-vertical {
        gap: 10px;
    }
}

/* Loading States */
.loading {
    pointer-events: none;
    opacity: 0.6;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
}

/* Print Styles */
@media print {
    .navbar-premium,
    .footer,
    .btn-action {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }
}
