/* ============================================
   Résidence Les Neiges — Bright mountain style
   Unique CSS (anti-footprint)
   ============================================ */

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

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: #444;
  background: #f9f9f7;
}

a { color: #E91E63; }
a:hover { color: #C2185B; }

img { max-width: 100%; height: auto; }

.page { min-height: 100vh; display: flex; flex-direction: column; }

/* Header */
.hdr {
  background: #fff;
  border-bottom: 4px solid #8BC34A;
  padding: 0;
}
.hdr__top {
  padding: 18px 24px 8px;
}
.hdr__logo {
  font-family: 'Trebuchet MS', 'Segoe UI', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #E91E63;
  text-decoration: none;
  letter-spacing: -0.5px;
}
.hdr__logo:hover { color: #8BC34A; }
.hdr__nav {
  background: #8BC34A;
  padding: 10px 24px;
  display: flex;
  gap: 24px;
}
.hdr__link {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hdr__link:hover { color: #1B5E20; text-decoration: none; }
.hdr__link--active { border-bottom: 2px solid #fff; padding-bottom: 2px; }
.hdr__sub {
  padding: 6px 24px 10px;
  font-size: 13px;
  color: #888;
  font-style: italic;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #8BC34A 0%, #4CAF50 60%, #2E7D32 100%);
  color: #fff;
  padding: 50px 24px;
  text-align: center;
}
.hero h1 {
  font-family: 'Trebuchet MS', 'Segoe UI', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}
.hero p { font-size: 16px; opacity: 0.9; }

/* Content */
.content {
  flex: 1;
  padding: 35px 0 50px;
}
.content__wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-family: 'Trebuchet MS', 'Segoe UI', sans-serif;
  font-size: 22px;
  color: #333;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 3px solid #8BC34A;
}

/* Post preview (homepage) */
.post-preview {
  background: #fff;
  border: 1px solid #e8e8e4;
  border-left: 4px solid #8BC34A;
  border-radius: 0 6px 6px 0;
  padding: 20px 22px;
  margin-bottom: 18px;
  transition: box-shadow 0.2s;
}
.post-preview:hover {
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}
.post-preview h2 {
  font-family: 'Trebuchet MS', 'Segoe UI', sans-serif;
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 5px;
}
.post-preview h2 a { color: #333; text-decoration: none; }
.post-preview h2 a:hover { color: #E91E63; }
.post-preview time {
  font-size: 12px;
  color: #999;
  display: block;
  margin-bottom: 8px;
}
.post-preview p {
  color: #666;
  font-size: 14px;
  margin-bottom: 8px;
}
.read-more {
  font-size: 13px;
  font-weight: 700;
  color: #E91E63;
  text-decoration: none;
}
.read-more:hover { text-decoration: underline; }

/* Article */
.entry__head {
  margin-bottom: 30px;
}
.entry__title {
  font-family: 'Trebuchet MS', 'Segoe UI', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #222;
  line-height: 1.3;
  margin-bottom: 10px;
}
.entry__meta {
  font-size: 13px;
  color: #999;
}

.entry__body {
  color: #444;
  line-height: 1.75;
}
.entry__body p { margin-bottom: 16px; }
.entry__body h2 {
  font-family: 'Trebuchet MS', 'Segoe UI', sans-serif;
  font-size: 21px;
  color: #2E7D32;
  margin: 30px 0 12px;
  font-weight: 600;
}
.entry__body h3 {
  font-size: 17px;
  color: #4CAF50;
  margin: 22px 0 10px;
  font-weight: 600;
}
.entry__body ul, .entry__body ol {
  margin: 0 0 16px 24px;
}
.entry__body li { margin-bottom: 5px; }
.entry__body blockquote {
  border-left: 4px solid #8BC34A;
  padding: 12px 20px;
  margin: 18px 0;
  background: #f1f8e9;
  color: #555;
  font-style: italic;
  border-radius: 0 4px 4px 0;
}

/* Article footer */
.entry__foot {
  margin-top: 35px;
  padding-top: 18px;
  border-top: 2px solid #e8e8e4;
}
.entry__tags {
  font-size: 13px;
  color: #999;
}

/* Related */
.related { margin-top: 18px; }
.related h3 {
  font-size: 16px;
  color: #444;
  margin-bottom: 8px;
  font-weight: 600;
}
.related ul { list-style: none; padding: 0; }
.related li {
  padding: 5px 0;
  border-bottom: 1px solid #f0f0ec;
}
.related li:last-child { border-bottom: none; }

/* Footer */
.ftr {
  background: #2E7D32;
  color: rgba(255,255,255,0.8);
  padding: 22px 24px;
  text-align: center;
  font-size: 13px;
}
.ftr a { color: #C8E6C9; }
.ftr__bio {
  margin-top: 6px;
  font-size: 11px;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 640px) {
  .hero { padding: 35px 18px; }
  .hero h1 { font-size: 24px; }
  .hdr__logo { font-size: 24px; }
  .entry__title { font-size: 23px; }
  .content__wrap { padding: 0 16px; }
}
