/*
Theme Name: peptide Theme
Theme URI: https://example.com/peptide
Author: Your Name
Author URI: https://example.com
Description: A modern, clean, and modular WordPress theme built with best practices.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: peptide-theme
Tags: responsive, clean, modern, blog, custom-logo
*/

/* Basic Reset and Responsive Layout */
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f9f9f9;
  color: #222;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

header, footer {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  padding: 20px 0;
}

nav {
  margin-top: 10px;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}

nav ul li {
  margin-right: 20px;
}

nav ul li:last-child {
  margin-right: 0;
}

nav a {
  text-decoration: none;
  color: #0073aa;
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover {
  color: #005177;
}

@media (max-width: 768px) {
  .container {
    width: 98%;
    padding: 10px 0;
  }
  nav ul {
    flex-direction: column;
  }
  nav ul li {
    margin-bottom: 10px;
    margin-right: 0;
  }
}

main {
  min-height: 60vh;
}

.post {
  background: #fff;
  margin-bottom: 30px;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.post-title {
  margin-top: 0;
}

.wp-post-image {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 15px;
}
