/* Base / layout */
html {
    box-sizing: border-box;
    overflow-x: hidden;
}
*,
*:before,
*:after { box-sizing: inherit; }

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;

    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;

    line-height: 1.5;
    font-size: 1rem;
}

header {
    display: flex;
    justify-content: center;
}

img {
    vertical-align: middle;
    border-style: none;
}

a {
    color: #7a4020;
    text-decoration: none;
}
a:hover { font-style: italic; }

/* Typography */
h1 { font-size: 2rem; }
h2 { font-size: 1.67rem; }
h3 { font-size: 1.34rem; }
h4 { font-size: 1.11rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.89rem; }

h1,h2,h3,h4,h5,h6 {
    font-family: "Noto Sans", sans-serif;
    font-weight: 700;
    margin: 0.67rem 0;
}

/* Utility */
.center { text-align: center !important; }

.anchor-scroll-padding { scroll-margin-top: 7.45rem; }

.content {
    margin-left: auto;
    margin-right: auto;
    max-width: 120rem;
}

.padding-header { padding: 2rem 0; }

.padding-sub-row {
    padding: 1rem 1rem;
    width: 100%;
}

/* Responsive width tags */
.col { width: 100%; }

/* Small - sub 600px wide */
.col.s1{width:8.33333%}
.col.s2{width:16.66666%}
.col.s3{width:24.99999%}
.col.s4{width:33.33333%}
.col.s5{width:41.66666%}
.col.s6{width:49.99999%}
.col.s7{width:58.33333%}
.col.s8{width:66.66666%}
.col.s9{width:74.99999%}
.col.s10{width:83.33333%}
.col.s11{width:91.66666%}
.col.s12{width:99.99999%}

/* Medium */
@media (min-width:801px) {
    .col.m1{width:8.33333%}
    .col.m2{width:16.66666%}
    .col.m3{width:24.99999%}
    .col.m4{width:33.33333%}
    .col.m5{width:41.66666%}
    .col.m6{width:49.99999%}
    .col.m7{width:58.33333%}
    .col.m8{width:66.66666%}
    .col.m9{width:74.99999%}
    .col.m10{width:83.33333%}
    .col.m11{width:91.66666%}
    .col.m12{width:99.99999%}
}

/* Large */
@media (min-width:1081px) {
    .col.l1{width:8.33333%}
    .col.l2{width:16.66666%}
    .col.l3{width:24.99999%}
    .col.l4{width:33.33333%}
    .col.l5{width:41.66666%}
    .col.l6{width:49.99999%}
    .col.l7{width:58.33333%}
    .col.l8{width:66.66666%}
    .col.l9{width:74.99999%}
    .col.l10{width:83.33333%}
    .col.l11{width:91.66666%}
    .col.l12{width:99.99999%}

    h1 { font-size: 2.33rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.67rem; }
    h4 { font-size: 1.34rem; }
    h5 { font-size: 1.11rem; }
    h6 { font-size: 1rem; }
}

/* Phone-specific */
@media (max-width:650px) {
    .padding-header { padding: 2rem 0 !important; }
}

/* Sections used in index.html */
.section-header {
    color: #1a2e14 !important;
    background-color: #7c9264 !important;
}

.section-content {
    color: #1a2416 !important;
    background-color: #eaf3e2 !important;
}

.section-footer {
    color: #111 !important;
    background-color: #fff !important;
    border-top: 1px solid #cce0c0;
}

.tagline {
    color: #2a3e1e !important;
    margin-bottom: 2rem;
}

/* Header */
.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.logo-circle {
    width: min(48vh, 82vw);
    height: min(48vh, 82vw);
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.header-logo {
    width: 100%;
    height: 88%;
    object-fit: contain;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.22));
}

/* Gallery strip */
.section-gallery {
    background: #1e3a19;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    cursor: grab;
    will-change: transform;
}

.gallery-track.dragging {
    cursor: grabbing;
}

.gallery-thumb {
    width: 220px;
    height: 220px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: opacity 0.2s;
}

.gallery-thumb:hover { opacity: 0.82; }


/* Gallery modal */
.gallery-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.gallery-modal.open { display: flex; }

#gallery-modal-img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
}

.gallery-close {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.gallery-prev,
.gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 4rem;
    cursor: pointer;
    padding: 0 1rem;
    line-height: 1;
    user-select: none;
}

.gallery-prev { left: 0.5rem; }
.gallery-next { right: 0.5rem; }

.gallery-counter {
    position: absolute;
    bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Footer (index.html version) */
.footer-inner {
    max-width: 70rem;
    margin: 0 auto;
    padding: 3.5rem 1rem;
    text-align: center;
}

.footer-title {
    text-transform: uppercase;
    letter-spacing: 0.18rem;
    font-size: 0.9rem;
    color: #444;
    margin-bottom: 0.75rem;
}

.footer-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.footer-copy {
    font-size: 0.85rem;
    color: #777;
}

/* Google font helper classes used in index.html */
.bebas-neue-regular {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.noto-sans-400 {
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

/* Tabs */
.tab {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding-top: 1.5rem;
    overflow: hidden;
    background-color: #f0f7ea;
}

.tab button {
    background-color: inherit;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;

    text-transform: uppercase;
    color: #1a2416;
}

.tab button:hover {
    text-decoration: underline;
    text-underline-offset: 0.5rem;
}

.tab button.active {
    text-decoration: underline;
    text-underline-offset: 0.5rem;
    text-decoration-thickness: 0.1rem;
}

.tab-content { background-color: #f3f8ed; }

.tabcontent {
    display: none;
    padding: 6px 12px;
    color: #1a2416;
    animation: fadeEffect 1s;
    max-width: 70rem;
    margin-left: auto;
    margin-right: auto;
}

@keyframes fadeEffect {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Services list cards */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.service-card {
    background: #fff;
    border: 1px solid #c4d9ae;
    padding: 1.5rem 1.75rem;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;

    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.service-card:hover {
    border-color: #a4c48e;
    background-color: #f5fff0;
    box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.10);
    transform: translateY(-2px);
}

.service-name {
    font-size: 1.34rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    text-align: left;

    font-family: "EB Garamond", serif;
    font-weight: 400;
}

.service-desc {
    color: #5a6e52;
    max-width: 46rem;
    text-align: left;
}

.service-meta {
    text-align: right;
    min-width: 6.5rem;

    display: flex;
    justify-content: flex-end;
    align-items: baseline;
    gap: 0.8rem;
}


.service-starting-from {
    color: #7a8e72;
    font-size: 1rem;
    font-style: italic;
}

.service-price {
    color: #4a6e35;
    font-weight: 700;
    font-size: 1.34rem;
    line-height: 1.1;

    font-family: "EB Garamond", serif;
    font-weight: 700;
}

.service-time {
    color: #5a6e52;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

@media (max-width: 650px) {
    .service-card { flex-direction: column; }
    .service-meta { width: 100%; }
}

.services-includes {
    margin-top: 2rem;
    padding: 1.25rem 1.5rem;
    background: #fff;
    border: 1px solid #c4d9ae;
    text-align: left;

}

.services-includes h4 {
    margin: 0 0 0.75rem 0;
    font-family: "EB Garamond", serif;
    font-weight: 400;
}

.services-includes ul {
    margin: 0;
    padding-left: 1.25rem;
    color: #5a6e52;
}

.services-includes li {
    margin: 0.35rem 0;
}

.tablinks {
    font-size: 1.1rem;
}

.tab-title {
    font-size: 2rem;
    text-align: center;
    padding-bottom: 1.5rem;
}

.header-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;

    padding: 0.85rem 1.15rem;
    border-radius: 999px;

    margin-top: 1.5rem;

    background-color: #4e6490;
    color: #f5f0e6;

    letter-spacing: 0.02em;
    text-transform: uppercase;

    box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.18);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}

.header-link:hover {
    color: #371e15;                /* keep it button-like on hover */
    background-color: #f5f0e6;
    box-shadow: 0 0.55rem 1.6rem rgba(0, 0, 0, 0.24);
    transform: translateY(-1px);
    font-style: normal;          /* override global a:hover italic */
    text-decoration: none;
}

.header-link:active {
    transform: translateY(0);
    box-shadow: 0 0.35rem 1.1rem rgba(0, 0, 0, 0.20);
}

.header-link:focus-visible {
    outline: 3px solid rgba(240, 196, 92, 0.9);
    outline-offset: 3px;
}

.eb-garamond-400
{
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.eb-garamond-700
{
    font-family: "EB Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

/* ── Store tab ───────────────────────────────────────────────── */

.store-loading {
    padding: 2rem;
    text-align: center;
    color: #5a6e52;
    font-family: "Noto Sans", sans-serif;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    padding: 1.5rem;
}

.store-card {
    background: #fff;
    border: 1px solid #c4d9ae;
    border-radius: 6px;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
}

.store-card:hover {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.10);
    transform: translateY(-2px);
}

.store-card a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.store-card-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.store-card-body {
    padding: 0.75rem 1rem 1rem;
    font-family: "Noto Sans", sans-serif;
}

.store-card-title {
    margin: 0 0 0.35rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #3a5a35;
    line-height: 1.3;
}

.store-card-price {
    margin: 0 0 0.6rem;
    font-size: 0.9rem;
    color: #cf8165;
}

.store-card-btn {
    display: block;
    background: #c07840;
    color: #fff;
    text-align: center;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}
