/* Additional Styles */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Hero section adjustments */
.hero {
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .btn-gold, .btn-red, .btn-outline-gold {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Red accent variant */
.red-accent {
    color: #E31E24;
}

.border-red {
    border-color: #E31E24 !important;
}

.bg-red-gradient {
    background: linear-gradient(135deg, #E31E24, #F5353F);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Loading animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.shimmer {
    animation: shimmer 2s infinite;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    background-size: 1000px 100%;
}

/* Print styles */
@media print {
    .navbar, footer, .btn {
        display: none;
    }
}

/* High contrast mode */
@media (prefers-contrast: more) {
    :root {
        --accent: #FFD700;
    }
}

/* Dark mode (if system preference)*/
@media (prefers-color-scheme: dark) {
    body {
        background-color: var(--primary);
        color: var(--text);
    }
}
