/* Always reserve vertical scrollbar space so the viewport-centered avatar logo
   stays aligned with the left brand text on every page (short pages without a
   scrollbar were shifting the logo vs. long /post/ pages with one). */
html {
  overflow-y: scroll;
  scrollbar-gutter: stable;
  /* Fluid root: every rem-based size scales smoothly with the viewport
     instead of staying fixed (tiny on large displays). ~15px on phones,
     ~18px at 1440, up to 22px on big monitors. Tune the slope/cap here. */
  font-size: clamp(15px, 0.3vw + 12.6px, 19px);
}

:root {
  /* Base tones */
  --lp-background: #f5f2ed;     /* warm cream background */
  --lp-surface: #ffffff;        /* clean white surfaces */
  --lp-surface-muted: #f0ebe5;  /* soft beige panels */
  --lp-border: #e4dcd3;         /* subtle clay border */

  /* Primary brand color (blush-peach family) */
  --lp-primary: #e8b8a2;        /* gentle peach */
  --lp-primary-dark: #7b3f29;   /* deep terracotta accent */

  /* Accent color for highlights / hover */
  --lp-accent: #f9e3d9;         /* muted rose-beige glow */

  /* Text palette */
  --lp-text: #3a312b;           /* dark cocoa text */
  --lp-text-light: #7c6d63;     /* warm taupe for secondary text */

  /* Interactive / contrasty buttons */
  --lp-button-bg: linear-gradient(135deg, #f6a78f, #fcd6c1);
  --lp-button-hover: linear-gradient(135deg, #f29174, #fbc4a8);
  --lp-button-text: #3a312b;

  /* Shadows / subtle depth */
  --lp-shadow: 0 12px 25px rgba(160, 120, 90, 0.15);

    /* Footer theme */
  --lp-footer-bg: #ede3dc;         /* soft clay-beige */
  --lp-footer-text: #5a4b43;       /* warm medium brown */
  --lp-footer-text-light: #8a7c73; /* lighter version for links or secondary text */
  --lp-footer-border: #e0d2ca;     /* faint divider line */
  --lp-footer-link-hover: #d48f7b; /* subtle warm accent */
}

body {
  background: var(--lp-background);
  color: var(--lp-text);
  /* match theme body font — drop the stray Helvetica family (was a 3rd typeface) */
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  /* rem (not the theme's fixed 18px) so base text scales with the fluid root */
  font-size: 1.1rem;
  line-height: 1.7;
  padding-top: 72px;
}

/* Headings use the brand serif (Lora) in a single terracotta tone for a
   consistent, editorial hierarchy — pairs with the serif brand wordmark. */
body .blog-post h1,
body .blog-post h2,
body .blog-post h3,
body .main-content h1,
body .main-content h2,
body .main-content h3,
body .content-area h1,
body .content-area h2,
body .content-area h3,
body .section-title,
body .post-preview .post-title,
body .intro-header.no-img h1,
body .intro-header.no-img h2 {
  font-family: 'Lora', 'Times New Roman', serif;
  /* softer cocoa (as before) rather than full-saturation terracotta */
  color: var(--lp-text);
}

/* One heading scale across every content container so the same level is
   the same size sitewide (home .main-content was using browser defaults
   while blog used another, hence the size/color mismatch). Page hero
   (.intro-header h1) keeps its own large size — intentionally excluded. */
body .main-content h1,
body .blog-post h1,
body .content-area h1 { font-size: 2.4rem; line-height: 1.2; }
body .main-content h2,
body .blog-post h2,
body .content-area h2 { font-size: 1.9rem; line-height: 1.25; }
body .main-content h3,
body .blog-post h3,
body .content-area h3 { font-size: 1.5rem; line-height: 1.3; }

a {
  color: var(--lp-primary-dark);
  transition: color 0.2s ease;
}

a:hover,
a:focus {
  color: var(--lp-primary);
  text-decoration: none;
}

.btn,
button,
input[type=submit] {
  border-radius: 999px;
  font-weight: 600;
}

.btn-primary,
.navbar-custom .navbar-right .nav-book-cta .navbar-btn {
  background: var(--lp-primary) !important;
  border-color: var(--lp-primary) !important;
  color: var(--lp-text) !important;
  box-shadow: 0 8px 20px rgba(245, 167, 184, 0.35);
  /* padding: 0.65rem 1.75rem; */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover,
.btn-primary:focus,
.navbar-custom .navbar-right .nav-book-cta .navbar-btn:hover,
.navbar-custom .navbar-right .nav-book-cta .navbar-btn:focus {
  background: var(--lp-primary-dark) !important;
  border-color: var(--lp-primary-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(236, 140, 164, 0.35);
}

.left {
  float: left;
  margin-right: 1rem;
  margin-bottom: 1rem;
}

.right {
  float: right;
  margin-left: 1rem;
  margin-bottom: 1rem;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.navbar-custom {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--lp-surface);
  border-bottom: 1px solid var(--lp-border);
  box-shadow: 0 4px 14px rgba(123, 63, 41, 0.12);
  z-index: 1000;
}

.navbar-custom .navbar-brand {
  color: var(--lp-primary-dark);
  font-weight: 700;
}

.navbar-custom .navbar-brand-with-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  white-space: nowrap;
}

.navbar-custom .navbar-brand-with-logo .navbar-brand-logo {
  display: block;
  height: 34px;
  width: auto;
  flex: 0 0 auto;
}

.navbar-custom .navbar-brand-with-logo .navbar-brand-text {
  line-height: 1;
}

/* Vertically center the left-aligned brand inline with the menu on desktop */
@media (min-width: 768px) {
  .navbar-custom > .container-fluid {
    display: flex;
    align-items: center;
  }
  .navbar-custom .navbar-collapse {
    flex: 1 1 auto;
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
  }
  .navbar-custom .navbar-nav.navbar-right {
    float: none;
    display: flex;
    align-items: center;
    margin: 0;
  }
  .navbar-custom .navbar-nav > li {
    float: none;
  }
  .navbar-custom .navbar-brand,
  .navbar-custom .navbar-brand-with-logo {
    display: inline-flex;
    align-items: center;
    height: auto;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.navbar-custom,
.navbar-custom.top-nav-short,
.navbar-custom.top-nav-expanded {
  padding: 12px 0 !important;
  transition: none !important;
}

.navbar-custom .navbar-brand:hover,
.navbar-custom .navbar-brand:focus {
  color: var(--lp-primary);
}

/* Center logo "minimize" on scroll (desktop).
   The .top-nav-short class is toggled past 50px of scroll by the inline handler
   in layouts/partials/footer_custom.html (the selfHosted build ships no jQuery,
   so the theme's main.js never loads). At rest the big avatar logo hangs off the
   navbar's bottom edge into the content; on scroll it shrinks/fades away while a
   small logo pops in beside the brand text. */
@media (min-width: 992px) {
  .navbar-custom .avatar-container {
    /* hang the logo off the navbar's bottom edge so it sticks into the content */
    top: auto;
    bottom: 0;
    margin-top: 0;
    transform: translate(-50%, 45%) scale(1);
    transform-origin: center;
    z-index: 1050;
    /* shrink first, fade out only near the end so the minimize is visible */
    transition: transform 0.45s cubic-bezier(0.5, 0, 0.2, 1),
                opacity 0.2s ease-in 0.25s,
                visibility 0s linear 0.45s;
  }
  .navbar-custom .avatar-container .avatar-img-border {
    margin-left: 0;
  }
  /* scrolled: minimize the big logo away (shrink up toward the navbar) */
  .navbar-custom.top-nav-short .avatar-container {
    opacity: 0;
    visibility: hidden;
    /* shrink and slide off toward the left (brand text / small logo) */
    transform: translate(calc(-50vw + 60px), +25px) scale(0.1);
  }
  /* scrolled: reveal the small logo beside the brand text, popping in */
  .navbar-custom.top-nav-short .navbar-brand-with-logo .navbar-brand-logo-shell {
    display: inline-flex;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    overflow: hidden;
    flex: 0 0 auto;
    animation: lp-logo-pop 0.4s ease-out both;
  }
  .navbar-custom.top-nav-short .navbar-brand-with-logo .navbar-brand-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@keyframes lp-logo-pop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.navbar-custom .navbar-nav > li > a {
  color: var(--lp-text-light);
  font-weight: 500;
}

.navbar-custom .navbar-nav > li > a:hover,
.navbar-custom .navbar-nav > li > a:focus,
.navbar-custom .navbar-nav > .active > a {
  color: var(--lp-primary-dark);
}

/* Scale up navbar links + brand on roomier screens */
@media (min-width: 992px) {
  .navbar-custom .navbar-nav > li > a {
    font-size: 0.85rem;
    white-space: nowrap; /* never let a single item wrap to two lines */
  }
  .navbar-custom .navbar-brand-with-logo .navbar-brand-text {
    font-size: 1.3rem;
  }
}

@media (min-width: 1200px) {
  .navbar-custom .navbar-nav > li > a {
    font-size: 0.8rem;
  }
  .navbar-custom .navbar-brand-with-logo .navbar-brand-text {
    font-size: 1.45rem;
  }
}

.nav-toggle-checkbox {
  display: none;
}

.navbar-toggle {
  border: none !important;
  background: transparent !important;
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  display: none;
}

.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--lp-text) !important;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}

.navbar-toggle:focus {
  outline: 2px solid var(--lp-primary-dark);
}

.nav-toggle-checkbox:checked ~ .navbar-header .navbar-toggle .icon-bar:nth-of-type(2) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle-checkbox:checked ~ .navbar-header .navbar-toggle .icon-bar:nth-of-type(3) {
  opacity: 0;
}

.nav-toggle-checkbox:checked ~ .navbar-header .navbar-toggle .icon-bar:nth-of-type(4) {
  transform: translateY(-6px) rotate(-45deg);
}

.intro-header.no-img {
  background: transparent;
}

/* Desktop: reserve space at top of content so the hanging center logo
   doesn't overlap the heading when the page is not scrolled */
@media (min-width: 992px) {
  .header-section {
    padding-top: 45px;
  }
}

.intro-header.no-img h1,
.intro-header.no-img h2,
.intro-header.no-img span {
  color: var(--lp-text);
}

.content-shell {
  width: 100%;
  padding: 0 clamp(1rem, 5vw, 4rem) clamp(2rem, 4vw, 4rem);
}

.content-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.content-wrapper.no-sidebar {
  display: block;
}

.content-area {
  background: var(--lp-surface);
  border-radius: 22px;
  padding: clamp(1.75rem, 4vw + 1rem, 3rem);
  box-shadow: 0 25px 50px rgba(244, 188, 203, 0.28);
  flex: 1;
}

.content-area--full {
  max-width: 100%;
}

.blog-post h1,
.blog-post h2,
.blog-post h3 {
  color: var(--lp-text);
  margin-top: 2.2rem;
  margin-bottom: 1rem;
}

.blog-post h1:first-child,
.blog-post h2:first-child {
  margin-top: 0;
}

.blog-post p,
.blog-post li {
  color: var(--lp-text);
}

.blog-post blockquote {
  border-left: 4px solid var(--lp-primary);
  background: var(--lp-accent);
  padding: 1.3rem 1.75rem;
  border-radius: 14px;
  color: var(--lp-text);
}

.sidebar {
  flex: 0 0 270px;
  position: sticky;
  top: 110px;
}

.sidebar-card {
  background: var(--lp-surface);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 16px 35px rgba(220, 172, 188, 0.28);
  border: 1px solid var(--lp-border);
}

.sidebar-title {
  margin-top: 0;
  margin-bottom: 1.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1.05rem;
  color: var(--lp-text);
}

.sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-list li {
  margin-bottom: 0.85rem;
}

.sidebar-list li a {
  display: block;
  padding: 0.45rem 0.65rem;
  border-radius: 10px;
  color: var(--lp-text-light);
  transition: background 0.2s ease, color 0.2s ease;
}

.sidebar-list li.active a,
.sidebar-list li a:hover,
.sidebar-list li a:focus {
  background: var(--lp-accent);
  color: var(--lp-text);
}

.posts-list {
  display: grid;
  gap: 2rem;
}

.posts-list.compact {
  gap: 1.5rem;
}
.main-content {
  background: var(--lp-surface);
  border-radius: 18px;
  padding: 2rem 4rem;
  box-shadow: 0 16px 38px rgba(233, 180, 194, 0.2);
  border: 1px solid var(--lp-border);
}

@media (min-width: 768px) and (max-width: 991px) {
  .content-area,
  .sidebar-card,
  .main-content {
    padding: 1.75rem;
  }
}

@media (min-width: 992px) {
  .booking-page-shell {
    background: var(--lp-surface);
    border-radius: 18px;
    padding: 2rem 4rem;
    box-shadow: 0 16px 38px rgba(233, 180, 194, 0.2);
    border: 1px solid var(--lp-border);
  }
}

.post-preview {
  background: var(--lp-surface);
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 16px 38px rgba(233, 180, 194, 0.2);
  border: 1px solid var(--lp-border);
}
.compact .post-preview {
  padding: 1.5rem; /* was 2rem 4rem — the 4rem sides starved the narrow sidebar */
}
.compact .post-preview .post-title {
  font-size: 1.3rem;
  margin: 10px 0;
}
/* Body copy, identical across article column, home column and sidebar.
   In rem, so it rides the fluid root and scales smoothly with the viewport
   (no fixed mobile/desktop jump). */
.blog-post p,
.blog-post li,
.main-content p,
.main-content li,
.content-area p,
.content-area li,
.compact .post-preview .post-entry,
.compact .post-preview .post-entry p,
.compact .post-preview .post-read-more {
  font-size: 1.2rem;
}
.post-preview .post-subtitle {
  margin: 0;
  font-weight: 300;
  margin-bottom: 10px;
}

.post-preview .post-title {
  margin-top: 0;
  color: var(--lp-text);
}

.post-preview .post-meta {
  color: var(--lp-text-light);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.post-preview .post-entry {
  color: var(--lp-text);
}

/* Post titles/links use brand cocoa, not the theme's default #404040 gray */
.post-preview a,
.post-preview .post-title {
  color: var(--lp-text);
}

/* Meta links: keep them in the warm taupe family, not #404040 */
.post-heading .post-meta a,
.page-meta a {
  color: var(--lp-text-light);
}

.post-preview .post-read-more {
  color: var(--lp-primary-dark);
  font-weight: 600;
}

.pager.main-pager,
.pager.blog-pager {
  margin-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.pager li > a {
  border-radius: 999px;
  border: 1px solid var(--lp-border);
  padding: 0.6rem 1.4rem;
  color: var(--lp-text);
  background: var(--lp-surface);
  transition: background 0.2s ease;
}

.pager li > a:hover,
.pager li > a:focus {
  background: var(--lp-accent);
  color: var(--lp-text);
}

.home-intro {
  background: var(--lp-surface);
}

.section-title {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: var(--lp-text);
}

.section-lead {
  color: var(--lp-text-light);
  margin-bottom: 2.5rem;
}

.center-action {
  margin-top: 2rem;
}

.blog-tags a {
  display: inline-block;
  background: var(--lp-accent);
  color: var(--lp-text);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.blog-tags a:hover,
.blog-tags a:focus {
  background: var(--lp-primary);
}

.booking-frame-wrapper {
  width: 100%;
  max-width: 900px;
 }

.booking-frame {
  display: block;
  width: 100%;
  min-height: 720px;
  border: none;
  background: var(--lp-surface);
}

@media (min-width: 992px) {
  .navbar-custom .navbar-collapse {
    display: flex !important;
    justify-content: flex-end;
    align-items: center;
  }
}

@media (max-width: 991px) {
  body {
    padding-top: 72px;
  }

  .navbar-custom > .container-fluid {
    display: block;
  }

  /* Clear the fixed two-row navbar so page titles start fully below it. */
  .header-section {
    padding-top: 3rem;
  }

  /* The booking page has no mobile CTA row, so it needs less navbar clearance. */
  .header-section.booking-page-header {
    display: none;
  }

  /* Replace the hidden booking title's navbar clearance before the iframe. */
  .booking-page-header + .container[role="main"] {
    margin-top: 3rem;
  }

  .navbar-custom .navbar-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  /* Bootstrap's clearfix pseudo-elements become grid items and offset the
     apparent center unless they are removed from this grid container. */
  .navbar-custom .navbar-header::before,
  .navbar-custom .navbar-header::after {
    display: none;
  }

  /* Hide the descriptor on mobile — keep just "Lash Principal" */
  .navbar-custom .navbar-brand-suffix {
    display: none;
  }

  /* Book Online drops to its own row (brand + toggle share row 1), capped
     width so it isn't full-bleed wide. */
  .nav-book-mobile.btn-2 {
    display: inline-block;
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: center;
    width: 70%;
    max-width: 18rem;
    margin: 0;
    padding: 0.65rem 1.25rem;
    font-size: 0.9rem;
    text-align: center;
    text-transform: uppercase;
    border-radius: 8px;
    color: #ffffff !important;
  }

  .nav-book-mobile.btn-2:hover,
  .nav-book-mobile.btn-2:focus {
    animation-play-state: running;
  }

  .navbar-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    grid-column: 2;
    grid-row: 1;
    float: none;
    margin: 0;
    width: 44px;
    height: 44px;
    padding: 11px;
    border: 1px solid var(--lp-border) !important;
    border-radius: 8px;
    background: var(--lp-surface-muted) !important;
  }

  .navbar-toggle .icon-bar + .icon-bar {
    margin-top: 0;
  }

  .navbar-custom .navbar-collapse.collapse {
    display: none !important;
  }

  .nav-toggle-checkbox:checked ~ .navbar-collapse {
    display: block !important;
    width: 100%;
    margin-top: 0.75rem;
    padding: 0;
    background: var(--lp-surface);
    border-top: 1px solid var(--lp-border);
    box-shadow: 0 8px 16px rgba(58, 49, 43, 0.08);
  }

  .navbar-custom .navbar-nav {
    float: none;
    width: 100%;
    margin: 0;
  }

  .navbar-custom .navbar-nav > li {
    float: none;
  }

  .navbar-custom .navbar-nav > li > a {
    display: block;
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
    border-bottom: 1px solid var(--lp-border);
  }

  .navbar-custom .navbar-nav > li:last-child > a {
    border-bottom: 0;
  }

  .navbar-custom .navbar-nav > li > a:hover,
  .navbar-custom .navbar-nav > li > a:focus {
    background: var(--lp-surface-muted);
    color: var(--lp-primary-dark);
  }

  .navbar-custom .navbar-brand,
  .navbar-custom .navbar-brand-with-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    /* drop the theme's fixed 50px height + 15px padding so the brand sits
       on the row baseline and centers with the toggle (was floating high
       on phones <768px where the desktop reset didn't reach) */
    height: auto;
    padding-top: 0;
    padding-bottom: 0;
  }

  .navbar-custom .navbar-brand-with-logo .navbar-brand-text {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  /* Book Online lives in the header on mobile — drop the duplicate menu item */
  .navbar-custom .navbar-nav > li:has(> a.btn-2) {
    display: none;
  }

  .navbar-custom .navbar-brand-with-logo .navbar-brand-logo-shell {
    display: inline-flex;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    flex: 0 0 auto;
  }

  .navbar-custom .navbar-brand-with-logo .navbar-brand-text {
    display: block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .navbar-custom .navbar-right .nav-book-cta .navbar-btn {
    width: 100%;
    margin: 1rem 0 0;
    text-align: center;
  }

  .navbar-custom .avatar-container {
    display: none;
  }

  .content-wrapper {
    flex-direction: column;
    gap: 1rem;
  }

  .sidebar {
    position: static;
    width: 100%;
  }

  .sidebar-card,
  .content-area,
  .post-preview,
  .compact .post-preview {
    width: 100%;
    max-width: 100%;
    padding: 1.5rem;
    box-sizing: border-box;
  }

  .main-content {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .content-shell {
    padding: 0 1rem 2.5rem;
  }

  .home-blog-preview {
    width: 100%;
    margin-top: 0;
  }

  div[role=main].container,
  .container[role=main] {
    width: 100%;
    max-width: none;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  div[role=main].container > .row,
  .container[role=main] > .row {
    margin-left: 0;
    margin-right: 0;
  }

  div[role=main].container > .row > [class*="col-"]:not(.main-content),
  .container[role=main] > .row > [class*="col-"]:not(.main-content) {
    padding-left: 0 !important;
    padding-right: 0 !important;
    float: none;
    width: 100%;
  }

  div[role=main].container > .row > [class*="col-"] + [class*="col-"],
  .container[role=main] > .row > [class*="col-"] + [class*="col-"] {
    margin-top: 1rem;
  }

  .header-section .intro-header.no-img {
    padding: 0.5rem 0 0;
  }

  .header-section .page-heading {
    padding: 0.5rem 0 0.75rem;
  }

  .header-section .page-heading h1 {
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 0.35rem;
  }

  .header-section .page-heading hr.small {
    margin: 0.5rem auto;
  }

  .header-section .page-heading .page-subheading {
    font-size: 1rem;
    margin-top: 0.35rem;
  }

  /* booking — untouched */
  .booking-page-shell {
    padding: 0;
  }

  .booking-frame-wrapper {
    width: 100%;
    max-width: none;
    margin: 2rem 0;
    border-radius: 0;
  }

  .booking-frame {
    min-height: 820px;
  }

  .btn-primary,
  .navbar-custom .navbar-right .nav-book-cta .navbar-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .main-content {
    padding: 1.5rem;
  }
}

.btn {
  background: linear-gradient(135deg, #ff5f6d, #ffc371);
  color: white;
  border: none;
  width: auto;
  padding: 0.7rem 1.4rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.btn-2,
.navbar-custom .nav li .btn-2 {
  color: #ffffff !important;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2) !important;
  background-image: linear-gradient(to right, #fbc2eb 0%, #a6c1ee 51%, #fbc2eb 100%) !important;
  background-size: 200% auto !important;
  box-shadow: 0 0 20px #eeeeee !important;
  animation: lp-btn-shimmer 2s linear infinite;
  animation-play-state: paused;
}

/* mobile-only Book Online (shown via the max-width:991px block) */
.nav-book-mobile {
  display: none;
}

.navbar-custom .nav li .btn-2:hover,
.navbar-custom .nav li .btn-2:focus {
  animation-play-state: running;
}

@keyframes lp-btn-shimmer {
  from { background-position: 0% center; }
  to   { background-position: 200% center; }
}

.btn:hover {
  filter: brightness(1.1);
}

.btn:active {
  /* filter: brightness(0.9); */
  transform: scale(0.98);
}

.btn:focus {
  outline: none;
  /* filter: brightness(0.95); */
}

.all-articles {
  padding: 30px 0 0;
}
