/* ===== Tracy Dupler Brand Stylesheet ===== */
/* Colors: Black (#0a0a0a), White (#fff), Emerald Green (#2E8B57) */

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

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #0a0a0a;
  color: #e8e8e8;
  line-height: 1.7;
  min-height: 100vh;
  color-scheme: dark;
}

a {
  color: #2E8B57;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #3CB371;
}

/* ===== Navigation ===== */
.site-nav {
  background: #111;
  border-bottom: 1px solid #1a1a1a;
  padding: 0 20px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.nav-brand {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  padding: 16px 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-brand span {
  color: #2E8B57;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  padding: 8px 0;
}

.nav-links a {
  display: block;
  color: #aaa;
  padding: 8px 14px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(46, 139, 87, 0.15);
}

/* ===== Main Content ===== */
.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 50px 30px 80px;
}

h1 {
  font-size: 36px;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

h1 .accent {
  color: #2E8B57;
}

.subtitle {
  font-size: 17px;
  color: #999;
  margin-bottom: 40px;
  line-height: 1.6;
}

h2 {
  font-size: 24px;
  color: #fff;
  margin-top: 40px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 14px;
}

/* ===== Hero Intro (Homepage) ===== */
.hero-intro {
  text-align: center;
  margin-bottom: 40px;
}

.hero-photo-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.hero-photo {
  width: 420px;
  height: 580px;
  object-fit: cover;
  object-position: top;
  border-radius: 12px;
  border: 3px solid #2E8B57;
  filter: brightness(1.15) contrast(1.05);
}

.hero-name {
  font-size: 26px;
  color: #fff;
  margin-top: 0;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.hero-tagline {
  font-size: 14px;
  color: #2E8B57;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-weight: 600;
}

.hero-bio {
  color: #bbb;
  font-size: 15px;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.main-paragraph {
  margin-bottom: 32px;
}

.main-paragraph p {
  color: #ccc;
  font-size: 15px;
  line-height: 1.7;
}

.guide-instruction {
  font-size: 15px;
  color: #2E8B57;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.cta-banner {
  margin-top: 40px;
  padding: 28px 32px;
  background: #141414;
  border: 1px solid #2E8B57;
  border-radius: 8px;
  text-align: center;
}

.cta-banner p {
  color: #ccc;
  font-size: 16px;
  margin-bottom: 0;
  font-style: italic;
}

/* ===== Page Links (Homepage) ===== */
.page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 10px;
}

.page-link {
  display: block;
  padding: 28px 24px;
  background: #141414;
  border: 1px solid #1e1e1e;
  border-left: 4px solid #2E8B57;
  border-radius: 6px;
  font-size: 17px;
  color: #e0e0e0;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.page-link:hover {
  background: #1a1a1a;
  color: #fff;
  transform: translateY(-2px);
}

.page-link small {
  display: block;
  font-size: 13px;
  color: #666;
  margin-top: 6px;
}

/* ===== Color Cards ===== */
.color {
  border-left: 4px solid #2E8B57;
  padding: 20px 24px;
  margin-bottom: 16px;
  background: #141414;
  border-radius: 6px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.color-swatch {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  color-scheme: only light;
  forced-color-adjust: none;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}

.color-info {
  flex: 1;
  min-width: 0;
}

.color b {
  color: #fff;
  font-size: 16px;
}

.color p {
  color: #aaa;
  margin-bottom: 0;
  margin-top: 6px;
}

/* ===== Form Box ===== */
.form-box {
  margin-top: 50px;
  padding: 36px;
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 8px;
}

.form-box h2 {
  margin-top: 0;
  color: #2E8B57;
}

.form-box p {
  color: #999;
}

input, textarea {
  width: 100%;
  padding: 14px 16px;
  margin-top: 8px;
  margin-bottom: 12px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  color: #e8e8e8;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #2E8B57;
}

input::placeholder, textarea::placeholder {
  color: #666;
}

button {
  background: #2E8B57;
  color: #fff;
  padding: 14px 28px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.1s;
}

button:hover {
  background: #257a4a;
  transform: translateY(-1px);
}

.small {
  font-size: 12px;
  color: #555;
  margin-top: 12px;
}

/* ===== About Page ===== */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
  align-items: start;
  margin-top: 10px;
}

.about-photo {
  width: 100%;
  border-radius: 8px;
  border: 2px solid #2E8B57;
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}

.about-text h2 {
  margin-top: 0;
  color: #2E8B57;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.about-text h3 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 20px;
}

.about-text p {
  color: #bbb;
  font-size: 15px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #1e1e1e;
}

.stat {
  text-align: center;
}

.stat .number {
  font-size: 32px;
  font-weight: 700;
  color: #2E8B57;
  display: block;
}

.stat .label {
  font-size: 12px;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  display: block;
}

.about-cta {
  margin-top: 40px;
  padding: 30px;
  background: #141414;
  border: 1px solid #1e1e1e;
  border-radius: 8px;
  text-align: center;
}

.about-cta h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 10px;
}

.about-cta p {
  color: #888;
  margin-bottom: 20px;
}

.about-cta a.btn {
  display: inline-block;
  background: #2E8B57;
  color: #fff;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.2s;
}

.about-cta a.btn:hover {
  background: #257a4a;
  color: #fff;
}

/* ===== Footer ===== */
.site-footer {
  border-top: 1px solid #1a1a1a;
  padding: 30px;
  text-align: center;
  color: #555;
  font-size: 13px;
}

.site-footer a {
  color: #2E8B57;
}

/* ===== Back Link ===== */
.back-link {
  display: inline-block;
  margin-bottom: 30px;
  color: #666;
  font-size: 14px;
}

.back-link:hover {
  color: #2E8B57;
}

/* ===== Responsive ===== */
@media (max-width: 700px) {
  .page-grid {
    grid-template-columns: 1fr;
  }
  .about-section {
    grid-template-columns: 1fr;
  }
  .about-photo {
    max-width: 300px;
    margin: 0 auto;
  }
  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links {
    padding-bottom: 12px;
  }
  .container {
    padding: 30px 20px 60px;
  }
  .hero-photo {
    width: 320px;
    height: 440px;
  }
  h1 {
    font-size: 28px;
  }
}
