@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
    --bg-dark: #0a0a0a;
    --bg-darker: #000000;
    --green-accent: #247238;
    --green-hover: #1d632d;
    --text-light: #ffffff;
    --font-body: Arial, Helvetica, sans-serif;
    --font-heading: 'Poppins', Arial, sans-serif;
    --font-button: 'Montserrat', Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-body);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-darker);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
}

.hero-section {
    position: relative;
    width: 100%;
    height: 533px;
    max-height: 533px;
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url('img/IMG-20240309-WA0051.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 98px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(36, 114, 56, 0);
    border: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(-10px);
    transition: background-color 0.125s ease-in-out, transform 0.125s ease-in-out;
}

.header-inner {
    width: min(1200px, calc(100% - 32px));
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 0;
    padding-bottom: 0;
}

@media (max-width: 768px) {
    .site-header {
        height: 88px;
    }

    .header-inner {
        width: min(1200px, calc(100% - 20px));
        height: 80px;
        padding-top: 0;
        padding-bottom: 0;
    }
}

.site-header.is-visible {
    background: #247238;
    transform: translateY(0);
}

.site-header .brand-link {
    margin-top: 6px;
    margin-bottom: 0;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 74px;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    transform: none;
    transition: background-color 0.125s ease-in-out, opacity 0.125s ease-in-out;
}

.sticky-brand {
    position: static;
    z-index: 1;
}

.site-logo {
    width: 220px;
    height: 74px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.25));
    transition: none;
    transform: translateY(0);
}

.hero-section .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(92%, 1200px);
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 0 0px;
    transform: translateY(70px);
}

.hero-content h1,
.hero-content h2 {
    font-size: 57px;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin: 0;
    color: #ffffff;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
    font-family: 'Poppins', Arial, sans-serif;
}

.hero-subtitle {
    color: #ffffff;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 22px;
    font-weight: 500;
    font-style: italic;
    line-height: 1;
    letter-spacing: 0;
    margin: 20px 0 0;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.hero-description {
    max-width: 820px;
    margin: 18px auto 0;
    color: #ffffff;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.btn-primary,
.btn-white {
    display: inline-block;
    padding: 14px 26px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: all 0.25s ease;
    margin-top: 0;
}

.btn-primary {
    background-color: var(--green-accent);
    border: 2px solid rgba(255, 255, 255, 0.9);
    color: var(--text-light);
    min-width: 180px;
    text-align: center;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.shop-card .btn-primary {
    width: 100%;
    min-width: 0;
    margin-top: 0;
    border: none;
    border-radius: 0 0 4px 4px;
    box-shadow: none;
}

.btn-primary:hover {
    background-color: var(--green-hover);
    border-color: var(--green-hover);
}

.btn-white {
    background: #ffffff;
    border: none;
    color: #000000;
    align-self: flex-start;
    padding: 16px 24px;
    border-radius: 14px;
    font-family: var(--font-button);
    font-size: 14px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
}

.btn-white:hover {
    background: #f0f0f0;
}

.shops-section {
    background: #000000;
    color: var(--text-light);
    padding: 24px 20px 80px;
    text-align: center;
    margin-top: -10px;
}

.shops-header {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    min-height: 150px;
    padding: 30px 20px;
    background-color: var(--green-accent);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.shops-title {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 48px;
    line-height: 1;
    letter-spacing: 0;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 18px;
    color: var(--text-light);
}

.shops-header p {
    color: rgb(255, 255, 255);
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
    margin: 0;
    text-align: center;
}

.shops-buttons {
    max-width: 1220px;
    margin: 48px auto 0;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.shops-buttons .btn-primary {
    flex: 1 1 0;
    max-width: 388px;
    padding-top: 18px;
    padding-bottom: 18px;
    font-size: 20px;
}

.shops-grid {
    max-width: 1220px;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.shop-card {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 24px 22px 26px;
    box-shadow: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 388px;
    margin: 0 auto;
}

.shop-card h3 {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 32px;
    line-height: 1;
    letter-spacing: 0;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0 0 8px;
    color: var(--text-light);
    text-align: center;
}

.shop-card h4 {
    margin: 22px 0 8px;
    color: #ffffff;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
}

.address {
    color: rgba(255,255,255,0.85);
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    margin: 0 0 4px;
    text-align: center;
    display: block;
    width: 100%;
    max-width: 344px;
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2e2e2e 100%);
    border-radius: 4px 4px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.map-placeholder:hover,
.map-placeholder:focus-visible {
    background: var(--green-accent);
    color: #ffffff;
}

.shop-card .hours {
    margin-top: 18px;
}

.phone {
    color: #ffffff;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 18px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.email {
    color: #ffffff;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 18px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hours {
    color: #ffffff;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hours p {
    margin: 0;
    color: #ffffff;
    font-size: 14px;
    display: block;
    width: 100%;
}

.hours p:first-child {
    color: #ffffff;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 6px;
}

.shops-updates {
    max-width: 1220px;
    margin: 60px auto 0;
}

.highlight-text {
    color: var(--text-light);
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    font-weight: 400;
    margin: 22px 0 0;
    background-color: var(--green-accent);
    border: 2px solid #ffffff;
    padding: 24px 32px;
    border-radius: 8px;
    display: block;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.highlight-text > p {
    margin: 0;
}

.contact-block {
    margin: 18px auto 0;
    max-width: 100%;
    text-align: center;
}

.contact-line {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    color: #ffffff;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
}

.contact-line a {
    color: #ffffff;
    overflow-wrap: anywhere;
    text-decoration: none;
}

.shop-photo {
    width: 100%;
    height: 260px;
    margin-top: 22px;
    border-radius: 4px;
    background: linear-gradient(135deg, #1f1f1f 0%, #2d2d2d 100%);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-weight: 600;
}

.shop-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.photo-placeholder {
    height: 260px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1f1f1f 0%, #2d2d2d 100%);
    border: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-weight: 600;
}

.banner-split {
    display: flex;
    flex-wrap: wrap;
    background: var(--bg-dark);
}

.banner-split.reverse {
    flex-direction: row-reverse;
    background: #000000;
}

.banner-image,
.banner-text {
    flex: 1 1 50%;
    min-width: 300px;
}

.banner-image {
    width: 100%;
    height: auto;
}

.banner-image img {
    width: 100%;
    height: 633px;
    min-height: 320px;
    object-fit: cover;
    display: block;
}

.banner-text {
    padding: 52px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #000000;
}

.banner-text h2 {
    margin-bottom: 18px;
    font-size: 32px;
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
}

.banner-text p {
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.02rem;
}

.btn-newsletter {
    color: var(--green-accent);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid var(--green-accent);
    padding-bottom: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-transform: uppercase;
}

.btn-newsletter:hover {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

.community-section {
    background: #0b0b0b;
    text-align: center;
    padding: 54px 20px 42px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.community-section h2 {
    font-size: 32px;
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
    margin-top: 32px;
}

.social-links a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-light);
    transition: none;
}

.social-text {
    color: var(--text-light);
    text-decoration: underline;
    font-size: 14px;
    font-family: var(--font-heading);
}

.social-icon-svg {
    color: var(--green-accent);
    margin-bottom: 12px;
    display: block;
}

.floating-share-bar {
    position: fixed;
    right: 17px;
    bottom: 18px;
    z-index: 50;
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.share-button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.96);
    color: var(--green-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.share-button svg {
    width: 20px;
    height: 20px;
    display: block;
}

.linkedin-button svg {
    width: 18px;
    height: 18px;
    display: block;
}

.a1-button {
    padding: 0;
    overflow: hidden;
}

.a1-logo {
    width: 22px;
    height: 22px;
    display: block;
    object-fit: contain;
    filter: none;
    transition: filter 0.2s ease, opacity 0.2s ease;
}

.share-button:hover {
    transform: translateY(-2px) scale(1.08);
    background: var(--green-accent);
    color: #ffffff;
}

.share-button:hover .a1-logo {
    filter: brightness(0) invert(1);
}

@media (min-width: 768px) {
    .floating-share-bar {
        right: 17px;
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
        flex-direction: column;
    }
}

.site-footer {
    background-color: var(--green-accent);
    padding: 44px 20px 48px;
    color: #ffffff;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-company {
    color: rgba(255, 255, 255, 0.95);
    margin-top: 14px;
}

.footer-company p {
    margin-bottom: 8px;
    font-size: 0.96rem;
    line-height: 1.5;
}

.footer-company a {
    color: #ffffff;
    text-decoration: none;
}

.footer-logo {
    width: 251px;
    height: 88px;
    object-fit: contain;
    display: block;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 30px 18px 24px;
    }

    .footer-brand {
        align-items: flex-start;
        margin-bottom: 6px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 420px;
    }

    .hero-content {
        width: min(92%, 700px);
    }

    .hero-content h1,
    .hero-content h2 {
        font-size: 2.2rem;
    }

    .banner-split,
    .banner-split.reverse {
        flex-direction: column;
    }

    .banner-text {
        padding: 32px 20px;
    }

    .shop-card {
        padding: 20px 18px;
    }

    .shops-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .shops-buttons .btn-primary {
        width: min(100%, 388px);
    }

    .contact-line {
        gap: 6px;
    }

}

.map-link,
.shop-discover {
    color: #ffffff;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.map-link:hover,
.map-link:focus-visible,
.map-link:focus-visible {
    color: #7fcf8f;
}

.shop-discover {
    margin-top: 28px;
    padding: 12px 22px;
    background-color: var(--green-accent);
    border: 2px solid var(--green-accent);
    border-radius: 4px;
    font-size: 15px;
    font-weight: 700;
}

.shop-discover:hover,
.shop-discover:focus-visible {
    background-color: #ffffff;
    border-color: #ffffff;
    color: var(--green-accent);
}