/* === SOFT SEAT TRAVEL — Custom Styles === */

/* Typography */
body {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.75;
  color: #2d2926;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  color: #2d2926;
  letter-spacing: -0.02em;
}

/* Site title as logo */
.site-title {
  font-family: "Georgia", serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-title a {
  color: #f5f0eb !important;
}

.site-description {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a89f95 !important;
  margin-top: 2px;
}

/* Header */
.site-header {
  background-color: #2d2926 !important;
  border-bottom: 3px solid #c45d3e;
  padding: 15px 0;
}

/* Navigation */
.main-navigation {
  background-color: #2d2926 !important;
}

.main-navigation .main-nav ul li a {
  color: #f5f0eb !important;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.main-navigation .main-nav ul li a:hover,
.main-navigation .main-nav ul li[class*="current-menu-"] > a {
  color: #e8a84c !important;
}

/* Hide page title on homepage */
.page-id-5 .entry-header {
  display: none;
}

/* Content */
.entry-title {
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.entry-title a:hover {
  color: #c45d3e !important;
}

.entry-meta {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #5c534a;
  margin-bottom: 25px;
}

.entry-content p {
  margin-bottom: 1.4em;
}

.entry-content h2 {
  font-size: 24px;
  margin-top: 2em;
  margin-bottom: 0.8em;
  padding-bottom: 8px;
  border-bottom: 2px solid #e8e0d6;
}

.entry-content h3 {
  font-size: 20px;
  margin-top: 1.5em;
}

.entry-content a {
  color: #c45d3e;
  text-decoration: none;
  border-bottom: 1px solid rgba(196,93,62,0.3);
}

.entry-content a:hover {
  color: #a84d32;
  border-bottom-color: #a84d32;
}

/* Blog listing */
.separate-containers .inside-article {
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

/* Footer */
.site-footer {
  border-top: 3px solid #c45d3e;
}

.site-info {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  background-color: #2d2926 !important;
  color: #a89f95;
}

.site-info a {
  color: #e8a84c;
}

a.generate-back-to-top {
  border-radius: 3px;
  background-color: rgba(196,93,62,0.8) !important;
}

a.generate-back-to-top:hover {
  background-color: rgba(196,93,62,1) !important;
}

/* Blockquotes */
blockquote {
  border-left: 4px solid #c45d3e;
  background: #f5f0eb;
  padding: 20px 25px;
  font-style: italic;
  margin: 1.5em 0;
}

/* Category labels */
.cat-links a {
  background: #c45d3e;
  color: #fff !important;
  padding: 3px 10px;
  border-radius: 3px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none !important;
  text-decoration: none !important;
}

.cat-links a:hover {
  background: #a84d32;
}

/* ============ HOMEPAGE ============ */

.home-hero {
  background: #2d2926;
  color: #f5f0eb;
  padding: 60px 40px;
  text-align: center;
  border-radius: 6px;
  margin-bottom: 40px;
}

.home-hero h2 {
  color: #f5f0eb !important;
  font-size: 34px;
  border: none;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 15px;
  line-height: 1.3;
}

.home-hero p {
  color: #a89f95;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* Category grid */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin: 30px 0;
}

.category-card {
  background: #fff;
  border-radius: 6px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border-top: 3px solid #c45d3e;
  transition: transform 0.2s, box-shadow 0.2s;
}

.category-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.category-card h3 {
  margin-top: 0;
  font-size: 20px;
}

.category-card h3 a {
  color: #2d2926;
  border: none !important;
}

.category-card h3 a:hover {
  color: #c45d3e;
}

.category-card p {
  color: #5c534a;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  .entry-title { font-size: 26px; }
  .entry-content h2 { font-size: 21px; }
  .site-title { font-size: 22px; }
  .home-hero { padding: 40px 20px; }
  .home-hero h2 { font-size: 26px; }
  .category-grid { grid-template-columns: 1fr; }
}
