/* -----------------------------------------
   OYSTERROASTS.COM GLOBAL DESIGN
----------------------------------------- */

:root {
  --or-navy: #173b4d;
  --or-navy-dark: #102c3a;
  --or-seafoam: #3f7d78;
  --or-seafoam-dark: #2f625e;
  --or-sand: #f3ead8;
  --or-shell: #faf8f3;
  --or-border: #d9d6ce;
  --or-text: #2d3439;
  --or-muted: #667178;
  --or-white: #ffffff;
}

/* Page background and body typography */
body {
  background: var(--or-shell);
  color: var(--or-text);
  font-size: 18px;
  line-height: 1.75;
}

/* Keep the main reading area comfortable */
.site-main .entry-content {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

/* Paragraph spacing */
.entry-content p {
  margin-bottom: 1.35em;
}

/* Main page titles */
.entry-title,
.page-title,
.entry-content h1 {
  color: var(--or-navy-dark);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 0.6em;
}

/* Section headings */
.entry-content h2 {
  color: var(--or-navy);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.25;
  margin-top: 2.25em;
  margin-bottom: 0.75em;
}

/* Smaller headings */
.entry-content h3 {
  color: var(--or-seafoam-dark);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.35;
  margin-top: 1.75em;
  margin-bottom: 0.6em;
}

/* Links inside articles */
.entry-content a:not(.wp-block-button__link) {
  color: var(--or-seafoam-dark);
  font-weight: 600;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.entry-content a:not(.wp-block-button__link):hover {
  color: var(--or-navy);
  text-decoration-thickness: 2px;
}

/* Cleaner horizontal dividers */
.entry-content hr,
.wp-block-separator {
  width: 80px;
  height: 3px;
  margin: 3rem auto;
  border: 0;
  background: var(--or-seafoam);
  opacity: 1;
}

/* Better lists */
.entry-content ul,
.entry-content ol {
  padding-left: 1.4em;
  margin-bottom: 1.6em;
}

.entry-content li {
  margin-bottom: 0.55em;
}

.entry-content li::marker {
  color: var(--or-seafoam);
}

/* Standard buttons */
.wp-block-button__link,
.kt-button,
.kb-button {
  background: var(--or-seafoam);
  color: var(--or-white) !important;
  border: 2px solid var(--or-seafoam);
  border-radius: 6px;
  padding: 0.8em 1.35em;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none !important;
  box-shadow: 0 4px 12px rgba(23, 59, 77, 0.12);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.wp-block-button__link:hover,
.kt-button:hover,
.kb-button:hover {
  background: var(--or-navy);
  border-color: var(--or-navy);
  transform: translateY(-2px);
  box-shadow: 0 7px 18px rgba(23, 59, 77, 0.18);
}

/* Images */
.entry-content img {
  border-radius: 8px;
}

.entry-content figure {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.entry-content figcaption {
  color: var(--or-muted);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-top: 0.7rem;
}

/* Blockquotes or highlighted statements */
.entry-content blockquote {
  margin: 2.25rem 0;
  padding: 1.4rem 1.6rem;
  background: var(--or-sand);
  border-left: 5px solid var(--or-seafoam);
  border-radius: 0 8px 8px 0;
  color: var(--or-navy-dark);
  font-size: 1.08em;
}

/* Header refinement */
.site-header {
  box-shadow: 0 3px 16px rgba(16, 44, 58, 0.08);
}

/* Main navigation */
.primary-menu-container a {
  font-weight: 650;
  letter-spacing: 0.01em;
}

.primary-menu-container a:hover {
  color: var(--or-seafoam-dark);
}

/* Footer */
.site-footer {
  border-top: 4px solid var(--or-seafoam);
}

/* Mobile readability */
@media (max-width: 767px) {
  body {
    font-size: 17px;
  }

  .site-main .entry-content {
    max-width: 100%;
  }

  .entry-content h2 {
    margin-top: 1.8em;
  }

  .wp-block-button,
  .wp-block-button__link {
    width: 100%;
    text-align: center;
  }
	/* -----------------------------------------
   REFINED SITE SCALE
----------------------------------------- */

/* Slightly smaller overall text */
body {
  font-size: 17px;
  line-height: 1.68;
}

/* More restrained page titles */
.entry-title,
.entry-content h1 {
  font-size: clamp(2rem, 4vw, 2.85rem);
  line-height: 1.15;
  margin-bottom: 0.65em;
}

/* Smaller section headings */
.entry-content h2 {
  font-size: clamp(1.55rem, 2.6vw, 2rem);
  line-height: 1.25;
  margin-top: 1.9em;
  margin-bottom: 0.65em;
}

.entry-content h3 {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.35;
  margin-top: 1.5em;
}

/* Reduce excessive content spacing */
.entry-content p {
  margin-bottom: 1.15em;
}

.entry-content figure {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

/* -----------------------------------------
   MOBILE IMAGE FIX
----------------------------------------- */

@media (max-width: 767px) {

  body {
    font-size: 16px;
    line-height: 1.65;
  }

  .entry-title,
  .entry-content h1 {
    font-size: 2rem;
    line-height: 1.16;
  }

  .entry-content h2 {
    font-size: 1.55rem;
    line-height: 1.28;
    margin-top: 1.65em;
  }

  .entry-content h3 {
    font-size: 1.25rem;
  }

  /* Stop text from wrapping around floated images */
  .entry-content .alignleft,
  .entry-content .alignright,
  .entry-content figure.alignleft,
  .entry-content figure.alignright,
  .entry-content img.alignleft,
  .entry-content img.alignright {
    float: none !important;
    display: block;
    clear: both;
    width: auto;
    max-width: 100%;
    margin: 1.5rem auto !important;
  }

  /* Center standard images and image blocks */
  .entry-content figure,
  .entry-content .wp-block-image {
    clear: both;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .entry-content figure img,
  .entry-content .wp-block-image img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }

  /* Ensure paragraphs begin below images */
  .entry-content figure + p,
  .entry-content .wp-block-image + p {
    clear: both;
  }

  /* Prevent buttons from feeling oversized */
  .wp-block-button__link,
  .kt-button,
  .kb-button {
    padding: 0.7em 1.1em;
    font-size: 0.95rem;
  }
}
}
.entry-content figcaption,
.entry-content .wp-caption-text,
.entry-content .blocks-gallery-caption,
.entry-content .wp-element-caption {
    display: none !important;
}
/* Rounded corners on all images */
.entry-content img {
    border-radius: 8px;
}

/* Slight shadow on images */
.entry-content img {
    box-shadow: 0 4px 12px rgba(0,0,0,.10);
}

/* Smooth hover effect */
.entry-content img:hover {
    transform: scale(1.01);
    transition: .25s ease;
}
/* Better readability */
.entry-content {
    max-width: 900px;
    margin: auto;
}
.page-title-wrap {
    border-bottom: 3px solid #3F7D78;
}