/* =========================
   CORE THEME & VARIABLES
   ========================= */
:root {
    --primary-gold: #D4AF37;
    --primary-dark: #1a1a1a;
    --secondary-red: #B22222;
    --dark-bg: #222222;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
}

/* =========================
   BASE RESETS
   ========================= */
h1,
h2,
h3 {
    font-weight: 700;
    color: var(--text-dark);
}

h1 {
    font-size: clamp(1.8rem, 5vw, 3.5rem);
}

/* =========================
   GLOBAL BUTTONS
   ========================= */
.btn-primary {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--dark-bg);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #b8962e;
    border-color: #b8962e;
    color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* =========================
   GLOBAL ANIMATIONS
   ========================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
}

.animate-on-scroll.animated {
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes shine {
    0% {
        left: -50%;
    }

    100% {
        left: 50%;
    }
}