/*
Theme Name: Verdant Travel Theme
Theme URI: https://example.com/verdant
Author: Your Name
Author URI: https://example.com
Description: A lightweight, responsive, forest-green minimalist travel theme built for custom WordPress deployments.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: verdant-theme
*/

/* Reset & Layout Essentials */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; line-height: 1.6; color: #1D2320; background: #FAFAFA; }
a { color: #2E6F57; text-decoration: none; }
a:hover { text-decoration: underline; }

.site-container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.site-header { background: #FFFFFF; border-bottom: 1px solid rgba(46, 111, 87, 0.12); padding: 20px 0; }
.site-header .site-container { display: flex; justify-content: space-between; align-items: center; }
.site-title { font-size: 1.5rem; font-weight: bold; }
.site-title a { color: #1F4B3B; }

.main-navigation ul { display: flex; list-style: none; gap: 20px; }
.main-navigation a { font-weight: 500; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.05em; }

.content-wrapper { display: flex; gap: 40px; margin: 40px 0; }
.main-content { flex: 1; min-width: 0; }
.main-content.full-width { flex: 100%; }

.sidebar { width: 300px; flex-shrink: 0; }
.widget { background: #FFFFFF; padding: 20px; margin-bottom: 20px; border-radius: 8px; border: 1px solid rgba(46, 111, 87, 0.12); box-shadow: 0 4px 12px rgba(0,0,0,0.02); }
.widget-title { font-size: 1.1rem; margin-bottom: 12px; border-bottom: 2px solid #2E6F57; padding-bottom: 5px; color: #1F4B3B; }

article.entry { background: #FFFFFF; padding: 30px; margin-bottom: 30px; border-radius: 8px; border: 1px solid rgba(46, 111, 87, 0.12); box-shadow: 0 4px 12px rgba(0,0,0,0.02); }
.entry-title { margin-bottom: 10px; font-size: 1.8rem; }
.entry-title a { color: #1D2320; }
.entry-meta { font-size: 0.85rem; color: #626A65; margin-bottom: 20px; }
.entry-thumbnail { margin-bottom: 20px; }
.entry-thumbnail img { width: 100%; height: auto; border-radius: 6px; }

.footer-widgets { background: #1F4B3B; color: #FFFFFF; padding: 40px 0; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-widgets .site-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.footer-widgets .widget { background: transparent; border: none; color: #FFFFFF; padding: 0; box-shadow: none; }
.footer-widgets .widget-title { border-color: #D4A373; color: #FFFFFF; }
.footer-widgets a { color: #D4A373; }

.site-footer { background: #173026; color: rgba(255,255,255,0.7); text-align: center; padding: 20px 0; font-size: 0.85rem; }

/* Forms */
.search-form { display: flex; gap: 8px; }
.search-form input[type="search"] { flex: 1; padding: 8px 12px; border: 1px solid #CCC; border-radius: 4px; }
.search-form button { background: #2E6F57; color: #FFFFFF; border: none; padding: 8px 16px; border-radius: 4px; cursor: pointer; }

/* Comments */
.comment-list { list-style: none; margin-bottom: 20px; }
.comment-list li { border-bottom: 1px solid #EEE; padding: 15px 0; }

/* Responsive */
@media (max-width: 768px) {
  .content-wrapper { flex-direction: column; }
  .sidebar { width: 100%; }
}