/* Modern Reset and CSS Variables */
:root {
    --primary-red: #bf1400; --primary-red-hover: #990000;
    --primary-blue: #0055ff; --highlight-yellow: #fff5cc;
    --text-dark: #2d3748; --text-light: #718096;
    --bg-gray: #f7fafc; --border-color: #e2e8f0;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; line-height: 1.7; color: var(--text-dark); background-color: #ffffff; -webkit-font-smoothing: antialiased; }
a { color: var(--primary-blue); text-decoration: none; font-weight: 600; transition: color 0.2s ease; }
a:hover { color: var(--primary-red); text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; border-radius: 4px; }
strong { font-weight: 800; color: #000; }
h1, h2, h3, h4 { color: #1a202c; line-height: 1.3; margin-bottom: 1rem; }
p { margin-bottom: 1.5rem; }
.text-red { color: var(--primary-red); font-weight: 800; }
.highlight-box { background-color: var(--highlight-yellow); padding: 2px 6px; border-radius: 4px; }
header { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; padding: 20px; max-width: 1200px; margin: auto; gap: 20px; }
.header-promos { display: flex; flex-wrap: wrap; gap: 20px; align-items: flex-end; }
nav { background-color: var(--primary-red); padding: 15px 20px; position: sticky; top: 0; z-index: 100; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
.nav-container { 
    display: flex; 
    justify-content: flex-start; /* This aligns everything to the left */
    align-items: center;
    flex-wrap: wrap; 
    gap: 30px; /* Increased gap to push links further apart if desired */
    max-width: 1200px; 
    margin: 0 auto; /* Keeps the container centered on the page */
    width: 100%; 
    padding: 0 20px; /* This matches your header's padding, aligning it with the logo */
}.nav-container a { color: #ffffff; text-transform: uppercase; font-size: 0.85rem; font-weight: 800; letter-spacing: 0.5px; padding: 8px 12px; border-radius: 4px; }
.nav-container a:hover { background-color: rgba(255,255,255,0.1); text-decoration: none; color: #ffffff; }
.container { display: grid; grid-template-columns: 1fr 300px; gap: 50px; max-width: 1200px; margin: 40px auto 0 auto; padding: 0 20px; }
#date-display { font-size: 0.9rem; color: var(--text-light); margin-bottom: 2rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.hero-text { font-size: 1.5rem; line-height: 1.4; color: var(--primary-red); border-left: 4px solid var(--primary-red); padding-left: 20px; margin-bottom: 30px; font-weight: 800; }
.signature { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--border-color); }
.recommendations-wrapper { max-width: 1200px; margin: 40px auto; padding: 0 20px; }
.recommendations-section { padding-top: 40px; border-top: 2px dashed var(--border-color); }
.rec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 20px; }
.rec-card { background: var(--bg-gray); border: 1px solid var(--border-color); border-radius: 8px; padding: 20px; text-align: center; display: flex; flex-direction: column; justify-content: space-between; transition: transform 0.2s ease; }
.rec-card:hover { transform: translateY(-5px); box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
.btn-primary { display: inline-block; background-color: var(--primary-red); color: white; padding: 10px 20px; border-radius: 4px; text-transform: uppercase; font-size: 0.85rem; width: 100%; }
.btn-primary:hover { background-color: var(--primary-red-hover); color: white; text-decoration: none; }
aside { display: flex; flex-direction: column; gap: 30px; }
.sidebar-card { background: var(--bg-gray); border-radius: 8px; padding: 20px; text-align: center; border: 1px solid var(--border-color); }
.sidebar-header { background-color: var(--text-dark); color: #fff; text-transform: uppercase; font-weight: 800; padding: 10px; border-radius: 4px 4px 0 0; font-size: 0.9rem; }
.sidebar-list { border: 1px solid var(--border-color); border-top: none; border-radius: 0 0 4px 4px; padding: 15px; background: #fff; }
.sidebar-list a { display: block; margin-bottom: 10px; font-weight: 600; font-size: 0.95rem; }
.search-box input[type="text"] { width: 100%; padding: 10px; margin: 10px 0; border: 1px solid var(--border-color); border-radius: 4px; }
.search-box input[type="submit"] { background: var(--primary-blue); color: #fff; border: none; padding: 10px 15px; cursor: pointer; border-radius: 4px; font-weight: 600; width: 100%; }
footer { background-color: var(--text-dark); color: #fff; text-align: center; padding: 30px 20px; margin-top: 20px; }
/* Explicitly set the footer nav background to transparent */
.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    background-color: transparent !important; /* Forces transparency */
}

/* Optional: If you want to remove the footer background entirely, use this instead: */
/*
footer {
    background-color: transparent !important;
    color: var(--text-dark);
}
*/.footer-nav a { color: #cbd5e0; font-size: 0.75rem; white-space: nowrap; }
@media (max-width: 860px) { .container { grid-template-columns: 1fr; } header { flex-direction: column; } .rec-grid { grid-template-columns: 1fr 1fr; } }

.img-full-width {
    height: auto;    /* Keeps the aspect ratio correct */
    display: block;
    margin: 20px auto; /* Centers the image */
    box-shadow: 0 4px 12px rgba(0,0,0,0.08); /* Optional: keep your shadow effect */
}

/* About Page Specific Styles */
.hero-title { font-size: 2.2rem; font-weight: 800; color: var(--text-dark); margin-bottom: 25px; border-bottom: 2px solid var(--border-color); padding-bottom: 15px; }
.hero-quote { font-size: 1.4rem; line-height: 1.4; color: var(--primary-red); border-left: 4px solid var(--primary-red); padding-left: 20px; margin: 30px 0; font-weight: 800; }
.athletes-callout { background-color: #fff5f5; border-left: 4px solid var(--primary-red); padding: 20px; border-radius: 0 8px 8px 0; margin: 25px 0; font-weight: 600; color: var(--primary-red-hover); }
.mission-graphic { display: flex; justify-content: center; margin: 35px 0; }
.mission-graphic img { box-shadow: 0 4px 12px rgba(0,0,0,0.08); border: 1px solid var(--border-color); }
.profile-box { background-color: var(--bg-gray); border: 1px solid var(--border-color); border-radius: 8px; padding: 30px; margin-top: 50px; }
.profile-box h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 15px; padding-bottom: 10px; border-bottom: 2px solid var(--border-color); }
.back-top-link { display: inline-block; margin-top: 20px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; }

/* Andro Page Specific Styles */
.title-area { font-size: 1.2rem; font-weight: 800; color: var(--text-dark); margin-bottom: 25px; border-bottom: 2px solid var(--border-color); padding-bottom: 15px; }
.feature-block { display: flex; gap: 30px; align-items: flex-start; margin-bottom: 30px; }
.feature-block img { box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.qa-box { background-color: var(--bg-gray); border: 1px solid var(--border-color); border-radius: 8px; padding: 25px; margin: 30px 0; }
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin: 40px 0; }
.product-card { border: 1px solid var(--border-color); background: #ffffff; border-radius: 8px; padding: 25px; text-align: center; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05); display: flex; flex-direction: column; align-items: center; justify-content: space-between; }
.product-card img { margin-bottom: 20px; }
.price-text { font-size: 1.4rem; font-weight: 800; color: var(--text-dark); margin: 15px 0; }
.btn-buy { display: inline-block; background-color: #ffcc00; color: #000; padding: 12px 30px; border-radius: 4px; text-transform: uppercase; font-weight: 800; font-size: 0.9rem; letter-spacing: 0.5px; border: 2px solid #e6b800; width: 100%; max-width: 200px; margin-top: 15px; }
.btn-buy:hover { background-color: #f5c200; text-decoration: none; color: #000; }
.trust-badges { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 25px; margin: 30px 0; padding: 20px; border-top: 1px dashed var(--border-color); border-bottom: 1px dashed var(--border-color); }
.author-section { display: flex; gap: 25px; background: var(--bg-gray); padding: 25px; border-radius: 8px; border: 1px solid var(--border-color); margin: 40px 0; }
.countdown-box { text-align: center; margin: 30px 0; padding: 15px; border-radius: 4px; }

@media (max-width: 860px) {
    .feature-block { flex-direction: column-reverse; align-items: center; }
    .product-grid { grid-template-columns: 1fr; }
    .author-section { flex-direction: column; align-items: center; text-align: center; }
}

/* Center the Clint image */
.center-img {
    display: block;
    margin: 0 auto;
}

/* Ensure the product grid displays properly */
.product-grid {
    display: grid;
    /* This creates a responsive grid: 2 columns if space allows, 1 if narrow */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

/* Base File Badge Style */
.file-badge {
    font-size: 0.75rem;
    font-weight: 800;
    color: #ffffff;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 15px;
    min-width: 50px;
    text-align: center;
    display: inline-block;
    flex-shrink: 0; /* Prevents the badge from squishing */
}

/* Specific File Type Colors */
.badge-pdf { 
    background-color: #e53e3e; /* PDF Red */
}

.badge-doc { 
    background-color: #3182ce; /* Doc Blue */
}

.badge-html { 
    background-color: #38a169; /* HTML/Web Green */
}

/* Ensure the link stays beside the badge */
.directory-item { 
    display: flex; 
    align-items: center; 
    padding: 12px; 
    border-bottom: 1px solid var(--border-color);
}

.directory-link { 
    flex-grow: 1; 
}