* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: system-ui, -apple-system, sans-serif; color: #2D2D2D; background: #FAFAF8; line-height: 1.6; }
a { text-decoration: none; color: inherit; }

.site-header { background: #2C5F2D; color: white; padding: 1.5rem 2rem; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.site-header h1 { font-size: 1.5rem; }
.site-header h1 a { color: white; }
.site-header nav a { margin-left: 1.5rem; color: white; font-weight: 500; transition: opacity 0.2s; }
.site-header nav a:hover { opacity: 0.8; }

.hero { text-align: center; padding: 4rem 2rem; background: linear-gradient(135deg, #2C5F2D, #4A786D); color: white; }
.hero h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.stats { font-size: 1.2rem; opacity: 0.9; }

.featured-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; padding: 3rem 2rem; max-width: 1200px; margin: 0 auto; }

.property-card { background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.1); transition: transform 0.3s, box-shadow 0.3s; }
.property-card:hover { transform: translateY(-4px); box-shadow: 0 8px 16px rgba(0,0,0,0.15); }
.card-content { padding: 1.5rem; }
.card-content h3 { font-size: 1.25rem; margin-bottom: 0.5rem; color: #2C5F2D; }
.location { color: #666; font-size: 0.9rem; }
.type-badge { display: inline-block; margin-top: 0.5rem; padding: 0.25rem 0.75rem; border-radius: 20px; font-size: 0.85rem; background: #f0f0f0; border: 1px solid #ddd; }

.property-detail { max-width: 900px; margin: 2rem auto; padding: 0 2rem; }
.property-detail h1 { font-size: 2.5rem; color: #2C5F2D; margin-bottom: 1rem; }
.property-summary { font-size: 1.2rem; color: #555; margin: 1.5rem 0; line-height: 1.8; }
.property-stats { background: #f9f9f9; padding: 1.5rem; border-radius: 8px; margin: 2rem 0; }

.booking-links { background: linear-gradient(135deg, #2C5F2D, #4A786D); padding: 2rem; border-radius: 12px; margin: 2rem 0; color: white; }
.booking-links h2 { color: white; margin-bottom: 1rem; font-size: 1.5rem; }
.booking-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.booking-button { flex: 1; min-width: 200px; background: white; color: #2C5F2D; padding: 1rem 2rem; border-radius: 8px; text-align: center; font-weight: 600; transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 2px 8px rgba(0,0,0,0.2); }
.booking-button:hover { transform: scale(1.05); box-shadow: 0 4px 12px rgba(0,0,0,0.3); }
.search-note { margin-top: 1rem; font-size: 0.9rem; opacity: 0.9; }

.blog-index { max-width: 900px; margin: 2rem auto; padding: 0 2rem; }
.blog-index h1 { font-size: 2.5rem; color: #2C5F2D; margin-bottom: 0.5rem; }
.subtitle { font-size: 1.1rem; color: #666; margin-bottom: 2rem; }
.blog-posts { display: grid; gap: 2rem; }
.blog-card { background: white; padding: 2rem; border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); transition: transform 0.3s, box-shadow 0.3s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 16px rgba(0,0,0,0.15); }
.blog-card h2 { font-size: 1.5rem; color: #2C5F2D; margin-bottom: 0.5rem; }
.blog-card h2 a { color: #2C5F2D; }
.blog-card h2 a:hover { text-decoration: underline; }
.post-meta { color: #999; font-size: 0.9rem; margin-bottom: 1rem; }
.read-more { color: #2C5F2D; font-weight: 600; display: inline-block; margin-top: 1rem; }
.read-more:hover { text-decoration: underline; }

.blog-post { max-width: 800px; margin: 2rem auto; padding: 0 2rem; }
.post-header { margin-bottom: 2rem; border-bottom: 2px solid #2C5F2D; padding-bottom: 1rem; }
.post-header h1 { font-size: 2.5rem; color: #2C5F2D; margin-bottom: 0.5rem; }
.post-content { font-size: 1.1rem; line-height: 1.8; }
.post-content h2 { color: #2C5F2D; margin-top: 2rem; margin-bottom: 1rem; font-size: 1.8rem; }
.post-content ul { margin-left: 2rem; margin-top: 1rem; }
.post-content li { margin-bottom: 0.5rem; }
.post-content p { margin-bottom: 1rem; }
.post-footer { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid #ddd; }

footer { text-align: center; padding: 2rem; background: #f0f0f0; margin-top: 4rem; color: #666; }
footer a { color: #2C5F2D; font-weight: 500; }
footer a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .featured-grid { grid-template-columns: 1fr; }
  .site-header { flex-direction: column; gap: 1rem; }
  .site-header nav a { margin-left: 1rem; }
  .hero h2 { font-size: 1.8rem; }
  .booking-buttons { flex-direction: column; }
  .booking-button { min-width: 100%; }
  .property-detail h1 { font-size: 2rem; }
  .blog-post .post-header h1 { font-size: 2rem; }
}