/* ============================================
   Taylor's Leather Emporium — style.css
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --leather:      #8B5C2A;
  --leather-dark: #5C3A1A;
  --leather-light:#C49A6C;
  --cream:        #F5F0E8;
  --cream-dark:   #E8DFD0;
  --text:         #2C1A0E;
  --text-muted:   #6B5040;
  --border:       #C49A6C55;
}

body {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--text);
  background: #fff;
  font-size: 16px;
  line-height: 1.7;
}

/* ---- NAV ---- */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--border);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo { display: flex; flex-direction: column; }
.nav-logo-main { font-size: 18px; font-weight: 700; color: var(--leather-dark); letter-spacing: 0.02em; }
.nav-logo-sub { font-size: 11px; color: var(--leather); letter-spacing: 0.18em; text-transform: uppercase; font-family: Arial, sans-serif; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--leather); border-bottom-color: var(--leather); }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: var(--leather-dark);
  color: #F5F0E8;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 3px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--leather); }
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; }
.btn-full { width: 100%; text-align: center; }

.btn-light {
  display: inline-block;
  background: #F5F0E8;
  color: var(--leather-dark);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 3px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-light:hover { background: var(--cream-dark); }

/* ---- HERO (homepage) ---- */
.hero {
  background: var(--cream);
  border-bottom: 3px solid var(--leather);
  padding: 4rem 2rem;
  text-align: center;
}
.hero-brand {
  font-family: Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--leather);
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  color: var(--leather-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.hero-tagline {
  font-size: 17px;
  color: var(--leather-dark);
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  color: var(--leather-light);
  font-size: 18px;
}
.hero-divider span { height: 1px; width: 60px; background: var(--leather-light); display: block; }

/* ---- PAGE HERO (about, contact) ---- */
.page-hero {
  background: var(--cream);
  border-bottom: 3px solid var(--leather);
  padding: 3rem 2rem;
  text-align: center;
}
.page-hero h1 { font-size: clamp(24px, 4vw, 34px); font-weight: 700; color: var(--leather-dark); margin-bottom: 0.5rem; }
.page-hero p { font-size: 16px; color: var(--text-muted); }

/* ---- FEATURES SECTION ---- */
.section { padding: 3rem 2rem; max-width: 900px; margin: 0 auto; }
.section-title { text-align: center; font-size: 22px; font-weight: 700; color: var(--leather-dark); margin-bottom: 0.4rem; }
.section-sub { text-align: center; font-size: 15px; color: var(--text-muted); font-family: Arial, sans-serif; margin-bottom: 2.5rem; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--leather-light);
  border-radius: 4px;
  padding: 1.5rem 1.25rem;
  text-align: center;
}
.feature-icon { font-size: 26px; color: var(--leather); margin-bottom: 0.75rem; }
.feature-card h3 { font-size: 15px; font-weight: 700; color: var(--leather-dark); margin-bottom: 0.4rem; font-family: Arial, sans-serif; }
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; font-family: Arial, sans-serif; }

/* ---- SHOWCASE ---- */
.showcase {
  background: var(--cream);
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.showcase-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 760px;
  margin: 0 auto;
}
.collar-visual {
  background: var(--cream-dark);
  border: 1px solid #C49A6C88;
  border-radius: 6px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
.showcase-text h2 { font-size: 22px; font-weight: 700; color: var(--leather-dark); margin-bottom: 1rem; }
.showcase-text p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; font-family: Arial, sans-serif; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1rem; }
.tag {
  font-family: Arial, sans-serif;
  font-size: 12px;
  padding: 4px 10px;
  background: #C49A6C22;
  color: var(--leather-dark);
  border: 1px solid #C49A6C55;
  border-radius: 3px;
}

/* ---- CUSTOM REQUEST BANNER ---- */
.custom-banner-wrap { padding: 2rem 2rem 0; max-width: 900px; margin: 0 auto; }
.custom-banner {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--leather);
  border-radius: 4px;
  padding: 1.5rem 1.75rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.custom-banner-icon { font-size: 22px; color: var(--leather); flex-shrink: 0; margin-top: 2px; }
.custom-banner h3 { font-size: 15px; font-weight: 700; color: var(--leather-dark); margin-bottom: 0.35rem; font-family: Arial, sans-serif; }
.custom-banner p { font-size: 14px; color: var(--text-muted); line-height: 1.6; font-family: Arial, sans-serif; }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: var(--leather-dark);
  color: #F5F0E8;
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 3rem;
}
.cta-banner h2 { font-size: 24px; font-weight: 700; margin-bottom: 0.5rem; }
.cta-banner p { font-size: 15px; opacity: 0.8; margin-bottom: 1.5rem; font-family: Arial, sans-serif; }

/* ---- FOOTER ---- */
footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: Arial, sans-serif;
  font-size: 13px;
  color: var(--text-muted);
}
footer a { color: var(--leather); text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* ---- ABOUT PAGE ---- */
.about-content { padding: 3rem 2rem; max-width: 700px; margin: 0 auto; }
.about-content h2 { font-size: 20px; font-weight: 700; color: var(--leather-dark); margin-bottom: 1rem; margin-top: 2.5rem; }
.about-content h2:first-child { margin-top: 0; }
.about-content p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; font-family: Arial, sans-serif; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
.value-item { display: flex; gap: 0.75rem; align-items: flex-start; }
.value-dot { width: 8px; height: 8px; background: var(--leather); border-radius: 50%; margin-top: 7px; flex-shrink: 0; }
.value-item p { font-size: 14px; color: var(--text-muted); font-family: Arial, sans-serif; }
.custom-note {
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 4px solid var(--leather);
  border-radius: 4px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.custom-note strong { color: var(--leather-dark); font-weight: 700; }

/* ---- CONTACT PAGE ---- */
.contact-content {
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 860px;
  margin: 0 auto;
}
.contact-info h2 { font-size: 18px; font-weight: 700; color: var(--leather-dark); margin-bottom: 1.5rem; }
.contact-info-item { display: flex; gap: 0.85rem; align-items: flex-start; margin-bottom: 1.25rem; }
.contact-info-icon { font-size: 18px; color: var(--leather); flex-shrink: 0; margin-top: 2px; }
.contact-info-item strong { font-size: 14px; font-weight: 700; color: var(--leather-dark); display: block; margin-bottom: 2px; font-family: Arial, sans-serif; }
.contact-info-item p { font-size: 13px; color: var(--text-muted); font-family: Arial, sans-serif; }
.contact-info-item a { font-size: 13px; color: var(--leather); text-decoration: none; font-family: Arial, sans-serif; }
.contact-info-item a:hover { text-decoration: underline; }
.contact-form h2 { font-size: 18px; font-weight: 700; color: var(--leather-dark); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { font-family: Arial, sans-serif; font-size: 13px; font-weight: 600; color: var(--text-muted); display: block; margin-bottom: 5px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 1px solid #C49A6C88;
  border-radius: 4px;
  padding: 0.6rem 0.75rem;
  font-size: 14px;
  font-family: Arial, sans-serif;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { outline: none; border-color: var(--leather); }
.form-group textarea { min-height: 110px; resize: vertical; }
.submit-note { font-family: Arial, sans-serif; font-size: 12px; color: var(--text-muted); margin-top: 0.5rem; }
.form-success {
  background: #edf7ed;
  border: 1px solid #a3d9a5;
  border-radius: 4px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #2d6a2f;
}
.form-error {
  background: #fdf0ef;
  border: 1px solid #f5c6c2;
  border-radius: 4px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #8b2020;
}
.form-error a { color: #8b2020; }

/* ---- RESPONSIVE ---- */
@media (max-width: 640px) {
  nav { flex-direction: column; gap: 0.75rem; padding: 1rem; }
  .showcase-inner { grid-template-columns: 1fr; }
  .contact-content { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hero { padding: 2.5rem 1.25rem; }
  .section { padding: 2rem 1.25rem; }
  footer { flex-direction: column; gap: 0.5rem; text-align: center; }
}