
/* ── Palette reference
   --green-dark   : #1a3a1a   (top navbar, very dark green)
   --green-primary: #029e46   (buttons, active states, accents)
   --green-deep   : #027a38   (secondary navbar, footer, hover darken)
   --green-light  : #e6f4ec   (hover backgrounds)
   --white        : #ffffff
───────────────────────────────────────────── */

@font-face {
    font-family: "Euphorigenic";
    src: url('fonts/euphorig.ttf') format('truetype');
}

.euphorigenic-regular {
    font-family: Euphorigenic;
    font-size: 2em !important;
    font-weight: 400;
    font-style: normal;
}

/* ── Navbar ── */

.navbarAlpha {
    background-color: #1a3a1a !important;
}

.navbarAlpha .navbar-brand {
    color: white !important;
}

.navbarBravo {
    background-color: #027a38 !important;
}

.nav-section-btn {
    font-family: "Lobster", sans-serif;
    letter-spacing: 0.5px;
    padding: 0.3em 1.2em !important;
    transition: background-color 150ms ease, color 150ms ease;
}

.nav-section-btn:hover {
    background-color: white !important;
    color: #029e46 !important;
}

.navbarSearch {
    width: 80%;
}

/* ── Bootstrap btn-primary override → green ── */

.btn-primary {
    background-color: #029e46 !important;
    border-color: #027a38 !important;
    color: white !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #027a38 !important;
    border-color: #025c2b !important;
    color: white !important;
}

/* ── Base ── */

body {
    background-color: white !important;
}

a {
    color: inherit !important;
    text-decoration: inherit !important;
}

.row-margin {
    margin-top: 1em !important;
    margin-bottom: 1em !important;
}

h2 {
    font-family: Euphorigenic, "Lobster", sans-serif;
    letter-spacing: 1px;
    font-weight: 400;
    font-style: normal;
}

p {
    font-size: 1.5em;
    letter-spacing: 1px;
    word-spacing: 2px;
}

/* ── Hero sections ── */

.heroTop_A {
    background-image: url("../images/artist/artwork_winter_barn_tile.jpg");
    background-size: cover;
    background-position: center;
    min-height: 300px;
}

.heroTop_B {
    background-image: url("../images/artist/images/studio_display_case.jpg");
    background-size: cover;
    background-position: center;
    min-height: 300px;
}

.content-text {
    background-color: white;
    min-height: 22em;
    padding: 1em;
}

.content-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-icon {
    height: 3em;
    margin-right: 1em;
}

/* ── Product grid ── */

.product_preview {
    margin-top: 2em !important;
    margin-bottom: 2em !important;
}

.product {
    border-radius: 0.5em;
    margin: 0.5em;
    padding: 0.5em 1.75em 0.5em 0.5em;
    border: 1px solid #e8e8e8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    transition: background-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
    cursor: pointer;
}

.product:hover {
    background-color: #f4fbf6;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.13);
    transform: translateY(-2px);
}

.product:hover .add_to_cart {
    opacity: 1;
    transition: opacity 200ms ease;
}

.product_img_resize {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 220px;
    margin: 10px 10px 6px 10px;
}

.product_img_resize img {
    max-height: 100%;
    max-width: 100%;
    border-radius: 0.25em;
}

.product_img_resize_home {
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.product_img_resize_home img {
    width: 100% !important;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.product_title {
    font-size: 1.1em;
    text-align: center;
    font-weight: 500;
    margin-top: 0.25em;
}

.product_brief_details {
    margin-top: 0.25em;
}

.product_number {
    color: #5a9e5a;
}

.product_price {
    color: #029e46;
    font-weight: 600;
    text-align: right;
}

.product_count {
    color: #029e46;
    font-size: 1.25em;
    padding-top: 0.5em;
    padding-bottom: 0.25em;
}

/* ── Add to cart button ── */

.add_to_cart {
    background-color: #027a38 !important;
    color: white !important;
    font-weight: bold !important;
    opacity: 1;
    transition: opacity 200ms ease;
}

.add_to_cart_physical {
    background-color: #029e46 !important;
    border-color: #027a38 !important;
    color: white !important;
    font-weight: bold !important;
}

.add_to_cart_physical:hover {
    background-color: #027a38 !important;
    color: white !important;
}

/* ── Product detail page ── */

.product_details {
    margin-top: 2em;
    margin-bottom: 2em;
}

.product_details_physical {
    text-align: center;
}

.product_modal_body {
    text-align: center;
}

.product_modal_img {
    max-width: 100%;
}

.product_modal_footer {
    display: block !important;
}

.product_modal_physical {
    text-align: center;
}

/* ── Filter sidebar ── */

.filter-sidebar {
    background: #f8f8f8;
    border: 1px solid #e8e8e8;
    border-radius: 0.5em;
    padding: 0.75em;
    position: sticky;
    top: 80px;
}

.filter-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 0.95em;
    color: #333;
    padding-bottom: 0.6em;
    border-bottom: 2px solid #029e46;
    margin-bottom: 0.75em;
}

.filter-clear-link {
    font-size: 0.8em;
    font-weight: 400;
    color: #dc3545 !important;
    text-decoration: none !important;
}

.filter-clear-link:hover {
    text-decoration: underline !important;
}

.filter-sidebar-section {
    margin-bottom: 1em;
}

.filter-sidebar-section-title {
    font-size: 0.75em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #888;
    margin-bottom: 0.4em;
}

.filter-sidebar-option {
    display: block;
    padding: 0.3em 0.5em;
    font-size: 0.88em;
    color: #444 !important;
    border-radius: 0.3em;
    text-decoration: none !important;
    transition: background-color 150ms ease, color 150ms ease;
}

.filter-sidebar-option:hover {
    background-color: #e6f4ec;
    color: #029e46 !important;
}

.filter-sidebar-option.active {
    background-color: #029e46;
    color: white !important;
    font-weight: 500;
}

/* ── You might also like ── */

.related-section {
    margin-top: 2.5em;
    padding-top: 1.5em;
    border-top: 1px solid #eee;
}

/* ── Trust badge ── */

.trust-badge {
    margin-top: 1em;
    opacity: 0.75;
}

/* ── Breadcrumb ── */

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1em;
    font-size: 0.9em;
}

/* ── Misc buttons ── */

.btn-classy {
    font-family: "Lobster", sans-serif !important;
    font-weight: 400 !important;
    font-style: normal !important;
    width: auto !important;
    float: right !important;
    transform: translateY(-3em);
}

/* ── Pagination ── */

.pagination-active a {
    background-color: #029e46 !important;
    border-color: #027a38 !important;
}

/* ── Footer ── */

footer {
    background-color: #027a38;
    font-size: 0.85em;
}

.footer-main {
    background-color: #027a38;
}

.footer-heading {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75em;
    letter-spacing: 1px;
}

.footer-brand {
    font-size: 1.4em !important;
    color: white;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85em;
    line-height: 1.6;
}

.footer-links li {
    margin-bottom: 0.4em;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.9em;
    transition: color 150ms ease;
}

.footer-links a:hover {
    color: white !important;
}

.footer-social {
    display: flex;
    gap: 0.5em;
    justify-content: flex-end;
}

.footer-social-img {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    opacity: 0.85;
    transition: opacity 150ms ease, transform 150ms ease;
}

.footer-social-img:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.footer-email {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.9em;
    transition: color 150ms ease;
}

.footer-email:hover {
    color: white !important;
}

/* ── Legal modal ── */

.modal-legal {
    --bs-modal-width: 800px !important;
}

.modal-body-legal p {
    font-size: 0.75em;
}

/* ── About page ── */

.about-img-wrap {
    margin-bottom: 1em;
    overflow: hidden;
    border-radius: 0.5em;
}

.about-img-wrap img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center;
}

.about-class-card {
    border: 1px solid #c8e8d0;
    border-radius: 0.5em;
    padding: 1.25em;
    margin-bottom: 1em;
    background: #f4fbf6;
    box-shadow: 0 2px 6px rgba(2, 158, 70, 0.07);
    height: 100%;
}

.about-class-card h3 {
    font-family: "Lobster", sans-serif;
    font-size: 1.2em !important;
    color: #029e46;
    margin-bottom: 0.5em;
}

.about-class-card ul {
    font-size: 1em;
    padding-left: 1.2em;
}

.about-supplies-img {
    max-height: 320px;
    object-fit: cover;
    width: 100%;
    border-radius: 0.5em;
}

.btn-classy-center {
    font-family: "Lobster", sans-serif !important;
    font-weight: 400 !important;
    font-style: normal !important;
    margin-top: 0.5em;
    display: inline-block;
}

/* ── Contact page ── */

.contact-artist-img {
    max-height: 280px;
    object-fit: cover;
    object-position: top;
    width: 100%;
    margin-bottom: 0.5em;
}

.contact-artist-name {
    font-family: "Lobster", sans-serif;
    font-size: 1.3em !important;
    color: #029e46;
    margin-top: 0.5em;
    margin-bottom: 0;
}

.contact-artist-title {
    font-size: 0.95em !important;
    color: #666;
    letter-spacing: 0.5px;
}

.contact-info-block {
    margin-bottom: 1.25em;
}

.contact-info-block h3 {
    font-family: "Lobster", sans-serif;
    font-size: 1.15em !important;
    color: #029e46;
    margin-bottom: 0.3em;
}

.contact-social {
    display: flex;
    gap: 0.6em;
    flex-wrap: wrap;
}

.contact-social-img {
    border-radius: 6px;
    opacity: 0.85;
    transition: opacity 150ms ease, transform 150ms ease;
}

.contact-social-img:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.contact-policy-note {
    background: #f4fbf6;
    border: 1px solid #c8e8d0;
    border-left: 4px solid #029e46;
    border-radius: 0.5em;
    padding: 1.25em 1.5em;
    margin-top: 0.5em;
}

.contact-policy-note h3 {
    font-family: "Lobster", sans-serif;
    font-size: 1.15em !important;
    color: #029e46;
    margin-bottom: 0.75em;
}

.contact-policy-note p {
    font-size: 0.9em !important;
    color: #444;
    margin-bottom: 0.5em;
}

/* ── Fonts ── */

.lobster-regular {
    font-family: "Lobster", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.lobster-space {
    font-family: "Lobster", sans-serif !important;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.5px;
}
