/* Shared styling for the public marketing pages (Home, Portfolio, Pricing,
   Weddings, Couples, Collaborations, About Me, Closet/AI). Scoped to its
   own file rather than shared/style.css so it never affects the portal's
   authenticated admin/client/vendor/venue pages. */

.marketing-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding: 16px 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.marketing-nav-logo img { height: 38px; width: auto; display: block; }
.marketing-nav-links { display: flex; gap: 20px; flex-wrap: wrap; font-size: 14px; }
.marketing-nav-link { color: #2B2014; text-decoration: none; font-weight: 500; }
.marketing-nav-link:hover { color: #A6793A; }
.marketing-nav-cta { padding: 10px 22px; font-size: 14px; white-space: nowrap; }

.marketing-hero {
  text-align: center;
  padding: 56px 20px 44px;
  max-width: 720px;
  margin: 0 auto;
}
.marketing-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: 38px;
  color: #2B2014;
  margin: 0 0 14px;
  line-height: 1.25;
}
.marketing-hero p {
  font-size: 16px;
  color: #7A6A52;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 520px;
}
.marketing-banner {
  background: #2B2014;
  color: #FBF5E9;
  text-align: center;
  padding: 12px 20px;
  font-size: 14px;
}
.marketing-banner a { color: #E8C27E; }

.marketing-section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px 24px 48px;
}
.marketing-section-title {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  color: #2B2014;
  text-align: center;
  margin: 0 0 32px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.package-card {
  background: #FFFFFF;
  border: 2px solid #DCC9A8;
  border-radius: 16px;
  padding: 26px 22px;
  text-align: center;
}
.package-card.featured { border-color: #A6793A; }
.package-name {
  font-family: 'Fraunces', serif;
  font-size: 21px;
  color: #2B2014;
  margin-bottom: 6px;
}
.package-price {
  font-size: 26px;
  color: #A6793A;
  font-weight: 600;
  margin-bottom: 14px;
}
.package-price small { font-size: 13px; color: #7A6A52; font-weight: 400; }
.package-details {
  font-size: 15px;
  color: #7A6A52;
  line-height: 1.8;
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  text-align: left;
}
.package-details li:before { content: "\2022  "; color: #A6793A; }
.btn-outline {
  background: transparent;
  color: #A6793A;
  border: 2px solid #A6793A;
}
.btn-outline:hover { background: #A6793A; color: #FFFFFF; }

.marketing-placeholder {
  text-align: center;
  padding: 60px 24px;
  max-width: 560px;
  margin: 0 auto;
  color: #7A6A52;
  font-size: 15px;
  line-height: 1.8;
}

.marketing-footer {
  text-align: center;
  padding: 40px 20px;
  color: #7A6A52;
  font-size: 13px;
}
.marketing-footer a { color: #A6793A; text-decoration: none; }
