/*
Theme Name: Placento
Version: 1.0.0
Description: Placento marketing theme
Text Domain: placento-theme
*/

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; color: #1a1a2e; line-height: 1.6; }
a { color: #006847; text-decoration: none; }
a:hover { color: #004d33; }
img { max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* === HEADER === */
.site-header { background: #fff; border-bottom: 1px solid #e8e8e8; padding: 16px 0; position: sticky; top: 0; z-index: 100; }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.logo a { font-size: 24px; font-weight: 700; color: #006847; text-decoration: none; }
.primary-nav { display: flex; align-items: center; gap: 24px; }
.primary-menu, .footer-menu { list-style: none; display: flex; gap: 20px; margin: 0; }
.primary-menu a, .footer-menu a { color: #444; font-size: 14px; font-weight: 500; }
.btn { display: inline-block; padding: 12px 28px; border-radius: 8px; font-weight: 600; font-size: 14px; cursor: pointer; transition: all 0.2s; }
.btn-primary { background: #006847; color: #fff; border: none; }
.btn-primary:hover { background: #004d33; color: #fff; }
.btn-outline { background: transparent; border: 2px solid #006847; color: #006847; }
.btn-outline:hover { background: #006847; color: #fff; }

/* === HERO === */
.hero { background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); padding: 96px 0 80px; text-align: center; }
.hero h1 { font-size: 48px; line-height: 1.2; color: #1a1a2e; margin-bottom: 20px; max-width: 800px; margin-left: auto; margin-right: auto; }
.hero p { font-size: 20px; color: #555; margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === FEATURES === */
.features { padding: 80px 0; background: #fff; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.feature { text-align: center; padding: 40px 24px; border-radius: 12px; background: #f9fafb; transition: transform 0.2s; }
.feature:hover { transform: translateY(-4px); }
.feature-icon { font-size: 40px; margin-bottom: 16px; }
.feature h3 { font-size: 20px; color: #1a1a2e; margin-bottom: 12px; }
.feature p { font-size: 15px; color: #666; line-height: 1.7; }

/* === FOOTER === */
.site-footer { background: #1a1a2e; color: #ccc; padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.site-footer h4 { color: #fff; font-size: 16px; margin-bottom: 16px; }
.site-footer p { font-size: 14px; line-height: 2; }
.site-footer a { color: #94a3b8; }
.site-footer a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #334155; padding-top: 24px; text-align: center; font-size: 13px; color: #64748b; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .hero h1 { font-size: 32px; }
    .hero p { font-size: 18px; }
    .feature-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .site-header .container { flex-direction: column; gap: 16px; }
    .primary-nav { flex-direction: column; width: 100%; }
    .primary-menu { flex-direction: column; align-items: center; }
}
