html {
    position: relative;
    min-height: 100%;
    font-size: 14px;
    scroll-behavior: smooth;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

body {
  background-color: var(--lb-color-background);
  color: var(--lb-color-text);
}

.lb-navbar-logo {
    display: block;
    width: auto;
    height: 32px;
}

.lb-navbar-brand-floating {
    position: fixed;
    top: 0.5rem;
    z-index: 1050;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
/* ==========================================================
   Title area
   ========================================================== */
.lb-page-title {
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    font-size: 3rem;
    text-align: center;
    color: #333
}

.lb-section-title {
    margin-bottom: 10px;
    font-family: "Quicksand", sans-serif;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
}

.lb-page-normal {
    font-size: 1.1rem;
    text-align: center;
    color: var(--lb-color-text);
    line-height: 1.6;
}

.lb-page-normal a {
    color: var(--lb-color-secondary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.lb-page-normal a:hover {
    color: var(--lb-color-primary);
    text-decoration: underline;
}

.lb-page-subtle {
    font-size: 0.8rem;
    text-align: center;
}

/* ==========================================================
   LimeBerry Theme
   ========================================================== */

:root {

    /* Brand Colors */
    --lb-color-primary: #8CF000;
    --lb-color-secondary: #7B4BA3;
    --lb-color-accent: #F15BB5;

    /* Neutral Colors */
    --lb-color-background: #f8f8f8;
    --lb-color-card: #ffffff;
    --lb-color-border: #d8d8d8;

    --lb-color-text: #222222;
    --lb-color-text-muted: #666666;

}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* LimeBerry reusable components */

.lb-grid {
    display: grid;
}

.lb-card {
    display: flex;
    flex-direction: column;
}

.lb-card-title {
    margin: 0;
}

.lb-action-link {
    display: inline-block;
    color: var(--lb-color-secondary);
    font-weight: 700;
    text-decoration: none;
}

.lb-action-link:hover,
.lb-action-link:focus {
    color: var(--lb-color-primary);
    text-decoration: underline;
}

.lb-eyebrow {
    margin: 0 0 0.5rem;
    color: var(--lb-color-secondary);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lb-content-section {
    margin-bottom: 75px;
}

.lb-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.lb-content-text {
    text-align: left;
    font-size: 1.2rem;
}

.lb-content-list {
    max-width: 700px;
    margin: 1.5rem auto 0;
    padding: 0.5rem 0 0.5rem 1.5rem;
    text-align: left;
}

.lb-content-list li {
    margin-bottom: 0.5rem;
}

/* Site Hero */

.lb-hero {
    margin-bottom: 0.1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    background: linear-gradient(
        180deg,
        rgba(109, 190, 69, 0.10) 0%,
        rgba(255, 255, 255, 0) 100%
    );
    border-radius: 10px;
}

.lb-hero-logo {
    width: min(260px, 70%);
    height: auto;
    margin-bottom: 1rem;
}

.lb-hero-text {
    max-width: 850px;
    margin: 0.75rem auto 0;
    color: var(--lb-color-text-muted);
    font-size: 1.5rem;
    text-align: center;
}

.lb-hero-dividers {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    max-width: 420px;
    margin: 1.5rem auto 0;
}

.lb-hero-dividers span {
    width: 75%;
    height: 0.08px;
    border-radius: 999px;
}

.lb-hero-dividers span:first-child {
    background-color: var(--lb-color-primary);
}

.lb-separator-green-thin {
    width: 100%;
    height: 0.05rem;
    background-color: var(--lb-color-primary); /* LimeBerry green */
    margin: 10px auto 20px;
    border-radius: 2px;
}

.lb-separator-pink-thin {
    width: 100%;
    height: 0.05rem;
    background-color: var(--lb-color-secondary); /* LimeBerry green */
    margin: 10px auto 20px;
    border-radius: 2px;
}


/* ==========================================================
   Buttons
   ========================================================== */

.lb-button-primary {
    display: inline-block;
    padding: 14px 28px;

    background-color: var(--lb-color-primary);
    color: #333;

    border: none;
    border-radius: 8px;

    font-family: "Quicksand", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;

    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.lb-button-primary:hover {
    background-color: #7AD600;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.lb-button-primary:focus-visible {
    outline: 3px solid rgba(109, 190, 69, 0.35);
    outline-offset: 3px;
}

.lb-button-primary:active {
    transform: translateY(0);
    box-shadow: none;
}

.lb-button-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ==========================================================
   Site Footer
   ========================================================== */

.lb-footer {
    margin-top: 4rem;
    padding: 3rem 0 1.25rem;

    background-color: #ffffff;
    border-top: 1px solid var(--lb-color-border);

    color: var(--lb-color-text);
}

.lb-footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.8fr;
    gap: 3rem;
}

.lb-footer-section {
    min-width: 0;
}

.lb-footer-heading {
    margin: 0 0 1rem;

    font-family: "Quicksand", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;

    color: var(--lb-color-secondary);
}

.lb-footer-section p {
    margin: 0 0 0.75rem;
    line-height: 1.6;
}

.lb-footer-address {
    margin: 0 0 0.75rem;

    font-style: normal;
    line-height: 1.6;
}

.lb-footer-hours {
    margin-top: 0.75rem;
}

.lb-footer a {
    color: var(--lb-color-secondary);
    font-weight: 600;
    text-decoration: none;

    transition: color 0.2s ease;
}

.lb-footer a:hover,
.lb-footer a:focus {
    color: var(--lb-color-primary);
    text-decoration: underline;
}

.lb-footer-links {
    margin: 0;
    padding: 0;

    list-style: none;
}

.lb-footer-links li {
    margin-bottom: 0.5rem;
}

.lb-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;

    margin-top: 2.5rem;
    padding-top: 1rem;

    border-top: 1px solid var(--lb-color-border);

    color: var(--lb-color-text-muted);
    font-size: 0.875rem;
}


/* ==========================================================
   Site Footer - Mobile
   ========================================================== */

@media (max-width: 767px) {

    .lb-footer {
        margin-top: 3rem;
        padding-top: 2.25rem;
    }

    .lb-footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .lb-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}