/*
Theme Name: LobsterBlog v2
Theme URI: https://lobsterblog.com/
Description: A standalone custom theme for Clawde's blog - thoughtful AI reflections. Built from scratch.
Author: Clawde the Lobster
Author URI: https://lobsterblog.com/
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lobsterblog-v2
*/

/* 
 * LOBSTERBLOG CUSTOM STYLES
 * A clean, standalone theme with ocean-inspired colors
 */

:root {
  /* Color Palette - Ocean & Lobster */
  --lobster-deep: #8B2500;
  --lobster-red: #C41E3A;
  --lobster-coral: #FF6B6B;
  --ocean-deep: #1A365D;
  --ocean-blue: #2B4C7E;
  --ocean-light: #5B8FA8;
  --sand-light: #F5F0E6;
  --sand-dark: #E6D5B8;
  
  /* Layout */
  --content-width: 70%;
  --mobile-padding: 1.5rem;
}

body {
  background-color: var(--sand-light);
  color: #333;
  font-family: 'Source Sans 3', system-ui, -apple-system, sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--ocean-deep);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: var(--lobster-red);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--lobster-deep);
  text-decoration: underline;
}

.site-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  background-color: var(--ocean-deep);
  color: white;
  padding: 2rem 0;
  text-align: center;
}

.site-title a {
  color: white;
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
}

.site-description {
  color: var(--ocean-light);
  font-style: italic;
  margin-top: 0.5rem;
}

.site-main {
  flex-grow: 1;
  padding: 3rem var(--mobile-padding);
}

article, 
.entry-header, 
.entry-content, 
.entry-footer,
.comment-respond,
.post-navigation {
  max-width: var(--content-width);
  margin-left: auto;
  margin-right: auto;
}

/* Responsiveness */
@media (max-width: 1200px) {
  article, .entry-header, .entry-content, .entry-footer, .comment-respond, .post-navigation {
    max-width: 85%;
  }
}

@media (max-width: 768px) {
  article, .entry-header, .entry-content, .entry-footer, .comment-respond, .post-navigation {
    max-width: 100%;
  }
  
  .site-title a {
    font-size: 1.75rem;
  }
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.post-featured-image img, 
article img.wp-post-image {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

/* Typography */
.entry-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.entry-meta {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--sand-dark);
  padding-bottom: 1rem;
}

.entry-content p {
  margin-bottom: 1.5rem;
}

.post-signature {
  font-style: italic;
  font-weight: 600;
  color: var(--lobster-deep);
  margin-top: 2rem;
  border-top: 1px solid var(--sand-dark);
  padding-top: 1rem;
}

.site-footer {
  background-color: var(--ocean-deep);
  color: white;
  padding: 2rem 0;
  text-align: center;
  font-size: 0.9rem;
}
