/* Bridalocity.com — Wedding Planning Directory
   Stylesheet reconstructed from original HTML structure (2010 era)
   Two-column layout: content left, sidebar right */

/* ── Reset & Base ─────────────────────────────────────────── */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  line-height: 1.6;
  color: #444;
  background: #fdf7f3;
}

a { color: #c0607a; text-decoration: none; }
a:hover { text-decoration: underline; color: #a0304a; }

h1, h2, h3, h4, h5 { font-family: Georgia, serif; color: #7a3050; }

/* Headings inside dark header must stay light */
#header h1, #header h2, #header h3,
#navigation h1, #navigation h2, #navigation h3 { color: #fff; }

ul { list-style: none; }

img { border: 0; }

/* ── Wrapper ──────────────────────────────────────────────── */
#wrap {
  width: 960px;
  margin: 0 auto;
  background: #fff;
  border-left: 1px solid #e8d8e0;
  border-right: 1px solid #e8d8e0;
}

/* ── Header ───────────────────────────────────────────────── */
#header {
  background: #7a3050;
  padding: 0;
  position: relative;
}

#logo {
  display: block;
  background: #7a3050;
  padding: 12px 20px 8px;
}

#logo a {
  color: #fff;
  font-size: 22px;
  font-style: italic;
  font-family: Georgia, serif;
  letter-spacing: 1px;
  text-decoration: none;
}

#logo a:hover { text-decoration: none; color: #fce8ef; }

/* ── Navigation ───────────────────────────────────────────── */
#navigation {
  background: #9a3d6a;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#nav {
  display: flex;
  list-style: none;
  gap: 0;
}

#nav li a {
  display: block;
  padding: 10px 16px;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-right: 1px solid rgba(255,255,255,0.2);
}

#nav li a:hover,
#nav li#selected a {
  background: #7a3050;
  color: #fff;
  text-decoration: none;
}

#find {
  color: #fce8ef;
  font-family: Arial, sans-serif;
  font-size: 12px;
  margin-right: 6px;
  white-space: nowrap;
}

#navigation form {
  display: flex;
  align-items: center;
  gap: 6px;
}

#navigation select {
  font-size: 12px;
  padding: 4px 8px;
  border: 1px solid #c87098;
  border-radius: 3px;
  background: #fff;
  color: #444;
  cursor: pointer;
}

/* ── Header Image ─────────────────────────────────────────── */
#header img {
  display: block;
  width: 100%;
  max-height: 180px;
  object-fit: cover;
}

/* ── Main Content + Sidebar Layout ───────────────────────── */
#content {
  float: left;
  width: 640px;
  padding: 24px 24px 24px 24px;
  min-height: 500px;
  background: #fff;
}

#sidebar {
  float: right;
  width: 280px;
  padding: 24px 20px;
  border-left: 1px solid #f0dde6;
  background: #fdf7fb;
  min-height: 500px;
}

/* Clearfix after columns */
#wrap:after {
  content: "";
  display: table;
  clear: both;
}

/* ── Featured Post (Homepage) ─────────────────────────────── */
#featured {
  background: #fef4f7;
  border: 1px solid #f0dde6;
  border-radius: 4px;
  padding: 16px;
  margin-bottom: 24px;
  overflow: hidden;
}

#post-image {
  float: left;
  margin-right: 16px;
  margin-bottom: 8px;
}

#post-image img {
  width: 150px;
  height: 120px;
  object-fit: cover;
  border: 3px solid #e8c8d8;
}

#feature-post {
  overflow: hidden;
}

#feature-post h2 {
  font-size: 18px;
  margin-bottom: 8px;
  line-height: 1.4;
}

#feature-post h2 a { color: #7a3050; }
#feature-post h2 a:hover { color: #c0607a; }

#featured-footer {
  clear: both;
  padding-top: 8px;
  border-top: 1px solid #f0dde6;
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#featured-footer #categories a {
  display: inline-block;
  background: #c0607a;
  color: #fff;
  padding: 2px 10px;
  border-radius: 10px;
  font-size: 11px;
  font-family: Arial, sans-serif;
  text-decoration: none;
}

#featured-footer .read a {
  font-size: 12px;
  color: #9a3d6a;
  font-style: italic;
}

/* ── Feature Category Images ──────────────────────────────── */
#feature-categories {
  margin-bottom: 24px;
  overflow: hidden;
}

#feature-categories a {
  display: block;
  width: 49%;
}

#feature-categories a.left { float: left; }
#feature-categories a.right { float: right; }

#feature-categories img {
  width: 100%;
  border: 3px solid #e8c8d8;
  display: block;
}

#feature-categories a:hover img { border-color: #c0607a; }

/* ── Article List ─────────────────────────────────────────── */
#content h2 {
  font-size: 18px;
  color: #7a3050;
  border-bottom: 2px solid #e8c8d8;
  padding-bottom: 6px;
  margin-bottom: 16px;
}

#article-list {
  list-style: none;
  margin-bottom: 28px;
}

#article-list li {
  padding: 10px 0;
  border-bottom: 1px solid #f5e8ee;
}

#article-list li:last-child { border-bottom: 0; }

#article-list h3 { font-size: 14px; margin-bottom: 3px; }
#article-list h3 a { color: #7a3050; }
#article-list h3 a:hover { color: #c0607a; }

#article-list .date {
  color: #aaa;
  font-size: 11px;
  font-style: italic;
}

/* ── Vendor List ──────────────────────────────────────────── */
#vendor-list {
  list-style: none;
  margin-bottom: 24px;
}

#vendor-list li {
  background: #fff;
  border: 1px solid #f0dde6;
  border-radius: 4px;
  padding: 14px 16px;
  margin-bottom: 10px;
}

#vendor-list li:last-child { margin-bottom: 0; }

#vendor-list h3 {
  font-size: 15px;
  color: #7a3050;
  margin-bottom: 6px;
}

#vendor-list h4 { font-size: 13px; }
#vendor-list h4 a { color: #c0607a; }

#vendor-list p {
  font-size: 13px;
  margin-bottom: 4px;
  line-height: 1.5;
  color: #555;
}

#vendor-list p strong { color: #444; }

#passionate {
  text-align: center;
  color: #9a3d6a;
  font-style: italic;
  font-size: 15px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #f0dde6;
}

/* ── Article Page ─────────────────────────────────────────── */
#article { margin-bottom: 20px; }

#article-post h2 {
  font-size: 22px;
  color: #7a3050;
  margin-bottom: 16px;
  line-height: 1.3;
  border-bottom: 2px solid #e8c8d8;
  padding-bottom: 10px;
}

#article-post h2 a { color: #7a3050; }

#article-post h3 {
  font-size: 15px;
  color: #9a3d6a;
  margin: 18px 0 8px;
}

#article-post p {
  margin-bottom: 14px;
  line-height: 1.7;
  color: #444;
}

#article-post ul, #article-post ol {
  list-style: disc;
  margin: 10px 0 14px 24px;
}

#article-post li { margin-bottom: 6px; line-height: 1.6; }

.up { text-align: right; margin-top: 20px; }
.up a { font-size: 12px; color: #9a3d6a; }

#article-footer {
  padding-top: 12px;
  border-top: 1px solid #f0dde6;
  margin-top: 16px;
}

/* ── Vendors List Page ────────────────────────────────────── */
.vendor-entry {
  background: #fff;
  border: 1px solid #f0dde6;
  border-radius: 4px;
  padding: 14px 16px;
  margin-bottom: 10px;
}

.vendor-entry h3 { font-size: 15px; color: #7a3050; margin-bottom: 5px; }
.vendor-entry p { font-size: 13px; color: #555; line-height: 1.5; margin-bottom: 3px; }

/* ── Resources Page ───────────────────────────────────────── */
.resource-item {
  padding: 10px 0;
  border-bottom: 1px solid #f5e8ee;
}

.resource-item h3 { font-size: 14px; color: #7a3050; }
.resource-item p { font-size: 13px; color: #555; margin-top: 3px; }

/* ── Sidebar ──────────────────────────────────────────────── */
#sidebar h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #9a3d6a;
  border-bottom: 2px solid #e8c8d8;
  padding-bottom: 6px;
  margin-bottom: 12px;
  font-family: Arial, sans-serif;
}

#nav_categories {
  list-style: none;
  margin-bottom: 24px;
}

#nav_categories li a {
  display: block;
  padding: 5px 0;
  color: #7a3050;
  font-size: 13px;
  border-bottom: 1px solid #f5e8ee;
  text-decoration: none;
}

#nav_categories li a:hover { color: #c0607a; padding-left: 4px; }

.blurb {
  background: #fef4f7;
  border: 1px solid #f0dde6;
  border-radius: 4px;
  padding: 14px;
  margin-bottom: 20px;
}

.blurb h4 {
  font-size: 13px;
  color: #7a3050;
  margin-bottom: 8px;
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blurb p {
  font-size: 12px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 6px;
}

.blurb p:last-child { margin-bottom: 0; }

/* ── Footer ───────────────────────────────────────────────── */
#footer {
  clear: both;
  background: #7a3050;
  padding: 16px 24px;
  text-align: center;
}

#footer ul {
  display: flex;
  justify-content: center;
  gap: 0;
  list-style: none;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

#footer ul li a {
  color: #fce8ef;
  font-size: 12px;
  font-family: Arial, sans-serif;
  text-decoration: none;
  padding: 0 8px;
}

#footer ul li a:hover { color: #fff; text-decoration: underline; }

#copyright {
  color: #e8b8cc;
  font-size: 11px;
  font-family: Arial, sans-serif;
}

#copyright a { color: #fce8ef; }

/* ── Category Page ────────────────────────────────────────── */
#category-list {
  list-style: none;
  margin-bottom: 20px;
}

#category-list li {
  padding: 10px 0;
  border-bottom: 1px solid #f5e8ee;
}

#category-list h3 { font-size: 14px; margin-bottom: 4px; }
#category-list h3 a { color: #7a3050; }
#category-list h3 a:hover { color: #c0607a; }
#category-list .date { font-size: 11px; color: #aaa; font-style: italic; }

/* ── General Content Breadcrumb ───────────────────────────── */
.breadcrumb {
  font-size: 11px;
  color: #aaa;
  margin-bottom: 16px;
  font-family: Arial, sans-serif;
}

.breadcrumb a { color: #c0607a; }

/* ── Yorkshire / Regional Photographers Section ───────────── */
.regional-spotlight {
  background: #fef4f7;
  border: 1px solid #f0dde6;
  border-radius: 4px;
  padding: 18px;
  margin: 24px 0;
}

.regional-spotlight h2 {
  font-size: 18px;
  color: #7a3050;
  margin-bottom: 4px;
  border-bottom: none;
  padding-bottom: 0;
}

.regional-spotlight .section-intro {
  font-size: 13px;
  color: #888;
  font-style: italic;
  margin-bottom: 16px;
  font-family: Arial, sans-serif;
}

.photographer-feature {
  overflow: hidden;
  padding: 12px 0;
  border-top: 1px solid #f0dde6;
}

.photographer-feature h3 {
  font-size: 15px;
  color: #7a3050;
  margin-bottom: 6px;
}

.photographer-feature h3 a { color: #7a3050; }
.photographer-feature h3 a:hover { color: #c0607a; }

.photographer-feature .photo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 8px 0;
}

.photographer-feature .photo-tag {
  background: #c0607a;
  color: #fff;
  padding: 1px 8px;
  border-radius: 10px;
  font-size: 10px;
  font-family: Arial, sans-serif;
}

.photographer-feature p {
  font-size: 13px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 6px;
}

.photographer-feature .visit-link {
  font-size: 12px;
  color: #9a3d6a;
  font-style: italic;
  font-family: Arial, sans-serif;
}

/* ── Submission Form ──────────────────────────────────────── */
.submission-form {
  background: #fef4f7;
  border: 1px solid #f0dde6;
  border-radius: 4px;
  padding: 20px;
  margin: 24px 0;
}

.submission-form h3 {
  font-size: 15px;
  color: #7a3050;
  margin-bottom: 10px;
}

.submission-form p {
  font-size: 13px;
  color: #666;
  margin-bottom: 14px;
  line-height: 1.6;
}

.submission-form label {
  display: block;
  font-size: 12px;
  color: #7a3050;
  font-family: Arial, sans-serif;
  margin-bottom: 3px;
  font-weight: bold;
}

.submission-form input[type="text"],
.submission-form input[type="email"],
.submission-form input[type="url"],
.submission-form select,
.submission-form textarea {
  width: 100%;
  padding: 7px 10px;
  border: 1px solid #e0c8d4;
  border-radius: 3px;
  font-size: 13px;
  font-family: Georgia, serif;
  color: #444;
  background: #fff;
  margin-bottom: 12px;
}

.submission-form textarea { height: 80px; resize: vertical; }

.submission-form input[type="submit"] {
  background: #7a3050;
  color: #fff;
  border: none;
  padding: 9px 24px;
  font-size: 13px;
  font-family: Arial, sans-serif;
  border-radius: 3px;
  cursor: pointer;
  letter-spacing: 0.5px;
}

.submission-form input[type="submit"]:hover { background: #9a3d6a; }

/* ── Mobile Shim ──────────────────────────────────────────── */
@media screen and (max-width: 980px) {
  #wrap { width: 100%; }
  #content { float: none; width: 100%; }
  #sidebar { float: none; width: 100%; border-left: none; border-top: 1px solid #f0dde6; }
  #navigation { flex-wrap: wrap; gap: 4px; }
  #nav { flex-wrap: wrap; }
  #feature-categories a { width: 48%; }
  #post-image img { width: 120px; height: 96px; }
  body { overflow-x: hidden; }
  img { max-width: 100% !important; height: auto !important; }
}
