/* ============================================
   LIFESTYLE DAILY — Complete Theme CSS
   File: assets/css/lifestyle-theme.css
============================================ */

/* ====== CSS VARIABLES ====== */
:root {
    --cream: #f7f4ef;
    --white: #ffffff;
    --black: #0d0d0d;
    --dark: #1c1c1c;
    --gray: #6b6b6b;
    --light-gray: #e5e0d8;
    --accent: #c8a882;
    --accent-dark: #8b6f4e;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Source Serif 4', Georgia, serif;
    --font-ui: 'DM Sans', sans-serif;
}

/* ====== GLOBAL ====== */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    background-color: var(--cream);
    font-family: var(--font-body);
    color: var(--dark);
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

/* ====== TOP BAR ====== */
.ls-topbar {
    background: var(--black);
    padding: 9px 0;
    border-bottom: 1px solid #222;
}

.ls-topbar-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
}

.ls-topbar-tag {
    font-family: var(--font-ui);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--accent);
    color: var(--black);
    padding: 3px 10px;
}

.ls-topbar-text {
    font-family: var(--font-ui);
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.5px;
}

.ls-topbar-link {
    font-family: var(--font-ui);
    font-size: 11px;
    color: var(--accent);
    letter-spacing: 0.5px;
    transition: opacity 0.2s;
}

    .ls-topbar-link:hover {
        opacity: 0.7;
    }

/* ====== NAVBAR ====== */
.ls-navbar {
    background: var(--white);
    border-bottom: 1px solid var(--light-gray);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

.ls-navbar-brand img {
    height: 42px;
    width: auto;
}

.ls-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

    .ls-nav-links .nav-link {
        font-family: var(--font-ui);
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--dark);
        padding: 8px 16px;
        position: relative;
        transition: color 0.2s;
    }

        .ls-nav-links .nav-link::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 16px;
            right: 16px;
            height: 1px;
            background: var(--black);
            transform: scaleX(0);
            transition: transform 0.25s ease;
            transform-origin: left;
        }

        .ls-nav-links .nav-link:hover {
            color: var(--black);
        }

            .ls-nav-links .nav-link:hover::after {
                transform: scaleX(1);
            }

.ls-nav-cta {
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    background: var(--black);
    padding: 9px 20px;
    transition: background 0.2s;
}

    .ls-nav-cta:hover {
        background: var(--accent-dark);
        color: var(--white);
    }

.ls-toggler {
    border: 1px solid var(--light-gray);
    padding: 6px 10px;
    font-size: 20px;
    background: transparent;
    color: var(--dark);
    cursor: pointer;
}

/* ====== FOOTER ====== */
.ls-footer {
    background: #111;
    padding: 0;
    margin-top: 80px;
}

.ls-footer-brand {
    padding: 60px 0 50px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    text-align: center;
}

.ls-footer-brand-name {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

    .ls-footer-brand-name em {
        color: var(--accent);
        font-style: italic;
    }

.ls-footer-brand-tagline {
    font-family: var(--font-ui);
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.ls-footer-top {
    padding: 50px 0 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.ls-footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
}

.ls-footer-tagline {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    line-height: 1.7;
    margin: 0;
    padding: 0;
}

.ls-footer-nav {
    display: flex;
    gap: 60px;
    justify-content: flex-end;
}

.ls-footer-nav-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ls-footer-nav-title {
    font-family: var(--font-ui);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 6px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.ls-footer-nav-col a {
    font-family: var(--font-ui);
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    transition: color 0.2s, padding-left 0.2s;
    letter-spacing: 0.3px;
}

    .ls-footer-nav-col a:hover {
        color: var(--white);
        padding-left: 4px;
    }

.ls-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-family: var(--font-ui);
    font-size: 11px;
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.5px;
}

    .ls-footer-bottom a {
        color: var(--accent);
        transition: opacity 0.2s;
    }

        .ls-footer-bottom a:hover {
            opacity: 0.7;
        }

/* ====== BACK TO TOP ====== */
.ls-totop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    z-index: 999;
    transition: background 0.2s;
}

    .ls-totop:hover {
        background: var(--accent-dark);
        color: var(--white);
    }

/* ====== SHARED — Section Label ====== */
.ls-section-label {
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--black);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .ls-section-label a {
        font-size: 9px;
        color: var(--accent-dark);
        letter-spacing: 1.5px;
        transition: opacity 0.2s;
    }

        .ls-section-label a:hover {
            opacity: 0.7;
        }

/* ====== SHARED — Article Card ====== */
.ls-card {
    background: var(--white);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    height: 100%;
}

    .ls-card:hover {
        box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    }

.ls-card-img {
    overflow: hidden;
}

    .ls-card-img img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.ls-card:hover .ls-card-img img {
    transform: scale(1.04);
}

.ls-card-body {
    padding: 18px;
}

.ls-card-cat {
    font-family: var(--font-ui);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-dark);
    display: inline-block;
    margin-bottom: 8px;
}

.ls-card-title {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.4;
    display: block;
    margin-bottom: 10px;
    transition: color 0.2s;
}

    .ls-card-title:hover {
        color: var(--accent-dark);
    }

.ls-card-excerpt {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ls-card-meta {
    font-family: var(--font-ui);
    font-size: 10px;
    color: #aaa;
    margin-bottom: 14px;
}

.ls-card-btn {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dark);
    border: 1px solid var(--dark);
    padding: 7px 18px;
    transition: all 0.2s;
}

    .ls-card-btn:hover {
        background: var(--dark);
        color: var(--white);
    }

/* ====== SHARED — Horizontal Card (sidebar) ====== */
.ls-hcard {
    display: flex;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--light-gray);
    transition: opacity 0.2s;
}

    .ls-hcard:last-child {
        border-bottom: none;
    }

    .ls-hcard:hover {
        opacity: 0.7;
    }

    .ls-hcard img {
        width: 80px;
        height: 65px;
        object-fit: cover;
        flex-shrink: 0;
    }

.ls-hcard-info {
    flex: 1;
}

.ls-hcard-cat {
    font-family: var(--font-ui);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-dark);
    display: block;
    margin-bottom: 4px;
}

.ls-hcard-title {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.4;
    display: block;
    margin-bottom: 4px;
}

.ls-hcard-meta {
    font-family: var(--font-ui);
    font-size: 10px;
    color: #aaa;
}

/* ====== SHARED — Sidebar ====== */
.ls-sidebar {
    padding-left: 36px;
    border-left: 1px solid var(--light-gray);
}

.ls-sidebar-title {
    font-family: var(--font-ui);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--black);
    margin-bottom: 20px;
}

.ls-sidebar-cat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 500;
    color: var(--dark);
    transition: padding-left 0.2s, color 0.2s;
}

    .ls-sidebar-cat:hover {
        padding-left: 6px;
        color: var(--accent-dark);
    }

    .ls-sidebar-cat::after {
        content: '→';
        color: #bbb;
        font-size: 12px;
    }

/* ====== SHARED — Dark Banner ====== */
.ls-banner {
    background: var(--black);
    padding: 50px;
    text-align: center;
    margin: 50px 0;
}

    .ls-banner h3 {
        font-family: var(--font-display);
        font-size: 28px;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 10px;
        padding: 0;
    }

        .ls-banner h3 em {
            color: var(--accent);
            font-style: italic;
        }

    .ls-banner p {
        font-family: var(--font-ui);
        font-size: 13px;
        color: rgba(255,255,255,0.45);
        margin-bottom: 24px;
        padding: 0;
        line-height: 1.6;
    }

.ls-banner-btn {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--black);
    background: var(--accent);
    padding: 12px 30px;
    transition: background 0.2s;
}

    .ls-banner-btn:hover {
        background: var(--white);
        color: var(--black);
    }

/* ====== INDEX — Hero Slider ====== */
.ls-hero-slider {
    position: relative;
    background: var(--black);
    width: 100%;
    overflow: hidden;
}

.ls-hero-swiper {
    width: 100%;
    height: 580px;
}

.ls-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

    .ls-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        opacity: 0.6;
        display: block;
    }

.ls-slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 0;
    background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.2) 70%, transparent 100%);
}

.ls-hero-cat {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 4px 12px;
    margin-bottom: 16px;
}

.ls-hero-title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
    margin: 0 0 14px;
    padding: 0;
    max-width: 700px;
}

    .ls-hero-title a {
        color: var(--white);
        transition: color 0.2s;
    }

        .ls-hero-title a:hover {
            color: var(--accent);
        }

.ls-hero-meta {
    font-family: var(--font-ui);
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    display: block;
}

/* Swiper controls */
.ls-swiper-pagination {
    bottom: 24px !important;
}

    .ls-swiper-pagination .swiper-pagination-bullet {
        background: rgba(255,255,255,0.4);
        opacity: 1;
        width: 8px;
        height: 8px;
    }

    .ls-swiper-pagination .swiper-pagination-bullet-active {
        background: var(--accent);
        width: 24px;
        border-radius: 4px;
    }

.ls-swiper-next,
.ls-swiper-prev {
    color: var(--white) !important;
    background: rgba(0,0,0,0.3);
    width: 44px !important;
    height: 44px !important;
    border-radius: 0;
    transition: background 0.2s;
}

    .ls-swiper-next:hover,
    .ls-swiper-prev:hover {
        background: var(--accent-dark);
    }

    .ls-swiper-next::after,
    .ls-swiper-prev::after {
        font-size: 16px !important;
    }

/* ====== BLOG PAGE ====== */
.ls-blog-title {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark);
    margin-bottom: 16px;
    padding: 0;
}

.ls-blog-meta {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-ui);
    font-size: 11px;
    color: var(--gray);
    padding: 14px 0;
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
    margin-bottom: 30px;
}

.ls-blog-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 30px;
}

.ls-blog-content p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.9;
    color: #333;
    margin-bottom: 20px;
    padding: 0;
}

.ls-blog-content h2 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    border-left: 3px solid var(--accent);
    padding-left: 14px;
    margin: 36px 0 14px;
}

.ls-blog-content h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin: 28px 0 10px;
    padding: 0;
}

.ls-blog-content h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin: 20px 0 8px;
    padding: 0;
}

.ls-blog-content strong {
    font-weight: 700;
    color: var(--dark);
}

.ls-blog-content span {
    font-weight: normal;
    padding: 0;
}

.ls-blog-content li {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 6px;
    padding-left: 4px;
}

.ls-comment {
    border-top: 1px solid var(--light-gray);
    padding-top: 30px;
    margin-top: 40px;
}

/* ====== GENRE PAGE ====== */
.ls-genre-header {
    background: var(--black);
    padding: 60px 0 50px;
    text-align: center;
    margin-bottom: 0;
}

    .ls-genre-header h1 {
        font-family: var(--font-display);
        font-size: 40px;
        font-weight: 700;
        color: var(--white);
        margin: 0 0 10px;
        padding: 0;
    }

        .ls-genre-header h1 span {
            color: var(--accent);
            font-style: italic;
            padding: 0;
            font-weight: 700;
        }

    .ls-genre-header p {
        font-family: var(--font-ui);
        font-size: 13px;
        color: rgba(255,255,255,0.45);
        margin: 0;
        padding: 0;
        letter-spacing: 0.5px;
    }

/* ====== STATIC PAGES (About, Privacy, T&C, FAQs) ====== */
.ls-static-header {
    background: var(--black);
    padding: 60px 0;
    text-align: center;
    margin-bottom: 0;
}

    .ls-static-header h1 {
        font-family: var(--font-display);
        font-size: 40px;
        font-weight: 700;
        color: var(--white);
        margin: 0;
        padding: 0;
    }

        .ls-static-header h1 em {
            color: var(--accent);
            font-style: italic;
        }

.ls-static-body {
    max-width: 860px;
    margin: 60px auto;
    padding: 0 20px;
}

    .ls-static-body h2 {
        font-family: var(--font-display);
        font-size: 26px;
        font-weight: 700;
        color: var(--dark);
        margin: 0 0 20px;
        padding: 0;
    }

    .ls-static-body h4 {
        font-family: var(--font-display);
        font-size: 17px;
        font-weight: 600;
        color: var(--dark);
        margin: 32px 0 10px;
        padding: 0;
        border-left: 3px solid var(--accent);
        padding-left: 12px;
    }

    .ls-static-body p {
        font-family: var(--font-body);
        font-size: 15px;
        line-height: 1.9;
        color: #444;
        margin-bottom: 16px;
        padding: 0;
    }

    .ls-static-body ul {
        padding-left: 20px;
        margin-bottom: 20px;
    }

        .ls-static-body ul li {
            font-family: var(--font-body);
            font-size: 15px;
            line-height: 1.8;
            color: #444;
            margin-bottom: 8px;
        }

    .ls-static-body a {
        color: var(--accent-dark);
        text-decoration: underline;
    }

    .ls-static-body strong {
        font-weight: 700;
        color: var(--dark);
    }

/* ====== CONTACT PAGE ====== */
.ls-contact-box {
    max-width: 600px;
    margin: 60px auto;
    text-align: center;
    padding: 0 20px;
}

    .ls-contact-box h2 {
        font-family: var(--font-display);
        font-size: 32px;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 10px;
        padding: 0;
    }

        .ls-contact-box h2 em {
            color: var(--accent);
            font-style: italic;
        }

    .ls-contact-box p {
        font-family: var(--font-ui);
        font-size: 13px;
        color: var(--gray);
        margin-bottom: 30px;
        padding: 0;
        line-height: 1.6;
    }

.ls-contact-card {
    background: var(--white);
    padding: 30px 40px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

    .ls-contact-card img {
        width: 48px;
        height: 48px;
        object-fit: contain;
    }

    .ls-contact-card span {
        font-family: var(--font-display);
        font-size: 18px;
        font-weight: 600;
        color: var(--dark);
        padding: 0;
    }

.ls-map {
    margin-top: 60px;
}

    .ls-map iframe {
        width: 100%;
        height: 450px;
        border: 0;
        display: block;
    }

/* ====== RESPONSIVE ====== */
@media (max-width: 991px) {
    .ls-sidebar {
        border-left: none;
        border-top: 1px solid var(--light-gray);
        padding-left: 0;
        padding-top: 40px;
        margin-top: 40px;
    }

    .ls-hero-main {
        height: 360px;
    }

    .ls-hero-stack {
        height: auto;
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.07);
    }

    .ls-hero-stack-item {
        min-height: 100px;
    }

    .ls-footer-nav {
        justify-content: flex-start;
        margin-top: 30px;
        gap: 30px;
    }

    .ls-nav-links .nav-link::after {
        display: none;
    }

    .ls-banner {
        padding: 36px 20px;
    }

    .ls-genre-header h1 {
        font-size: 28px;
    }

    .ls-static-header h1 {
        font-size: 28px;
    }

    .ls-blog-title {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .ls-topbar-text {
        display: none;
    }

    .ls-footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .ls-hero-main {
        height: 260px;
    }

    .ls-hero-overlay {
        padding: 20px;
    }

    .ls-hero-title {
        font-size: 18px;
    }

    .ls-blog-title {
        font-size: 22px;
    }

    .ls-static-body {
        margin: 40px auto;
    }

    .ls-totop {
        bottom: 16px;
        right: 16px;
    }
}
