@charset "utf-8";
/* CSS Document */

/* =========================
   Base page styling
   ========================= */
body {
  background-image: url("bg.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  background-attachment: fixed; /* optional */
}

html, body {
  margin: 0;
  min-height: 100%;
}

/* Overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-color: rgba(246, 241, 231, 0.65); /* ← transparency level */
  pointer-events: none;
  z-index: -1;
}

/* =========================
   Header
   ========================= */
.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 36px;
    background-color: #f6f1e7;
}

.site-header h1 {
    margin: 0;
    display: inline-block;
    padding: 12px 20px;
    border: 2px solid #2a2a2a;
    font-family: "Cinzel", serif;
    font-size: 1.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.branding {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.motto {
    margin: 0;
    margin-left: 2.5ch;
    font-family: "Cinzel", serif;
    font-size: 1.15rem;
    font-weight: 600;
    font-style: italic;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #7a1f1f;
}

/* =========================
   Navigation
   ========================= */
.site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 28px;
}

.site-nav a {
    text-decoration: none;
    font-family: "Cinzel", serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: #1f1f1f;
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.site-nav a:hover {
    border-bottom-color: #1f1f1f;
}

.social-icons {
    display: flex;
    gap: 14px;
}

/* Apply to ALL social icons so they behave consistently */
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;          /* adjust to taste */
  height: 22px;         /* adjust to taste */
  line-height: 1;
}

/* Specifically for the X logo image */
.social-x img {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
}


.social-icons a:hover {
    opacity: 1;
}

.social-x img {
  width: 16px;
  height: 16px;
  display: block;
  filter: grayscale(100%);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.social-x:hover img {
  opacity: 1;
  transform: scale(1.05);
}


.social-youtube svg {
  width: 24px;
  height: 24px;
  fill: #7a1f1f;            /* your accent red */
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.social-youtube:hover svg {
  opacity: 1;
  transform: scale(1.05);
}



/* =========================
   Main layout
   ========================= */
.landing-content {
    padding: 60px 36px;
}

/* FULL-WIDTH PROFILE ROW */
.profile-box {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    padding: 28px;
    border: 2px solid #2a2a2a;
    background-color: #fbf7ef;
}


/* Portrait */
.portrait {
    width: 180px;
    height: 220px;
    border: 2px solid #2a2a2a;
    overflow: hidden;
    background-color: #e9e2d3;
    flex-shrink: 0;
}

.portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Profile text */
.profile-text h2 {
    margin: 0 0 10px 0;
    font-family: "Cinzel", serif;
    font-size: 1.4rem;
    letter-spacing: 0.08em;
}

.profile-text p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* =========================
   Two-column area BELOW profile
   ========================= */
.layout {
  display: flex;
  align-items: flex-start;
  gap: 36px;
  max-width: 1200px;
  margin: 0 auto;
}

.main-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* =========================
   Client Reviews (below profile, left column)
   ========================= */
.reviews-box {
    padding: 22px 26px;
    border: 2px solid #2a2a2a;
    background-color: #fbf7ef;
}

.reviews-box h3 {
    margin: 0 0 14px 0;
    font-family: "Cinzel", serif;
    font-size: 1rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.review {
    margin-bottom: 18px;
}

.review:last-child {
    margin-bottom: 0;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
}

.stars {
    font-family: "Cinzel", serif;
    font-size: 1rem;
    letter-spacing: 0.15em;
    color: #7a1f1f;
}

.reviewer {
    font-size: 0.85rem;
    color: #555;
    font-style: italic;
}

.review p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.55;
}

/* =========================
   Sidebar
   ========================= */
.sidebar {
  width: 280px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 28px; /* ⬅ increases vertical spacing between boxes */
}


.sidebar-box {
    border: 2px solid #2a2a2a;
    padding: 18px 20px;
    background-color: #fbf7ef;
}

.sidebar-box h3 {
    margin: 0 0 8px 0;
    font-family: "Cinzel", serif;
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.sidebar-box p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Video */
.video-wrapper {
  position: relative;
  padding-top: 56.25%; /* 16:9 */
  margin-bottom: 10px;
  border: 1px solid #2a2a2a;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-caption {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.4;
  color: #444;
}

/* =========================
   Contact Form
   ========================= */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 18px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  font-family: "Cinzel", serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.contact-form input,
.contact-form textarea {
  margin-top: 6px;
  padding: 10px 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  border: 1.5px solid #2a2a2a;
  background-color: #fdfaf3;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #7a1f1f;
}

.contact-form button {
  align-self: flex-start;
  padding: 10px 22px;
  font-family: "Cinzel", serif;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  background-color: transparent;
  border: 2px solid #2a2a2a;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.contact-form button:hover {
  background-color: #2a2a2a;
  color: #f6f1e7;
}

.form-notice {
  font-size: 0.8rem;
  color: #555;
  line-height: 1.4;
}

.header-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 150;

  background-image: url("NelsonLegalAdvisory.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  background-color: #000; /* safety edge if viewport is wider */
	
  padding: 0;
}

.header-banner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header-banner .site-nav {
  background-color: rgba(246, 241, 231, 0.88);
  padding: 10px 18px;
  border: 1px solid #2a2a2a;
  margin-right: 36px;
}
