/*
 * ARJ Mexico Collegiate Rings Landing Page
 * Main Frontend Styles
 */

:root {
    --arj-navy: #002A5C;
    --arj-orange: #FF6B16;
    --arj-orange-light: #ff8a45;
    --arj-dark-navy: #001a3a;
    --arj-gray-light: #f8f9fa;
    --arj-gray-medium: #e9ecef;
    --arj-text-dark: #333333;
    --arj-text-medium: #666666;
    --arj-white: #ffffff;
}

/* Global Styles for Landing Page */
.arj-collegiate-landing-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--arj-text-dark);
}

.arj-collegiate-landing-page h1,
.arj-collegiate-landing-page h2,
.arj-collegiate-landing-page h3 {
    font-weight: 700;
    line-height: 1.2;
}

.arj-collegiate-landing-page p {
    margin-bottom: 1rem;
}

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

/* CTA Button Styles */
.arj-cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--arj-orange) 0%, var(--arj-orange-light) 100%);
    color: var(--arj-white);
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 22, 0.4);
    cursor: pointer;
    border: none;
}

.arj-cta-button:hover {
    background: linear-gradient(135deg, var(--arj-orange-light) 0%, var(--arj-orange) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 22, 0.6);
    color: var(--arj-white);
    text-decoration: none;
}

/* Section Spacing */
.arj-section {
    padding: 80px 20px;
}

.arj-section-dark {
    background: var(--arj-navy);
    color: var(--arj-white);
}

.arj-section-light {
    background: var(--arj-gray-light);
}

/* Container */
.arj-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.arj-fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Responsive Images */
.arj-responsive-img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Grid Layouts */
.arj-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.arj-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.arj-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .arj-section {
        padding: 60px 20px;
    }

    .arj-grid-2,
    .arj-grid-3,
    .arj-grid-4 {
        grid-template-columns: 1fr;
    }

    .arj-cta-button {
        font-size: 1.1rem;
        padding: 15px 30px;
    }
}

/* Accessibility */
.arj-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--arj-orange);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .arj-hero-championship,
    .arj-stats-bar {
        page-break-inside: avoid;
    }
}
