/* Nashville Wedding Directory - Main Stylesheet */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --rose: #c8796a;
  --rose-light: #f5e6e3;
  --rose-dark: #a05a4d;
  --gold: #c9a84c;
  --dark: #2c2c2c;
  --gray: #6b7280;
  --light: #faf9f7;
  --white: #ffffff;
  --border: #e5e0da;
}

body { font-family: 'Georgia', serif; color: var(--dark); background: var(--light); line-height: 1.6; }

/* Typography */
h1, h2, h3, h4 { font-family: 'Georgia', serif; font-weight: normal; }
a { color: var(--rose); text-decoration: none; }
a:hover { color: var(--rose-dark); }

/* Layout */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header */
header { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; max-width: 1200px; margin: 0 auto; }
.logo { font-size: 1.5rem; color: var(--rose); letter-spacing: 1px; }
.logo span { color: var(--gold); }
nav a { margin-left: 24px; color: var(--dark); font-family: Arial, sans-serif; font-size: 0.9rem; }
nav a:hover { color: var(--rose); }

/* Hero */
.hero { background: linear-gradient(135deg, #2c1810 0%, #5a2d23 50%, #8b4a3a 100%); color: white; text-align: center; padding: 80px 20px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.hero h1 { font-size: 3rem; margin-bottom: 16px; text-shadow: 0 2px 4px rgba(0,0,0,0.3); }
.hero p { font-size: 1.2rem; opacity: 0.9; margin-bottom: 32px; }
.search-bar { display: flex; max-width: 600px; margin: 0 auto; gap: 0; }
.search-bar input { flex: 1; padding: 14px 20px; border: none; border-radius: 4px 0 0 4px; font-size: 1rem; }
.search-bar button { background: var(--gold); color: white; border: none; padding: 14px 24px; border-radius: 0 4px 4px 0; cursor: pointer; font-size: 1rem; }
.search-bar button:hover { background: #b8973b; }

/* Category Grid */
.categories { padding: 60px 0; background: var(--white); }
.categories h2 { text-align: center; font-size: 2rem; margin-bottom: 8px; }
.categories .subtitle { text-align: center; color: var(--gray); margin-bottom: 40px; font-family: Arial, sans-serif; }
.category-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 20px; }
.category-card { background: var(--light); border: 1px solid var(--border); border-radius: 8px; padding: 24px 16px; text-align: center; cursor: pointer; transition: all 0.2s; text-decoration: none; color: var(--dark); display: block; }
.category-card:hover { border-color: var(--rose); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(200,121,106,0.15); color: var(--rose); }
.category-card .icon { font-size: 2rem; margin-bottom: 8px; }
.category-card .name { font-family: Arial, sans-serif; font-size: 0.9rem; font-weight: 600; }
.category-card .count { font-family: Arial, sans-serif; font-size: 0.75rem; color: var(--gray); }

/* Listings */
.listings-section { padding: 60px 0; }
.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.section-header h2 { font-size: 1.8rem; }
.filter-bar { display: flex; gap: 12px; margin-bottom: 32px; flex-wrap: wrap; }
.filter-btn { background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 8px 16px; cursor: pointer; font-family: Arial, sans-serif; font-size: 0.85rem; transition: all 0.2s; }
.filter-btn.active, .filter-btn:hover { background: var(--rose); border-color: var(--rose); color: white; }
.listings-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }
.listing-card { background: var(--white); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; transition: all 0.2s; }
.listing-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.1); transform: translateY(-2px); }
.listing-card.featured { border-color: var(--gold); }
.listing-img { height: 180px; background: linear-gradient(135deg, var(--rose-light), #e8d5d0); display: flex; align-items: center; justify-content: center; color: var(--rose); font-size: 3rem; position: relative; }
.featured-badge { position: absolute; top: 12px; right: 12px; background: var(--gold); color: white; font-family: Arial, sans-serif; font-size: 0.7rem; font-weight: 700; padding: 4px 10px; border-radius: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.listing-body { padding: 20px; }
.listing-category { font-family: Arial, sans-serif; font-size: 0.75rem; color: var(--rose); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.listing-name { font-size: 1.2rem; margin-bottom: 8px; }
.listing-desc { font-family: Arial, sans-serif; font-size: 0.9rem; color: var(--gray); margin-bottom: 12px; line-height: 1.5; }
.listing-meta { font-family: Arial, sans-serif; font-size: 0.8rem; color: var(--gray); display: flex; gap: 16px; flex-wrap: wrap; }
.listing-meta span::before { margin-right: 4px; }
.listing-actions { padding: 12px 20px; border-top: 1px solid var(--border); display: flex; gap: 12px; }
.btn { display: inline-block; padding: 8px 16px; border-radius: 4px; font-family: Arial, sans-serif; font-size: 0.85rem; cursor: pointer; text-decoration: none; transition: all 0.2s; }
.btn-primary { background: var(--rose); color: white; border: none; }
.btn-primary:hover { background: var(--rose-dark); color: white; }
.btn-outline { background: transparent; color: var(--rose); border: 1px solid var(--rose); }
.btn-outline:hover { background: var(--rose); color: white; }

/* CTA Banner */
.cta-banner { background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%); color: white; padding: 60px 20px; text-align: center; }
.cta-banner h2 { font-size: 2rem; margin-bottom: 12px; }
.cta-banner p { opacity: 0.9; margin-bottom: 28px; font-family: Arial, sans-serif; }
.btn-gold { background: var(--gold); color: white; padding: 14px 32px; border-radius: 4px; font-family: Arial, sans-serif; font-weight: 600; font-size: 1rem; display: inline-block; text-decoration: none; }
.btn-gold:hover { background: #b8973b; color: white; }

/* Pricing */
.pricing { padding: 80px 0; background: var(--white); }
.pricing h2 { text-align: center; font-size: 2rem; margin-bottom: 8px; }
.pricing .subtitle { text-align: center; color: var(--gray); margin-bottom: 48px; font-family: Arial, sans-serif; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 900px; margin: 0 auto; }
.pricing-card { border: 1px solid var(--border); border-radius: 8px; padding: 36px 28px; text-align: center; position: relative; }
.pricing-card.popular { border-color: var(--rose); border-width: 2px; }
.popular-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--rose); color: white; font-family: Arial, sans-serif; font-size: 0.75rem; font-weight: 700; padding: 4px 16px; border-radius: 12px; white-space: nowrap; }
.pricing-tier { font-family: Arial, sans-serif; font-weight: 700; font-size: 0.85rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.pricing-price { font-size: 2.5rem; color: var(--dark); margin-bottom: 4px; }
.pricing-price span { font-family: Arial, sans-serif; font-size: 1rem; color: var(--gray); }
.pricing-desc { font-family: Arial, sans-serif; font-size: 0.9rem; color: var(--gray); margin-bottom: 24px; }
.pricing-features { list-style: none; text-align: left; margin-bottom: 28px; }
.pricing-features li { font-family: Arial, sans-serif; font-size: 0.9rem; padding: 6px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
.pricing-features li::before { content: '✓'; color: var(--rose); font-weight: bold; }

/* Areas */
.areas { padding: 60px 0; }
.areas h2 { text-align: center; font-size: 2rem; margin-bottom: 8px; }
.areas .subtitle { text-align: center; color: var(--gray); margin-bottom: 40px; font-family: Arial, sans-serif; }
.areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.area-card { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 20px; text-align: center; transition: all 0.2s; text-decoration: none; color: var(--dark); }
.area-card:hover { border-color: var(--rose); color: var(--rose); }
.area-card h3 { font-size: 1rem; margin-bottom: 4px; }
.area-card p { font-family: Arial, sans-serif; font-size: 0.8rem; color: var(--gray); }

/* Footer */
footer { background: var(--dark); color: #ccc; padding: 48px 0 24px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-col h4 { color: white; font-size: 1rem; margin-bottom: 16px; }
.footer-col a { display: block; color: #aaa; font-family: Arial, sans-serif; font-size: 0.85rem; margin-bottom: 8px; }
.footer-col a:hover { color: var(--rose); }
.footer-bottom { border-top: 1px solid #444; padding-top: 24px; text-align: center; font-family: Arial, sans-serif; font-size: 0.8rem; color: #888; }

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .listings-grid { grid-template-columns: 1fr; }
  .header-inner { flex-direction: column; gap: 12px; }
  nav a { margin-left: 12px; }
}
