:root {
    --wimbledon-green: #2D6149;
    --wimbledon-dark: #1a3a2d;
    --wimbledon-light: #4a8c6f;
    --accent-gold: #FFB800;
    --bg-cream: #FAFAF8;
    --bg-light-green: #E8F5E9;
    --text-dark: #1a1a1a;
    --text-gray: #4a4a4a;
    --text-light: #6a6a6a;
    --white: #ffffff;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-cream);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
nav {
    background: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(45, 97, 73, 0.08);
}

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

.logo {
    font-family: 'Space Mono', monospace;
    font-size: 24px;
    font-weight: 700;
    color: var(--wimbledon-green);
    letter-spacing: -0.5px;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--wimbledon-green);
}

.nav-cta {
    background: var(--wimbledon-green);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--wimbledon-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 97, 73, 0.3);
}

/* Blog Section */
.blog-header {
    padding: 80px 0;
    background: var(--bg-light-green);
    text-align: center;
}

.blog-header h1 {
    font-size: 56px;
    font-weight: 800;
    color: var(--wimbledon-dark);
    margin-bottom: 16px;
}

.blog-header p {
    font-size: 20px;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

.blog-listing {
    padding: 80px 0;
}

.search-filter {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.search-filter input {
    width: 100%;
    max-width: 600px;
    padding: 16px 24px;
    border: 2px solid var(--wimbledon-light);
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Outfit', sans-serif;
    outline: none;
    transition: all 0.3s ease;
}

.search-filter input:focus {
    border-color: var(--wimbledon-green);
    box-shadow: 0 0 0 4px rgba(45, 97, 73, 0.1);
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.blog-post-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.blog-post-card .card-content {
    padding: 32px;
}

.blog-post-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-post-card h3 a {
    text-decoration: none;
    color: var(--wimbledon-dark);
    transition: color 0.3s ease;
}

.blog-post-card h3 a:hover {
    color: var(--wimbledon-green);
}

.post-meta {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
    font-weight: 500;
}

.blog-post-card p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 24px;
}

.read-more {
    font-weight: 600;
    color: var(--wimbledon-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--wimbledon-dark);
}


/* Single Blog Post */
.blog-post-section {
    padding: 80px 0;
}

.blog-post-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
}

.blog-post-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--wimbledon-dark);
    line-height: 1.2;
    margin-bottom: 24px;
    font-family: Arial, sans-serif;
}

.blog-post-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--wimbledon-green);
    margin-top: 40px;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
}

.blog-post-content p, .blog-post-content li {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
    font-family: Arial, sans-serif;
}

.blog-post-content ul {
    list-style-position: inside;
}

.blog-post-content a {
    color: var(--wimbledon-green);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.blog-post-content a:hover {
    color: var(--wimbledon-dark);
}

.blog-post-content strong, .blog-post-content b {
    font-weight: 700;
    color: var(--text-dark);
}

/* Footer */
footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-family: 'Space Mono', monospace;
    font-size: 24px;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand p {
    line-height: 1.7;
    font-size: 15px;
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    display: grid;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--wimbledon-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
}