:root {
    --color-primary: #004d99; /* Deep Pro Blue */
    --color-secondary: #007bff; /* Standard Blue */
    --color-tertiary: #6aa8d8; /* Lighter Accent Blue */
    --color-dark: #212529; /* Dark text */
    --color-light: #f4f7fa; /* Very light blue/off-white background */
    --color-white: #ffffff;
    --font-family: 'Roboto', sans-serif;
}

/* --- Base Styles --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--color-primary);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-secondary);
}

/* UPDATED: Navigation Styles */
.main-nav {
    background-color: var(--color-light); /* Changed to light background */
    padding: 10px 0; /* Reduced padding */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); /* Lighter shadow */
    /* REMOVED: position: sticky; and z-index: 1000; */
    border-bottom: 3px solid var(--color-primary); /* Simple bottom separator */
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center; /* Center the menu items */
    margin: 0;
    padding: 0;
}

.main-nav ul li {
    margin: 0 20px; /* Increased margin for better separation */
}

.main-nav ul li a {
    color: var(--color-dark); /* Dark text on light background */
    font-weight: 700;
    font-size: 1em;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-nav ul li a:hover {
    color: var(--color-white);
    background-color: var(--color-secondary); /* Hover color for accent */
}
/* END UPDATED: Navigation Styles */


/* --- Typography & Separators --- */
h1, h2, h3 {
    font-weight: 900;
    margin-bottom: 0.5em;
}

.section-title {
    font-size: 2.5em;
    color: var(--color-dark);
    text-align: center;
    margin-bottom: 0.5em;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--color-primary);
    margin: 0.5em auto 0;
    border-radius: 2px;
}

/* FIX: New Centered Container for Subtitle and Logos */
.subtitle-block {
    text-align: center;
    font-size: 1.1em;
    color: #6c757d;
    margin-bottom: 3em;
}

/* FIX: Flex container to hold the logos and the surrounding text in a centered row */
.logo-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px; /* Spacing between text/logo groups */
    flex-wrap: wrap;
    margin-bottom: 5px;
}

/* FIX: Logo group specifically for the icons */
.logo-group {
    display: flex;
    gap: 8px;
}

/* NEW: Styles for individual text/CSS logos */
.sport-icon-logo {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    font-size: 10px;
    font-weight: 900;
    color: var(--color-white);
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
}
/* Custom Colors for Mock Logos */
.logo-nfl { background-color: #01336a; border: 1px solid #d50a0a; }
.logo-nba { background-color: #c9082a; border: 1px solid #17408B; }
.logo-nhl { background-color: #000000; border: 1px solid #c8102E; }
.logo-mlb { background-color: #041E42; border: 1px solid #e20021; }
.logo-ncaa { background-color: #0033a0; border: 1px solid #ee6600; }

/* --- Header / Hero Section --- */
.hero-section {
    background: 
        repeating-linear-gradient(
            45deg,
            var(--color-primary) 0,
            var(--color-primary) 10px,
            #0064c8 10px,
            #0064c8 20px
        );
    background-blend-mode: multiply;
    color: white;
    padding: 80px 0;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 8px solid var(--color-tertiary);
}

.hero-section h1 {
    font-size: 4.5em;
    margin-bottom: 0.1em;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}

.tagline {
    font-size: 1.6em;
    font-weight: 700;
    margin-bottom: 1.5em;
}

/* --- Mission Section --- */
.mission-section {
    padding: 50px 0;
    text-align: center;
    background-color: var(--color-light);
    border-bottom: 1px solid var(--color-tertiary);
}

.mission-section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2em;
    font-weight: 400;
    color: var(--color-dark);
}

/* --- Legal Section (added placeholder for context) --- */
.legal-section {
    padding: 50px 0;
    text-align: left;
    background-color: var(--color-light);
    border-bottom: 1px solid var(--color-tertiary);
}

.legal-section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1em;
    font-weight: 400;
    color: var(--color-dark);
}

/* --- Product Section --- */
.products-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

.product-list-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.product-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    border-bottom: 1px dashed var(--color-light);
    transition: background-color 0.3s ease;
}

.product-item:hover {
    background-color: var(--color-light);
    border-radius: 4px;
}

/* FIX: Product Icon styles (using placeholders for better look) */
.product-icon {
    font-size: 2em;
    color: var(--color-primary);
    margin-right: 15px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--color-tertiary);
    border: 3px solid var(--color-secondary);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0; /* Prevents icon from shrinking on small screens */
}

/* Specific product icon styles (using emojis as placeholders for visual context) */
.product-item:nth-child(1) .product-icon { background-color: #e6f0ff; border-color: #007bff; color: #007bff; }
.product-item:nth-child(2) .product-icon { background-color: #ffe6e6; border-color: #dc3545; color: #dc3545; }
.product-item:nth-child(3) .product-icon { background-color: #fff8e1; border-color: #ffc107; color: #ffc107; }
.product-item:nth-child(4) .product-icon { background-color: #e6ffec; border-color: #28a745; color: #28a745; }
.product-item:nth-child(5) .product-icon { background-color: #e6faff; border-color: #17a2b8; color: #17a2b8; }
.product-item:nth-child(6) .product-icon { background-color: #f7f0ff; border-color: #6f42c1; color: #6f42c1; }

.product-content {
    flex-grow: 1;
}

.product-content h3 {
    margin-top: 0;
    margin-bottom: 0.2em;
    color: var(--color-primary);
    font-size: 1.4em;
}

.product-content p {
    color: #6c757d;
}

/* --- Locations Section --- */
.location-section {
    background-color: var(--color-light);
    padding: 80px 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.partner-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.partner-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Mock Photo Backgrounds */
.location-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    border-bottom: 4px solid var(--color-primary);
}

.mall-kiosk {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('https://via.placeholder.com/600x400/004d99/ffffff?text=Mall+Kiosk+Booth');
}

.office-lobby {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('https://via.placeholder.com/600x400/007bff/ffffff?text=Office+Lobby+Pop-up');
}

.plaza-tent {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('https://via.placeholder.com/600x400/6aa8d8/ffffff?text=Outdoor+Plaza+Vendor');
}

.partner-card h3 {
    padding-top: 20px;
    margin-bottom: 0.2em;
}

.location-type {
    display: inline-block;
    background-color: var(--color-secondary);
    color: white;
    font-size: 0.8em;
    padding: 6px 15px;
    border-radius: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

/* --- Contact Section --- */
.contact-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    text-align: center;
}

.contact-item {
    min-width: 280px;
    padding: 30px;
    border: 1px solid var(--color-tertiary);
    border-radius: 8px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.contact-item:hover {
    background-color: var(--color-light);
    border-color: var(--color-primary);
}

.contact-item .icon {
    font-size: 1.8em;
    color: white;
    border: none;
}

.contact-item a {
    font-weight: 700;
    font-size: 1.2em;
    color: var(--color-dark);
}

.contact-item a:hover {
    color: var(--color-secondary);
}

/* --- Footer --- */
footer {
    background-color: var(--color-dark);
    color: #adb5bd;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9em;
}

/* --- Responsiveness --- */
@media (min-width: 768px) {
    /* Two columns for product list on larger screens */
    .product-list-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 3.5em;
        letter-spacing: 3px;
    }
    .mission-section, .products-section, .location-section {
        padding: 50px 0;
    }
}