/* Core Styling */

/* Global Font Reset */
* {
    font-family: 'Avenir', 'Helvetica Neue', Arial, sans-serif !important;
}

body, html {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Specific Header Styling */
.reports-hero h1 {
    font-family: 'Avenir', sans-serif !important;
    font-weight: 100; /* Maintains the light, elegant look */
    letter-spacing: 1px;
}

.report-card h3 {
    font-family: 'Avenir', sans-serif !important;
    font-weight: 500;
    font-size: 1.5rem;
    color: #001639;
}

/* Disclaimer and Navigation */
.disclaimer, .nav-links a {
    font-family: 'Avenir', sans-serif !important;
}
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Avenir', Arial, sans-serif;
    background-color: #ffffff;
    color: #333;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar (Matching Home) */
.navbar {
    background-color: #001639;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 40px;
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.nav-links a.active {
    border-bottom: 2px solid #ce1126; /* Logo red accent */
    padding-bottom: 5px;
}

/* Reports Hero Section */
.reports-hero {
    background-image: url('https://s3.amazonaws.com/www.lumegroup.com/images/Alpine_Clouds.jpg');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    color: white;
}

.hero-overlay {
    background: rgba(0, 22, 57, 0.6); /* Navy tint for readability */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.reports-hero h1 {
    font-size: 3rem;
    margin: 0;
    font-weight: 100;
}

/* Content Area */
.reports-content {
    padding: 60px 0;
}

.disclaimer {
    font-size: 1.25rem;
    color: #777;
    border-left: 3px solid #001639;
    padding-left: 15px;
    margin-bottom: 50px;
    line-height: 1.4;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #001639;
}

/* The Fixed 3-Column Report Grid */
.report-grid {
    display: grid;
    /* Force exactly 3 columns of equal width */
    grid-template-columns: repeat(3, 1fr);
    gap: 50px; /* Increased gap for larger elements */
    margin-top: 40px;
    margin-bottom: 80px;
}

/* Enlarged Report Cards */
.report-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.report-card img {
    width: 100%; /* Spans the full width of the 1/3 column */
    max-width: 320px; /* Limits maximum growth to keep it crisp */
    height: auto;
    border: 1px solid #ddd;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
}

/* Enhanced Hover State */
.report-card:hover {
    transform: translateY(-10px);
}

.report-card:hover img {
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
    border-color: #001639;
}

/* Enlarged Typography for 3-column layout */
.report-card h3 {
    margin-top: 20px;
    font-size: 1.5rem; /* Larger font to match larger thumbnails */
    color: #001639;
    font-family: 'Avenir', sans-serif;
    font-weight: 500;
}

.report-card a {
    text-decoration: none;
}

/* Footer (Matching Home) */
.site-footer {
    background-color: #001639;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.footer-shield {
    height: 230px;
    margin-bottom: 20px;
}

/* Responsive adjustment for tablets and phones */
@media (max-width: 768px) {
    .report-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 per row on tablets */
    }
}

@media (max-width: 480px) {
    .report-grid {
        grid-template-columns: 1fr; /* 1 per row on phones */
    }
}
