/*
Theme Name: Twenty Twenty-Four
Description: A clean, minimal theme for WordPress 6.6+
Version: 6.6
Author: WordPress.org
*/

/* Reset and base styles */
* {
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #f8f9fa;
  color: #333;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.site-branding {
  padding: 20px 0;
  text-align: center;
}

.site-title {
  margin: 0;
  font-size: 2.5em;
}

.site-title a {
  color: #333;
  text-decoration: none;
}

.site-description {
  margin: 10px 0 0 0;
  color: #666;
  font-style: italic;
}

/* Navigation */
.main-navigation {
  background: #0073aa;
  padding: 0;
}

.main-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

.main-navigation li {
  margin: 0;
}

.main-navigation a {
  display: block;
  padding: 15px 20px;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s;
}

.main-navigation a:hover {
  background-color: #005a87;
}

/* Main content */
.site-main {
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #333;
  margin-top: 0;
}

h1 {
  border-bottom: 2px solid #0073aa;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

h2 {
  color: #555;
  margin-top: 30px;
  margin-bottom: 15px;
}

p {
  color: #666;
  margin-bottom: 15px;
}

a {
  color: #0073aa;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Posts */
.posts-container article {
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}

.posts-container article:last-child {
  border-bottom: none;
}

.entry-title {
  margin: 0 0 10px 0;
}

.entry-title a {
  color: #333;
}

.entry-meta {
  color: #666;
  font-size: 0.9em;
  margin-bottom: 15px;
}

.entry-content {
  margin-bottom: 15px;
}

/* Footer */
.site-footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 30px;
}

.site-info {
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }

  .site-main {
    padding: 20px;
  }

  .main-navigation ul {
    flex-direction: column;
  }

  .site-title {
    font-size: 2em;
  }
}
