/* Big Red Creative - Static Site Styles */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Georgia, 'Times New Roman', serif;
  background-color: #fdf6f0;
  color: #4a4a4a;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* Header */
.header {
  text-align: center;
  padding: 40px 20px 20px;
  border-bottom: 1px solid #e5d5c5;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.logo-box {
  width: 50px;
  height: 50px;
  background-color: #c41e3a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  color: white;
  font-size: 24px;
  font-weight: bold;
  font-family: Arial, sans-serif;
}

.site-title {
  font-size: 28px;
  font-weight: normal;
  color: #333;
  letter-spacing: 2px;
}

/* Navigation */
.nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 15px 0;
}

.nav a {
  color: #c41e3a;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: opacity 0.2s;
}

.nav a:hover {
  opacity: 0.7;
}

/* Categories Sidebar Style */
.categories {
  text-align: center;
  padding: 20px 0;
  border-bottom: 1px solid #e5d5c5;
}

.categories-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #888;
  margin-bottom: 15px;
}

.categories-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.categories-list a {
  color: #c41e3a;
  font-size: 13px;
}

.categories-list a:hover {
  text-decoration: underline;
}

/* Main Content */
.main {
  padding: 40px 20px;
}

/* Hero Image */
.hero-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border: 1px solid #e5d5c5;
  border-radius: 4px;
  margin-bottom: 30px;
}

/* Welcome Section */
.welcome {
  text-align: center;
  margin-bottom: 40px;
}

.welcome h2 {
  font-size: 24px;
  font-weight: normal;
  color: #333;
  margin-bottom: 15px;
}

.welcome p {
  color: #666;
}

/* Article Card */
.article {
  display: flex;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid #e5d5c5;
}

.article-date {
  flex-shrink: 0;
  width: 60px;
  text-align: center;
}

.article-day {
  font-size: 28px;
  color: #333;
  line-height: 1;
}

.article-month {
  font-size: 11px;
  text-transform: uppercase;
  color: #888;
  letter-spacing: 1px;
}

.article-year {
  font-size: 11px;
  color: #aaa;
}

.article-content {
  flex: 1;
}

.article-category {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #c41e3a;
  margin-bottom: 8px;
}

.article-category:hover {
  text-decoration: underline;
}

.article-title {
  font-size: 18px;
  font-weight: normal;
  color: #333;
  margin-bottom: 10px;
}

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

.article-title a:hover {
  color: #c41e3a;
}

.article-excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

/* Pagination */
.pagination {
  text-align: center;
  padding: 40px 0;
  color: #888;
  font-size: 12px;
  letter-spacing: 2px;
}

/* Page Header */
.page-header {
  text-align: center;
  margin-bottom: 40px;
}

.page-header h1 {
  font-size: 28px;
  font-weight: normal;
  color: #333;
  margin-bottom: 15px;
}

.page-header p {
  color: #666;
}

/* About Page */
.about-content {
  max-width: 600px;
  margin: 0 auto;
}

.about-content p {
  margin-bottom: 20px;
  color: #666;
  line-height: 1.8;
}

/* Contact Page */
.contact-info {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

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

.contact-info a {
  color: #c41e3a;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-form {
  max-width: 500px;
  margin: 40px auto 0;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #e5d5c5;
  background: white;
  font-family: Georgia, serif;
  font-size: 14px;
  color: #333;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #c41e3a;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  background-color: #c41e3a;
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.submit-btn:hover {
  opacity: 0.9;
}

/* Footer */
.footer {
  text-align: center;
  padding: 30px 20px;
  border-top: 1px solid #e5d5c5;
  color: #888;
  font-size: 12px;
}

.footer p {
  margin-bottom: 5px;
}

.footer a {
  color: #c41e3a;
}

.footer a:hover {
  text-decoration: underline;
}

/* Blog Post Page */
.blog-post {
  max-width: 700px;
  margin: 0 auto;
}

.blog-post-meta {
  text-align: center;
  margin-bottom: 30px;
}

.blog-post-meta .article-category {
  margin-bottom: 10px;
}

.blog-post-meta .date {
  color: #888;
  font-size: 14px;
}

.blog-post h1 {
  text-align: center;
  font-size: 28px;
  font-weight: normal;
  color: #333;
  margin-bottom: 30px;
}

.blog-post-content p {
  margin-bottom: 20px;
  color: #666;
  line-height: 1.8;
}

.back-link {
  display: inline-block;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #e5d5c5;
  color: #c41e3a;
  font-size: 14px;
}

.back-link:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
  .nav {
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .article {
    flex-direction: column;
    gap: 15px;
  }
  
  .article-date {
    display: flex;
    gap: 8px;
    align-items: baseline;
  }
  
  .categories-list {
    gap: 15px;
  }
}
