
/* Simple CSS for the static site */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}
/* Navbar styles */
.navbar {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    margin-bottom: 2rem;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}
.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}
.navbar-brand {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    flex-shrink: 0;
}
.navbar-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}
.navbar-link {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
    padding: 0.5rem 0;
}
.navbar-link:hover {
    color: #000;
    text-decoration: none;
}
.navbar-link.active {
    color: #0066cc;
    font-weight: 500;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}
.card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.card-content {
    padding: 1.5rem;
}
.card h2 {
    font-size: 1.5rem;
    margin-top: 0;
}
a {
    color: #0066cc;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
/* New styles for blog post images */
.idea-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    max-height: 600px;
    width: auto;
}
.idea-image-full img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    max-height: 800px;
    width: auto;
}
.idea-card {
    margin-bottom: 2rem;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.idea-content {
    padding: 1.5rem;
}
.idea-content-full {
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}
.back-link {
    display: inline-block;
    margin: 1rem 0;
    padding: 0.5rem 0;
}
.product-list {
    margin-top: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.product-list h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #333;
}

.product-list ul {
    margin: 0;
    padding-left: 1.5rem;
}

.product-list li {
    margin-bottom: 0.5rem;
}

.product-list a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.2s;
}

.product-list a:hover {
    color: #004c99;
    text-decoration: underline;
}

.product-recommendations {
    background: #fff;
    border: 1px solid #e1e4e8;
    border-radius: 6px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.product-recommendations p {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #24292e;
    line-height: 1.5;
}

.product-recommendations ul {
    margin: 0;
    padding-left: 1.5rem;
}

.product-recommendations li {
    margin-bottom: 0.75rem;
}

.product-recommendations a {
    color: #0366d6;
    text-decoration: none;
}

.product-recommendations a:hover {
    text-decoration: underline;
    color: #044289;
}
