/* Exterior Design - Static Site Stylesheet */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background: #2b2b2b;
  color: #333;
  line-height: 1.6;
}

a { color: #e8604c; text-decoration: none; }
a:hover { text-decoration: underline; }

/* Header */
.site-header {
  background: #2b2b2b;
  padding: 30px 0 0;
  text-align: left;
}
.site-header .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.site-title {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 72px;
  color: #fff;
  font-style: italic;
  font-weight: normal;
  margin-bottom: 5px;
}
.site-title a { color: #fff; }
.site-title a:hover { text-decoration: none; }
.site-tagline {
  color: #ccc;
  font-style: italic;
  font-size: 14px;
  margin-bottom: 15px;
}

/* Navigation */
.main-nav {
  background: #3a3a3a;
  border-top: 3px solid #e8604c;
}
.main-nav .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 0;
}
.main-nav li a {
  display: block;
  padding: 12px 20px;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.5px;
}
.main-nav li a:hover,
.main-nav li a.active {
  background: #e8604c;
  text-decoration: none;
}

/* Main Content */
.content-wrap {
  background: #f5f5f5;
  padding: 30px 0;
}
.content-wrap .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 30px;
}
.main-content { flex: 1; min-width: 0; }
.sidebar { width: 280px; flex-shrink: 0; }

/* Blog Post Card */
.post-card {
  background: #fff;
  margin-bottom: 25px;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
}
.post-card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.post-card-inner {
  display: flex;
}
.post-date-badge {
  background: #e8604c;
  color: #fff;
  min-width: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px 10px;
  text-align: center;
  flex-shrink: 0;
}
.post-date-badge .month {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: bold;
}
.post-date-badge .day {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
}
.post-date-badge .year {
  font-size: 12px;
}
.post-body {
  padding: 20px 25px;
  flex: 1;
}
.post-body h2 {
  font-size: 24px;
  margin-bottom: 10px;
  line-height: 1.3;
}
.post-body h2 a { color: #333; }
.post-body h2 a:hover { color: #e8604c; }
.post-excerpt {
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
}
.post-meta {
  font-size: 12px;
  color: #999;
  border-top: 1px solid #eee;
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
}
.post-meta .category { color: #e8604c; }
.read-more {
  display: inline-block;
  color: #e8604c;
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Single Post Page */
.single-post {
  background: #fff;
  padding: 30px;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  margin-bottom: 25px;
}
.single-post h1 {
  font-size: 32px;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.3;
}
.single-post .post-date {
  color: #999;
  font-size: 13px;
  margin-bottom: 20px;
}
.single-post .featured-image {
  width: 100%;
  max-height: 400px;
  overflow: hidden;
  margin-bottom: 25px;
  border-radius: 3px;
}
.single-post .featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.single-post .post-content {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}
.single-post .post-content p { margin-bottom: 15px; }
.back-link {
  display: inline-block;
  margin-bottom: 20px;
  color: #e8604c;
  font-weight: bold;
}

/* Sidebar */
.sidebar-widget {
  background: #fff;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.sidebar-widget h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e8604c;
}
.sidebar-widget ul {
  list-style: none;
}
.sidebar-widget ul li {
  padding: 5px 0;
  border-bottom: 1px solid #f0f0f0;
}
.sidebar-widget ul li:last-child { border-bottom: none; }
.sidebar-widget ul li a {
  font-size: 13px;
  color: #e8604c;
}
.sidebar-text {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Contact Page */
.contact-page {
  background: #fff;
  padding: 30px;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.contact-page h1 {
  font-size: 32px;
  color: #333;
  margin-bottom: 20px;
}
.breadcrumb {
  font-size: 13px;
  color: #999;
  margin-bottom: 20px;
}
.breadcrumb a { color: #e8604c; }

/* Footer */
.site-footer {
  background: #2b2b2b;
  color: #999;
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
}

/* Pagination */
.pagination {
  text-align: center;
  padding: 20px 0;
}
.pagination a, .pagination span {
  display: inline-block;
  padding: 8px 14px;
  margin: 0 3px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 3px;
  color: #333;
  font-size: 14px;
}
.pagination span.current {
  background: #e8604c;
  color: #fff;
  border-color: #e8604c;
}

/* Responsive */
@media (max-width: 768px) {
  .content-wrap .container { flex-direction: column; }
  .sidebar { width: 100%; }
  .site-title { font-size: 42px; }
  .post-card { flex-direction: column; }
  .post-date-badge { flex-direction: row; gap: 8px; padding: 10px 15px; }
  .main-nav ul { flex-wrap: wrap; }
}
