/* ============================================
   Verdant Curation — Clone Demo Styles
   Inspired by nimorix.com structure
   Color: Verdant Green + Warm Earth
   ============================================ */

/* ---------- RESET ---------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 13px;
    line-height: 21px;
    color: #2d2d2d;
    background: #f7f5f0;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

ul { list-style: none; }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

/* ---------- HEADER ---------- */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e8e5de;
    position: relative;
    z-index: 100;
}

/* Floating header variant - overlays the hero carousel */
.site-header-float {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 100;
}

.site-header-float .nav-list li a {
    color: rgba(255, 255, 255, 0.9);
}

.site-header-float .nav-list li a:hover,
.site-header-float .nav-list li a.active {
    color: #fff;
}

.site-header-float .nav-search-btn {
    color: rgba(255, 255, 255, 0.8);
}

.site-header-float .nav-search-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.site-header-float .hamburger span {
    background: #fff;
}

.site-header-float .main-nav {
    margin-left: auto;
}

/* Non-float header (article pages) */
.site-header:not(.site-header-float) {
    background: #ffffff;
    border-bottom: 2px solid #e8e5de;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 110px;
    padding: 0 15px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 10px;
}

.nav-search-btn {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 3px;
    transition: background 0.2s;
    line-height: 1;
}

.nav-search-btn:hover {
    background: #f0ede8;
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 0;
}

.nav-list li a {
    display: block;
    padding: 0 14px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #2d2d2d;
    line-height: 110px;
    transition: color 0.2s;
}

.nav-list li a:hover,
.nav-list li a.active {
    color: #3a7d44;
}

.nav-blog-btn {
    display: inline-block;
    margin-left: 15px;
    padding: 8px 20px;
    background: #d9534f;
    color: #fff !important;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
    transition: background 0.2s;
    line-height: normal !important;
}

.nav-blog-btn:hover {
    background: #c9302c;
}

.nav-blog-btn.active {
    background: #c9302c;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #2d2d2d;
    border-radius: 2px;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* ---------- HERO + ABOUT — Unified Carousel Section ---------- */
.hero-about-section {
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.about-carousel {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: bgFade 40s infinite;
}

.carousel-slide:nth-child(1) { animation-delay: 0s; }
.carousel-slide:nth-child(2) { animation-delay: 8s; }
.carousel-slide:nth-child(3) { animation-delay: 16s; }
.carousel-slide:nth-child(4) { animation-delay: 24s; }
.carousel-slide:nth-child(5) { animation-delay: 32s; }

@keyframes bgFade {
    0%   { opacity: 0; }
    3%   { opacity: 1; }
    17%  { opacity: 1; }
    20%  { opacity: 0; }
    100% { opacity: 0; }
}

.hero-about-overlay {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(2px);
    width: 100%;
    height: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-about-overlay .container {
    width: 100%;
    padding-top: 130px;
    padding-bottom: 50px;
}

/* Tagline within unified section */
.hero-tagline {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 5px;
}

.hero-tagline.light {
    color: #fff;
}

.hero-deco {
    width: 60px;
    height: 3px;
    background: #fff;
    margin: 20px auto 40px;
    border-radius: 2px;
}

.about-inner {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding: 60px 0;
}

.about-avatar {
    flex-shrink: 0;
}

.about-logo-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 15px;
}

.about-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.about-content {
    flex: 1;
}

.about-content p.light,
.about-name.light {
    color: #fff;
}

.section-label.light {
    color: rgba(255, 255, 255, 0.85);
    border-bottom-color: rgba(255, 255, 255, 0.5);
}

/* General section-label and about-name (non-light) */
.section-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #3a7d44;
    margin-bottom: 12px;
    border-bottom: 2px solid #3a7d44;
    display: inline-block;
    padding-bottom: 4px;
}

.about-name {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
    color: #2d2d2d;
}

.about-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 12px;
    max-width: 600px;
}

.about-links {
    display: flex;
    gap: 10px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.btn-instagram {
    background: #d4936c;
    color: #fff;
}
.btn-instagram:hover { background: #c0805a; }

.btn-portfolio {
    background: #2d2d2d;
    color: #fff;
}
.btn-portfolio:hover { background: #1a1a1a; }

.btn-pinterest {
    background: #e60023;
    color: #fff;
}
.btn-pinterest:hover { background: #cc001f; }

.btn-story {
    display: inline-block;
    margin-top: 18px;
    background: #2d2d2d;
    color: #fff;
    font-size: 13px;
    padding: 12px 28px;
}
.btn-story:hover {
    background: #1a1a1a;
}

/* ---------- BLOG SECTION ---------- */
.blog-section {
    padding: 50px 15px;
    text-align: center;
}

.blog-section .section-label {
    margin-bottom: 30px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 35px;
}

.blog-card {
    text-align: left;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    transition: box-shadow 0.2s;
}

.blog-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.card-category {
    display: inline-block;
    margin: 12px 0 0 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #d9534f;
}

.card-img {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-img-placeholder {
    font-size: 48px;
    opacity: 0.5;
}

.card-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    padding: 12px;
    color: #2d2d2d;
}

.card-title:hover {
    color: #3a7d44;
}

.btn-read-more {
    background: #2d2d2d;
    color: #fff;
    padding: 12px 40px;
    font-size: 13px;
}
.btn-read-more:hover { background: #1a1a1a; }

/* ---------- CATEGORIES SECTION ---------- */
.categories-section {
    padding: 50px 15px;
}

.categories-intro {
    font-size: 20px;
    font-weight: 300;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.5;
}

.cat-block {
    margin-bottom: 40px;
}

.cat-block .section-label {
    margin-bottom: 20px;
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.cat-item {
    padding: 40px 20px;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s;
}

.cat-item:hover {
    transform: translateY(-3px);
}

/* ---------- SUBSCRIBE ---------- */
.subscribe-section {
    background: linear-gradient(135deg, #2d5e3b, #3a7d44);
    padding: 60px 0;
}

.subscribe-inner {
    text-align: center;
    max-width: 550px;
    margin: 0 auto;
}

.subscribe-inner h2 {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.4;
}

.subscribe-form {
    display: flex;
    gap: 10px;
    max-width: 450px;
    margin: 0 auto;
}

.subscribe-form input {
    flex: 1;
    padding: 14px 18px;
    font-size: 14px;
    border: none;
    border-radius: 3px;
    font-family: inherit;
    outline: none;
}

.subscribe-form button {
    padding: 14px 30px;
    background: #d4936c;
    color: #fff;
    border: none;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s;
}

.subscribe-form button:hover {
    background: #c0805a;
}

.subscribe-note {
    margin-top: 15px;
    font-size: 12px;
    color: rgba(255,255,255,0.75);
}

.subscribe-note a {
    color: #fff;
    text-decoration: underline;
}

/* ---------- FOOTER ---------- */
.site-footer {
    background: #2d2d2d;
    color: #aaa;
    padding: 30px 0;
    font-size: 13px;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #ccc;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    transition: background 0.2s;
}

.footer-social a:hover {
    background: #3a7d44;
}

/* ============================================
   ARTICLE PAGE
   ============================================ */
.article-page {
    background: #fff;
}

.article-page .site-header {
    border-bottom: 2px solid #e8e5de;
}

.site-content {
    padding: 30px 15px;
}

.content-row {
    display: flex;
    gap: 40px;
}

.content-main {
    flex: 0 0 780px;
    max-width: 780px;
}

/* Breadcrumb */
.breadcrumb {
    font-size: 12px;
    color: #888;
    margin-bottom: 15px;
}

.breadcrumb a {
    color: #888;
}

.breadcrumb a:hover {
    color: #3a7d44;
}

.breadcrumb em {
    font-style: normal;
    margin: 0 5px;
    color: #ccc;
}

.breadcrumb span {
    color: #555;
}

/* Category tag */
.category-tag {
    display: inline-block;
    background: #d9534f;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: 3px;
    margin-bottom: 15px;
    transition: background 0.2s;
}

.category-tag:hover {
    background: #c9302c;
}

/* Article title */
.article-title {
    font-size: 41px;
    font-weight: 700;
    line-height: 1.4;
    color: #2d2d2d;
    margin-bottom: 15px;
}

/* Meta */
.article-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #888;
}

.meta-avatar {
    flex-shrink: 0;
}

.meta-avatar-inner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    overflow: hidden;
    padding: 3px;
    border: 1px solid #e0ddd5;
}

.meta-avatar-img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: contain;
    display: block;
    border: 1px solid #e0ddd5;
    padding: 3px;
    background: #fff;
}

.meta-author {
    font-weight: 500;
    color: #3a7d44;
}

.meta-dot {
    color: #ccc;
}

.meta-date,
.meta-comments {
    color: #999;
}

/* Share buttons */
.share-buttons {
    display: flex;
    gap: 8px;
    margin-bottom: 30px;
}

.share-btn {
    display: inline-block;
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    border-radius: 3px;
    transition: opacity 0.2s;
}

.share-btn:hover {
    opacity: 0.85;
}

.share-pinterest { background: #e60023; }
.share-facebook { background: #1877f2; }
.share-flipboard { background: #e12828; }

/* Entry content */
.entry-content {
    font-size: 18px;
    line-height: 1.6;
    color: #2d2d2d;
}

.entry-intro {
    font-size: 19px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

/* Video embed */
.video-embed {
    margin-bottom: 30px;
}

.video-placeholder {
    background: #1a1a1a;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.2s;
}

.video-placeholder:hover {
    background: #333;
}

/* H2 sections */
.entry-content h2 {
    font-size: 34px;
    font-weight: 600;
    line-height: 1.4;
    color: #2d2d2d;
    margin: 40px 0 17px;
}

.section-image {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: flex-end;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.section-img-label {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    background: rgba(0,0,0,0.3);
    padding: 6px 14px;
    border-radius: 3px;
}

.entry-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 25px;
}

.entry-conclusion {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e8e5de;
}

/* ---------- SIDEBAR ---------- */
.content-sidebar {
    flex: 0 0 345px;
    max-width: 345px;
}

.sidebar-widget {
    margin-bottom: 35px;
}

.widget-title {
    font-size: 16px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #3a7d44;
}

.widget-about {
    text-align: center;
    padding: 20px;
    background: #f7f5f0;
    border-radius: 4px;
}

.widget-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    overflow: hidden;
    padding: 8px;
    border: 1px solid #e0ddd5;
}

.widget-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* SKU below article title */
.article-sku {
    font-size: 13px;
    font-weight: 500;
    color: #999;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
}

/* Pin It overlay — section images inside entry-content */
.entry-content .section-image {
    position: relative;
    overflow: hidden;
}

.pin-overlay {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #e60023;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 5;
    text-decoration: none;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.pin-overlay:hover {
    background: #cc001f;
}

.section-image:hover .pin-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* Card images on homepage — Pin It overlay */
.blog-card {
    position: relative;
}

.blog-card .card-img {
    position: relative;
}

.card-pin-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e60023;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 18px;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 5;
    text-decoration: none;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    cursor: pointer;
}

.card-pin-overlay:hover {
    background: #cc001f;
}

.blog-card:hover .card-pin-overlay {
    opacity: 1;
    transform: translateY(0);
}

.card-sku-wrapper {
    position: absolute;
    bottom: 4px;
    right: 4px;
    z-index: 5;
}
.card-sku {
    display: inline-block;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 12px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 0.5px;
    padding: 2px 6px;
    border-radius: 2px;
    line-height: 1.3;
}

.widget-about p {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
}

.widget-posts li,
.widget-cats li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.widget-posts a,
.widget-cats a {
    color: #555;
    transition: color 0.2s;
}

.widget-posts a:hover,
.widget-cats a:hover {
    color: #3a7d44;
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 3px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    transition: opacity 0.2s;
}

.social-btn:hover {
    opacity: 0.85;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Desktop 992px+ */
@media (min-width: 992px) {
    .main-nav {
        display: flex !important;
    }
}

/* Tablet: 768–991px */
@media (max-width: 991px) {
    .content-row {
        flex-direction: column;
    }
    .content-main,
    .content-sidebar {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .article-title {
        font-size: 32px;
    }
    .entry-content h2 {
        font-size: 28px;
    }
    .about-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 40px 15px;
    }
    .about-content p.light {
        max-width: 100%;
    }
    .about-content p {
        max-width: 100%;
    }
    .about-links {
        justify-content: center;
    }
    .hero-about-overlay {
        min-height: 480px;
    }
    .hero-about-section {
        min-height: 480px;
    }
}

/* Mobile: ≤767px — hamburger appears */
@media (max-width: 767px) {
    .hamburger {
        display: flex;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 110px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.3);
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .site-header-float .nav-list li a {
        color: rgba(255, 255, 255, 0.85);
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .main-nav.open {
        display: flex;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
    }

    .nav-list li a {
        line-height: 3;
        border-bottom: 1px solid #f0ede8;
    }

    .nav-blog-btn {
        margin: 15px 0 0;
        text-align: center;
        width: 100%;
    }

    .header-inner {
        position: relative;
    }

    .hero-tagline {
        font-size: 26px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .cat-grid {
        grid-template-columns: 1fr;
    }

    .article-title {
        font-size: 26px;
    }

    .entry-content h2 {
        font-size: 22px;
    }

    .entry-content p,
    .entry-intro {
        font-size: 16px;
    }

    .section-image {
        height: 250px;
    }

    .subscribe-form {
        flex-direction: column;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .share-buttons {
        flex-wrap: wrap;
    }
}

/* Small mobile: ≤479px */
@media (max-width: 479px) {
    .hero-section {
        padding: 50px 0 40px;
    }
    .hero-tagline {
        font-size: 22px;
        letter-spacing: 1px;
    }
    .article-title {
        font-size: 22px;
    }
    .entry-content h2 {
        font-size: 20px;
    }
    .card-title {
        font-size: 14px;
    }
    .hero-about-overlay {
        min-height: 520px;
    }
    .hero-about-section {
        min-height: 520px;
    }
    .about-logo-circle {
        width: 100px;
        height: 100px;
    }
    .about-name.light {
        font-size: 22px;
    }
}
