/* ==========================================================
   LINDA D COHEN — MASTER WEBSITE STYLESHEET
   Designed to work WITH Bootstrap 5.3.3 + Montserrat
   ========================================================== */


/* ---------- ROOT / GLOBAL ---------- */

:root {
  --ldc-teal: #94DDC7;
  --ldc-dark: #333333;
  --ldc-black: #000000;
  --ldc-white: #ffffff;
  --ldc-soft: #f1f1f1;
  --ldc-soft-2: #f6f6f4;
  --ldc-text: #282828;
  --ldc-muted: #686868;
  --ldc-line: #d9d9d9;
  --ldc-max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", Arial, sans-serif;
  margin: 0;
  color: var(--ldc-text);
  background: var(--ldc-white);
  line-height: 1.65;
}

img {
  max-width: 100%;
  height: auto;
}


/* ---------- SITE HEADER ---------- */

header,
.site-header {
  padding: 40px 20px;
  text-align: center;
  background: var(--ldc-teal);
  color: var(--ldc-black);
}

.site-header h1,
.site-header h2,
.site-header h3,
header h1,
header h2,
header h3 {
  margin-bottom: 0;
}

.profile-image {
  border-radius: 50%;
  overflow: hidden;
}
.site-brand {
  text-align: center;
}

.brand-link {
  color: inherit;
  text-decoration: none;
  font-size: 18px;
  letter-spacing: .03em;
}

.brand-link:hover {
  color: inherit;
}

.brand-link span {
  display: inline-block;
  margin: 0 7px;
}


/* ---------- MAIN NAVIGATION ---------- */

.navbar2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background-color: var(--ldc-dark);
}

.navbar2 a {
  color: var(--ldc-white);
  padding: 12px 20px;
  text-decoration: none;
  text-align: center;
}

.navbar2 a:hover,
.navbar2 a:focus,
.navbar2 a.active {
  background-color: var(--ldc-teal);
  color: var(--ldc-black);
}

.divider {
  color: var(--ldc-white);
  padding: 12px 20px;
  text-decoration: none;
  text-align: center;
}



/* Optional alternate navigation used by newer pages */

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  background: var(--ldc-dark);
}

.site-nav a {
  color: var(--ldc-white);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: .04em;
  padding: 12px 16px;
}

.site-nav a:hover,
.site-nav a:focus,
.site-nav a.active {
  background: var(--ldc-teal);
  color: var(--ldc-black);
}
/* ========================================
   NAVIGATION DIVIDERS
   ======================================== */

.navbar-nav > .nav-item {
  display: flex;
  align-items: center;
}

.navbar-nav > .nav-item:not(:last-child)::after {
  content: "|";
  color: #ffffff;
  opacity: 0.6;
  margin: 0 6px;
}


/* Remove dividers from mobile menu */

@media (max-width: 991.98px) {

  .navbar-nav > .nav-item:not(:last-child)::after {
    display: none;
  }

}

/* ==========================================================
   ARTWORK FLIP CARDS
   ========================================================== */

.flip-card {
  background-color: transparent;
  width: 100%;
  min-height: 520px;
  perspective: 1000px;
  cursor: pointer;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  min-height: 520px;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.20);
}

.flip-card.is-flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-card-front {
  background-color: #ffffff;
  color: #282828;
}

.flip-card-front img {
  width: 100%;
  height: auto;
  display: block;
}

.flip-card-back {
  background-color: #ffffff;
  color: #282828;
  transform: rotateY(180deg);
  padding: 25px;
  overflow-y: auto;
}

.flip-card-title {
  margin: 18px 15px 5px;
}

.flip-card-size {
  margin: 0 15px 15px;
}

.flip-instruction {
  font-size: 12px;
  color: #686868;
  margin-top: 12px;
}

/* ---------- STANDARD PAGE LAYOUT ---------- */

.container2 {
  display: flex;
  flex-wrap: wrap;
}

.side {
  flex: 1 1 300px;
  background-color: var(--ldc-soft);
  padding: 20px;
}

.main {
  flex: 3 1 600px;
  background-color: var(--ldc-white);
  padding: 20px;
}


/* ---------- COMMON TYPOGRAPHY / LINKS ---------- */
.card {
  box-shadow: 0 4px 8px rgba(0,0,0,.15);
}

a {
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
}


/* ---------- COMMON BUTTONS ---------- */

.ldc-button,
.button {
  display: inline-block;
  padding: 13px 22px;
  border: 1px solid var(--ldc-dark);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  cursor: pointer;
  transition: .2s ease;
}

.ldc-button-dark,
.button-dark {
  color: var(--ldc-white);
  background: var(--ldc-dark);
}

.ldc-button-dark:hover,
.button-dark:hover {
  color: var(--ldc-white);
  background: #444;
  border-color: #444;
}

.ldc-button-outline,
.button-outline {
  color: var(--ldc-dark);
  background: transparent;
}

.ldc-button-outline:hover,
.button-outline:hover {
  color: var(--ldc-white);
  background: var(--ldc-dark);
}


/* ---------- SITE FOOTER ---------- */

footer,
.site-footer {
  padding: 30px 20px;
  text-align: center;
  background: var(--ldc-black);
  color: var(--ldc-white);
}

footer img,
.site-footer img {
  max-width: 40px;
  height: auto;
}

.site-footer p,
footer p {
  margin-bottom: 0;
}


/* ==========================================================
   GRAPHIC DESIGN SERVICES PAGE
   ========================================================== */

.hero {
  padding: 86px 20px 78px;
}

.hero-inner,
.content-narrow {
  width: min(820px, 100%);
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  margin: 10px 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.08;
}

.lead {
  margin: 0 auto;
  max-width: 760px;
  color: var(--ldc-muted);
  font-size: 18px;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.content-section {
  padding: 74px 20px;
  border-top: 1px solid #ededed;
}

.content-section.alt {
  background: var(--ldc-soft-2);
}

.content-wide {
  width: min(var(--ldc-max), 100%);
  margin: 0 auto;
}

.content-section h2 {
  margin: 7px 0 15px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(30px, 4vw, 45px);
  line-height: 1.15;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 38px;
}

.section-heading p:not(.eyebrow) {
  color: var(--ldc-muted);
}

.cards {
  display: grid;
  gap: 22px;
}

.cards.three {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  min-height: 230px;
  padding: 30px;
  background: var(--ldc-white);
  border: 1px solid var(--ldc-line);
}

.service-card h3,
.action-panel h3,
.two-column h3 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 400;
}

.service-card p {
  color: var(--ldc-muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--ldc-line);
  border: 1px solid var(--ldc-line);
}

.product-grid span {
  background: var(--ldc-white);
  padding: 18px;
  text-align: center;
  font-size: 14px;
}

.project-form {
  max-width: 940px;
  margin: 0 auto;
  background: var(--ldc-white);
  border: 1px solid var(--ldc-line);
  padding: clamp(24px, 5vw, 48px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.form-grid label {
  display: block;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.form-grid label > span,
.ai-box label > span {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 700;
}

.project-form input,
.project-form select,
.project-form textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid #aaa;
  background: var(--ldc-white);
  color: var(--ldc-text);
  font: inherit;
  border-radius: 0;
}

.project-form textarea {
  resize: vertical;
}

.ai-fields {
  display: none;
}

.ai-fields.show {
  display: block;
}

.ai-box {
  padding: 24px;
  border-left: 4px solid var(--ldc-dark);
  background: var(--ldc-soft-2);
}

.ai-box h3 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
}

.ai-box label + label {
  margin-top: 18px;
}

.help,
.small-print {
  color: var(--ldc-muted);
  font-size: 13px;
}

.two-column {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 38px;
  align-items: start;
}

.check-list {
  columns: 2;
  column-gap: 32px;
  padding-left: 20px;
}

.check-list li {
  break-inside: avoid;
  margin-bottom: 7px;
}

.action-panel {
  padding: 34px;
  border: 1px solid var(--ldc-line);
  background: var(--ldc-soft-2);
}

.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 34px;
  max-width: 920px;
  margin: 0 auto;
}

.services-list span {
  padding: 13px 0;
  border-bottom: 1px solid var(--ldc-line);
}

.download-panel {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 40px;
  align-items: center;
  padding: 42px;
  border: 1px solid var(--ldc-line);
}

.download-actions {
  text-align: right;
}

.disclaimer-section {
  padding-top: 34px;
  padding-bottom: 34px;
}


/* ---------- RESPONSIVE ---------- */

@media (max-width: 900px) {
  .cards.three,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-column,
  .download-panel {
    grid-template-columns: 1fr;
  }

  .download-actions {
    text-align: left;
  }
}

@media (max-width: 680px) {
  .navbar2 a,
  .divider {
    padding: 10px 12px;
  }

  .hero {
    padding: 58px 18px;
  }

  .content-section {
    padding: 54px 18px;
  }

  .cards.three,
  .product-grid,
  .form-grid,
  .services-list {
    grid-template-columns: 1fr;
  }

  .form-grid .full {
    grid-column: auto;
  }

  .check-list {
    columns: 1;
  }

  .project-form {
    padding: 22px;
  }

  .download-panel {
    padding: 26px;
  }
}
