/* Main stylesheet for Castellano Family Law */
:root {
  --brand-red: #9B1F24;
  --brand-hover: #B72A2F;
  --text-dark: #333333;
  --bg-light: #F8F8F8;
  --white: #FFFFFF;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid #e6e9ee;
}

/* Responsive header layout */
.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo styling */
.logo-container {
  max-width: 180px;
  flex-shrink: 0;
}

.logo {
  width: 100%;
  height: auto;
  display: block;
}

/* Brand text */
.brand-text h1 {
  margin: 0;
  color: var(--brand-red);
}
.brand-text .sub {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.main-nav a {
  margin-left: 18px;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
}

.contact-cta {
  background: var(--brand-red);
  color: var(--white);
  padding: 8px 12px;
  border-radius: 6px;
}

/* Hero */
.hero {
  padding: 48px 0;
  background: var(--white);
}

.btn-primary {
  background: var(--brand-red);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.btn-outline {
  background: transparent;
  border: 1px solid var(--brand-red);
  color: var(--brand-red);
  margin-left: 8px;
}
.btn-primary:hover {
  background: var(--brand-hover);
}

/* Bio Section */
.bio {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  margin-top: 40px;
}

.bio-photo {
  flex: 1 1 200px;
  max-width: 220px;
}

.bio-photo img[alt="Christopher R. Castellano"] {
  width: 100%;
  max-width: 200px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.bio-text {
  flex: 2 1 400px;
}

/* Footer */
.site-footer {
  background: var(--white);
  border-top: 1px solid #e6e9ee;
  padding: 20px 0;
  margin-top: 30px;
  color: var(--text-dark);
}
.site-footer a {
  color: var(--brand-red);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
