:root {
    --bg-color: #0a0a0a;
    --surface-color: #161616;
    --primary-accent: #ff6b00;
    --text-light: #ffffff;
    --text-muted: #a0a0a0;
    --border-color: #262626;
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Inter', sans-serif;
}

.site-dark-theme {
    background-color: var(--bg-color);
    color: var(--text-light);
    font-family: var(--body-font);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.text-muted {
    color: var(--text-muted) !important;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.site-dark-theme img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-dark-theme a {
    color: inherit;
    text-decoration: none;
    transition: color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-dark-theme .btn-primary {
    background-color: var(--primary-accent);
    border: none;
}

/* ===== header ===== */
.zenv-header {
    background-color: #161616;
    border-bottom: 1px solid #262626;
    padding-top: 1rem;
    padding-bottom: 1rem;
    z-index: 1050;
}

.zenv-header .navbar-brand {
    padding: 0;
    margin: 0;
}

.zenv-header .navbar-brand img {
    max-width: 45px;
    height: auto;
    object-fit: contain;
}

.zenv-header .brand-name {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.zenv-header .nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #a0a0a0;
    padding: 0.5rem 1.25rem !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
}

.zenv-header .nav-link:hover,
.zenv-header .nav-link:focus {
    color: #ff6b00;
}

.zenv-header .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.25rem;
    right: 1.25rem;
    height: 2px;
    background-color: #ff6b00;
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: right;
}

.zenv-header .nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.zenv-header .btn-cta-header {
    background-color: #ff6b00;
    color: #121212;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    padding: 0.65rem 1.75rem;
    border-radius: 0;
    border: none;
    transition: all 0.4s ease;
}

.zenv-header .btn-cta-header:hover {
    background-color: #ffffff;
    color: #121212;
    transform: translateY(-2px);
}

.zenv-header .navbar-toggler {
    border: none;
    padding: 0.5rem;
    background: transparent;
}

.zenv-header .navbar-toggler:focus {
    box-shadow: none;
}

.zenv-header .navbar-toggler-bar-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #ff6b00;
    position: relative;
    transition: background-color 0.3s ease;
}

.zenv-header .navbar-toggler-bar-icon::before,
.zenv-header .navbar-toggler-bar-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #ff6b00;
    left: 0;
    transition: transform 0.3s ease;
}

.zenv-header .navbar-toggler-bar-icon::before {
    top: -8px;
}

.zenv-header .navbar-toggler-bar-icon::after {
    bottom: -8px;
}

@media (max-width: 991.98px) {
    .zenv-header .navbar-collapse {
        background-color: #161616;
        padding: 1.5rem 0;
        border-top: 1px solid #262626;
        margin-top: 1rem;
    }

    .zenv-header .nav-link {
        padding: 0.75rem 0 !important;
        font-size: 1.1rem;
    }

    .zenv-header .nav-link::after {
        left: 0;
        right: auto;
        width: 30px;
    }

    .zenv-header .btn-cta-header {
        width: 100%;
        margin-top: 1rem;
    }
}

/* ===== hero ===== */
.hero-block-zenv {
    min-height: 80vh;
    background-color: #0a0a0a;
    color: #ffffff;
    padding: 100px 0;
}

.hero-block-zenv .hero-bg-wrapper {
    z-index: 1;
}

.hero-block-zenv .hero-bg-image {
    object-fit: cover;
    background-position: center;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-block-zenv:hover .hero-bg-image {
    transform: scale(1.05);
}

.hero-block-zenv .hero-overlay {
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.4) 50%, rgba(10, 10, 10, 0.2) 100%);
    z-index: 2;
}

.hero-block-zenv .container {
    z-index: 3;
}

.hero-block-zenv .hero-tag {
    background-color: #ff6b00;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
}

.hero-block-zenv .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-block-zenv .hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
    color: #e0e0e0;
    max-width: 600px;
}

.hero-block-zenv .hero-btn {
    background-color: #ff6b00;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 0;
    border: none;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.hero-block-zenv .hero-btn:hover {
    background-color: #e66000;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.2);
}

.hero-block-zenv .hero-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-block-zenv .hero-content.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 767px) {
    .hero-block-zenv {
        min-height: 600px;
        padding: 60px 0;
        text-align: center;
    }

    .hero-block-zenv .hero-overlay {
        background: rgba(10, 10, 10, 0.7);
    }

    .hero-block-zenv .hero-description {
        margin-left: auto;
        margin-right: auto;
        font-size: 1rem;
    }

    .hero-block-zenv .hero-title {
        font-size: 1.75rem;
    }

    .hero-block-zenv .hero-actions {
        display: flex;
        justify-content: center;
    }
}

/* ===== latest-news-grid ===== */
.latest-news-grid {
    background-color: #0a0a0a;
    color: #ffffff;
    position: relative;
}

.latest-news-grid .js-news-card {
    background-color: #121212;
    padding: 0;
    transition: transform 0.4s ease;
}

.latest-news-grid .news-card-img-container {
    position: relative;
    background-color: #1a1a1a;
}

.latest-news-grid .js-news-card:hover .img-fluid {
    transform: scale(1.08);
}

.latest-news-grid .js-news-btn {
    border: none;
    box-shadow: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.latest-news-grid .js-news-btn:hover {
    background-color: #e66000 !important;
    transform: translateY(-2px);
}

.latest-news-grid .js-view-all-btn:hover {
    background-color: #ffffff;
    color: #0a0a0a !important;
}

.latest-news-grid .badge {
    background-color: rgba(0, 0, 0, 0.8) !important;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 107, 0, 0.3);
}

@media (max-width: 767.98px) {
    .latest-news-grid .display-5 {
        font-size: 1.75rem;
    }

    .latest-news-grid .h4 {
        font-size: 1.25rem;
    }
}

/* ===== featured-travel ===== */
.featured-travel-section {
    background-color: #0a0a0a;
    padding: 80px 0;
    color: #ffffff;
    overflow: hidden;
}

.featured-travel-section .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: #ffffff;
    margin: 0;
}

.featured-travel-section .section-subtitle {
    font-family: 'Inter', sans-serif;
    color: #a0a0a0;
    font-size: 1.1rem;
    max-width: 600px;
    line-height: 1.6;
}

.featured-travel-section .category-tag-top {
    color: #ff6b00;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

.featured-travel-section .travel-card {
    position: relative;
    background-color: #121212;
    border-radius: 4px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #262626;
}

.featured-travel-section .travel-card:hover {
    transform: translateY(-8px);
    border-color: #ff6b00;
}

.featured-travel-section .travel-card__img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.featured-travel-section .travel-card--horizontal .travel-card__img-wrapper {
    aspect-ratio: 4/3;
    height: 100%;
}

.featured-travel-section .travel-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-travel-section .travel-card:hover .travel-card__img {
    transform: scale(1.08);
}

.featured-travel-section .travel-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 0.8) 100%);
    opacity: 0.6;
}

.featured-travel-section .travel-card__badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #ff6b00;
    color: #ffffff;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 2px;
    z-index: 2;
}

.featured-travel-section .travel-card__content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    height: auto;
}

.featured-travel-section .travel-card--horizontal .travel-card__content {
    padding: 20px;
}

.featured-travel-section .travel-card__meta {
    font-size: 0.8rem;
    color: #a0a0a0;
    display: flex;
    gap: 15px;
}

.featured-travel-section .travel-card__title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.featured-travel-section .travel-card__title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-travel-section .travel-card__title a:hover {
    color: #ff6b00;
}

.featured-travel-section .travel-card__title.small {
    font-size: 1.25rem;
}

.featured-travel-section .travel-card__excerpt {
    font-size: 0.95rem;
    color: #a0a0a0;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-travel-section .travel-card__btn {
    color: #ff6b00;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    margin-top: auto;
    transition: color 0.3s ease;
}

.featured-travel-section .travel-card:hover .travel-card__btn {
    color: #ffffff;
}

@media (max-width: 768px) {
    .featured-travel-section {
        padding: 60px 0;
    }

    .featured-travel-section .section-title {
        font-size: 1.75rem;
    }

    .featured-travel-section .travel-card--horizontal .travel-card__img-wrapper {
        aspect-ratio: 16/9;
    }
}

/* ===== culture-highlights ===== */
.culture-highlights {
    background-color: #0a0a0a;
    overflow: hidden;
}

.culture-highlights .section-heading {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    position: relative;
}

.culture-highlights .text-orange {
    color: #ff6b00;
}

.culture-highlights .bg-orange {
    background-color: #ff6b00;
}

.culture-highlights .max-w-600 {
    max-width: 600px;
}

.culture-highlights .culture-accent-line {
    display: block;
    width: 40px;
    height: 2px;
    background-color: #ff6b00;
}

.culture-highlights .culture-card-v1 {
    background-color: transparent;
    transition: transform 0.4s ease;
}

.culture-highlights .card-img-wrapper {
    aspect-ratio: 4 / 3;
    background-color: #161616;
}

.culture-highlights .card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.culture-highlights .card:hover .card-img-top {
    transform: scale(1.08);
}

.culture-highlights .card-title {
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
    min-height: 3.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #ffffff !important;
}

.culture-highlights .text-secondary {
    color: #a0a0a0 !important;
}

.culture-highlights .btn-outline-orange {
    border: 1px solid #ff6b00;
    color: #ff6b00;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.culture-highlights .btn-outline-orange:hover {
    background-color: #ff6b00;
    color: #121212;
    border-color: #ff6b00;
}

.culture-highlights .js-culture-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.culture-highlights .js-culture-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .culture-highlights .section-heading {
        font-size: 1.75rem;
    }

    .culture-highlights .card-title {
        min-height: auto;
        font-size: 1.15rem;
    }
}

/* ===== lifestyle-trends ===== */
.lifestyle-trends-block {
    background-color: #0a0a0a;
    color: #ffffff;
}

.lifestyle-trends-block__category {
    color: #ff6b00;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

.lifestyle-trends-block__main-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
}

.lifestyle-trends-block__subtitle {
    font-family: 'Inter', sans-serif;
    color: #a0a0a0;
    max-width: 600px;
    line-height: 1.6;
}

.lifestyle-trends-block__card {
    background: #161616;
    border: 1px solid #262626;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s ease;
}

.lifestyle-trends-block__card:hover {
    transform: translateY(-8px);
    border-color: #ff6b00;
}

.lifestyle-trends-block__img-wrapper {
    overflow: hidden;
    position: relative;
    padding-top: 60%;
}

.lifestyle-trends-block__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.lifestyle-trends-block__card:hover .lifestyle-trends-block__img {
    transform: scale(1.1);
}

.lifestyle-trends-block__content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.lifestyle-trends-block__tag {
    background-color: #ff6b00;
    color: #121212;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 2px 8px;
    width: fit-content;
    margin-bottom: 1rem;
}

.lifestyle-trends-block__card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.lifestyle-trends-block__link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.lifestyle-trends-block__link:hover {
    color: #ff6b00;
}

.lifestyle-trends-block__meta {
    font-size: 0.8rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
}

.lifestyle-trends-block__btn {
    color: #ff6b00;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.lifestyle-trends-block__btn:hover {
    color: #ffffff;
    gap: 0.75rem;
}

@media (max-width: 768px) {
    .lifestyle-trends-block__main-title {
        font-size: 1.8rem;
    }

    .lifestyle-trends-block__content {
        padding: 1.25rem;
    }
}

/* ===== footer ===== */
.footer-block {
    background-color: #0a0a0a;
    color: #ffffff;
    border-top: 1px solid #262626;
    font-family: 'Inter', sans-serif;
}

.footer-block .footer-logo {
    max-width: 50px;
    height: auto;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-block .footer-logo:hover {
    opacity: 0.8;
}

.footer-block .footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #a0a0a0;
    max-width: 320px;
}

.footer-block .footer-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ff6b00;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-block .footer-links li {
    margin-bottom: 0.75rem;
}

.footer-block .footer-links a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.6s cubic-bezier(0.4, 0, 0.2, 1), padding-left 0.6s ease;
    display: inline-block;
}

.footer-block .footer-links a:hover {
    color: #ff6b00;
    padding-left: 5px;
}

.footer-block .contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #4a4a4a;
    letter-spacing: 0.1em;
    margin-bottom: 2px;
}

.footer-block .contact-value {
    font-size: 0.95rem;
    color: #a0a0a0;
}

.footer-block .contact-link {
    font-size: 0.95rem;
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-block .contact-link:hover {
    color: #ff6b00;
    border-bottom-color: #ff6b00;
}

.footer-block .footer-bottom {
    border-top: 1px solid #262626;
}

.footer-block .copyright-text {
    font-size: 0.85rem;
    color: #4a4a4a;
}

@media (max-width: 767.98px) {
    .footer-block .footer-heading {
        font-size: 1.1rem;
        margin-top: 1rem;
    }

    .footer-block .footer-description {
        max-width: 100%;
    }

    .footer-block .footer-links a {
        font-size: 0.85rem;
    }
}

.category-header-zenv {
    background-color: #0a0a0a;
    color: #ffffff;
}

.category-header-zenv .section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 2.5rem;
    color: #ffffff;
    line-height: 1.2;
}

.category-header-zenv .section-divider {
    width: 60px;
    height: 4px;
    background-color: #ff6b00;
}

.category-header-zenv .section-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #a0a0a0;
}

.lifestyle-grid-zenv {
    background-color: #0a0a0a;
}

.lifestyle-grid-zenv .lifestyle-card {
    background-color: #121212;
    border: 1px solid #262626;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.6s ease;
    overflow: hidden;
}

.lifestyle-grid-zenv .lifestyle-card:hover {
    transform: translateY(-10px);
    border-color: #ff6b00;
}

.lifestyle-grid-zenv .card-img-wrapper {
    height: 240px;
}

.lifestyle-grid-zenv .card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.lifestyle-grid-zenv .lifestyle-card:hover .card-img-top {
    transform: scale(1.1);
}

.lifestyle-grid-zenv .card-category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #ff6b00;
    color: #ffffff;
    padding: 5px 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.lifestyle-grid-zenv .card-body {
    padding: 2rem;
}

.lifestyle-grid-zenv .card-meta {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #4a4a4a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lifestyle-grid-zenv .card-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.3;
}

.lifestyle-grid-zenv .card-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.lifestyle-grid-zenv .card-title a:hover {
    color: #ff6b00;
}

.lifestyle-grid-zenv .card-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #a0a0a0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lifestyle-grid-zenv .btn-read-more {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: #ff6b00;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    transition: gap 0.3s ease;
}

.lifestyle-grid-zenv .lifestyle-card:hover .btn-read-more {
    gap: 8px;
}

@media (max-width: 767px) {
    .category-header-zenv .section-title {
        font-size: 1.75rem;
    }

    .lifestyle-grid-zenv .card-body {
        padding: 1.5rem;
    }
}


/* ===== PAGE: privacy ===== */
.policy-content-wrapper { padding: 60px 20px; background-color: #0a0a0a; color: #ffffff; font-family: 'Inter', sans-serif; line-height: 1.8; } .zenv-privacy-section { max-width: 900px; margin: 0 auto; } .zenv-privacy-section h2 { font-family: 'Playfair Display', serif; color: #ff6b00; font-size: 2rem; margin-top: 2.5rem; margin-bottom: 1.25rem; border-bottom: 1px solid #262626; padding-bottom: 0.5rem; } .zenv-privacy-section p { color: #a0a0a0; margin-bottom: 1.5rem; font-size: 1rem; } .zenv-privacy-section ul { margin-bottom: 1.5rem; padding-left: 1.25rem; list-style-type: none; } .zenv-privacy-section li { position: relative; color: #a0a0a0; margin-bottom: 0.75rem; padding-left: 1.5rem; } .zenv-privacy-section li::before { content: '\ea6e'; font-family: 'remixicon'; position: absolute; left: 0; color: #ff6b00; font-size: 1rem; } @media (max-width: 768px) { .policy-content-wrapper { padding: 40px 15px; } .zenv-privacy-section h2 { font-size: 16px; margin-top: 1.5rem; } .zenv-privacy-section p, .zenv-privacy-section li { font-size: 14px; hyphens: auto; } }

/* ===== PAGE: terms ===== */
.policy-content-wrapper { background-color: #0a0a0a; padding: 60px 0; min-height: 100vh; font-family: 'Inter', sans-serif; } .policy-content-wrapper .terms-container { max-width: 800px; margin: 0 auto; padding: 0 20px; color: #a0a0a0; } .policy-content-wrapper .terms-main-title { font-family: 'Playfair Display', serif; color: #ff6b00; font-size: 2.5rem; font-weight: 700; margin-bottom: 40px; text-align: left; } .policy-content-wrapper .terms-section-title { font-family: 'Playfair Display', serif; color: #ffffff; font-size: 1.5rem; margin-top: 50px; margin-bottom: 20px; font-weight: 600; border-left: 3px solid #ff6b00; padding-left: 15px; } .policy-content-wrapper .terms-intro { font-size: 1.1rem; line-height: 1.8; color: #ffffff; margin-bottom: 30px; } .policy-content-wrapper p { font-size: 1rem; line-height: 1.7; margin-bottom: 20px; } .policy-content-wrapper .terms-list { list-style: none; padding: 0; margin-bottom: 25px; } .policy-content-wrapper .terms-list li { position: relative; padding-left: 30px; margin-bottom: 12px; line-height: 1.6; } .policy-content-wrapper .terms-list li::before { content: '\ea6e'; font-family: 'remixicon'; position: absolute; left: 0; top: 2px; color: #ff6b00; font-size: 1.2rem; } @media (max-width: 768px) { .policy-content-wrapper { padding: 40px 0; } .policy-content-wrapper .terms-main-title { font-size: 1.125rem; margin-bottom: 25px; } .policy-content-wrapper .terms-section-title { font-size: 1rem; margin-top: 35px; } .policy-content-wrapper p, .policy-content-wrapper .terms-list li { font-size: 0.875rem; } .policy-content-wrapper .terms-intro { font-size: 0.95rem; } }

/* ===== PAGE: disclaimer ===== */
.policy-content-wrapper { background-color: #0a0a0a; color: #ffffff; font-family: 'Inter', sans-serif; line-height: 1.6; padding: 60px 20px; min-height: 100vh; } .policy-container { max-width: 900px; margin: 0 auto; background: #161616; padding: 40px; border-radius: 4px; border: 1px solid #262626; box-shadow: 0 10px 30px rgba(0,0,0,0.5); } .policy-container h1 { font-family: 'Playfair Display', serif; color: #ff6b00; font-size: 2.5rem; margin-bottom: 10px; border-bottom: 2px solid #ff6b00; padding-bottom: 15px; } .policy-container h2 { font-family: 'Playfair Display', serif; color: #ff6b00; font-size: 1.75rem; margin-top: 40px; margin-bottom: 20px; font-weight: 700; } .policy-container p { margin-bottom: 20px; color: #a0a0a0; font-size: 1rem; text-align: justify; hyphens: auto; } .policy-container .last-updated { font-style: italic; color: #4a4a4a; font-size: 0.875rem; margin-bottom: 30px; } .policy-container ul { margin-bottom: 25px; padding-left: 20px; list-style-type: none; } .policy-container ul li { position: relative; padding-left: 25px; margin-bottom: 12px; color: #a0a0a0; } .policy-container ul li::before { content: '\2192'; position: absolute; left: 0; color: #ff6b00; font-weight: bold; } .policy-container strong { color: #ffffff; font-weight: 600; } @media (max-width: 768px) { .policy-content-wrapper { padding: 30px 15px; } .policy-container { padding: 25px; } .policy-container h1 { font-size: 1.125rem; } .policy-container h2 { font-size: 1rem; } .policy-container p { font-size: 0.875rem; } }

/* ===== PAGE: cookies ===== */
.policy-content-wrapper .cookies-info-section { color: #ffffff; padding: 20px 0; line-height: 1.7; font-family: 'Inter', sans-serif; } .policy-content-wrapper .cookies-main-heading { font-family: 'Playfair Display', serif; color: #ff6b00; font-weight: 900; margin-bottom: 0.5rem; } @media (max-width: 767px) { .policy-content-wrapper .cookies-main-heading { font-size: 18px; } .policy-content-wrapper h2 { font-size: 16px; } .policy-content-wrapper .cookies-content-block p { font-size: 14px; } } .policy-content-wrapper .cookies-update-text { color: #a0a0a0; font-size: 0.875rem; margin-bottom: 2.5rem; border-bottom: 1px solid #262626; padding-bottom: 10px; } .policy-content-wrapper .cookies-content-block { margin-bottom: 2.5rem; } .policy-content-wrapper h2 { font-family: 'Playfair Display', serif; color: #ffffff; font-weight: 700; margin-bottom: 1.25rem; border-left: 3px solid #ff6b00; padding-left: 15px; } .policy-content-wrapper p { color: #a0a0a0; margin-bottom: 1rem; } .policy-content-wrapper .cookies-list { list-style: none; padding-left: 0; } .policy-content-wrapper .cookies-list li { margin-bottom: 1rem; padding-left: 25px; position: relative; color: #a0a0a0; } .policy-content-wrapper .cookies-list li::before { content: '\eb7e'; font-family: 'remixicon'; position: absolute; left: 0; color: #ff6b00; font-size: 1rem; } .policy-content-wrapper strong { color: #ffffff; font-weight: 600; } .policy-content-wrapper a { color: #ff6b00; text-decoration: none; transition: 0.3s; } .policy-content-wrapper a:hover { color: #ffffff; text-decoration: underline; }

/* ===== PAGE: contact ===== */
.editorial-info-block {
  background-color: #0a0a0a;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
}
.editorial-info-block .editorial-main-title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 2.5rem);
}
.editorial-info-block .editorial-section-title {
  font-family: 'Playfair Display', serif;
  color: #ff6b00;
  font-weight: 700;
}
.editorial-info-block .editorial-lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #a0a0a0;
}
.editorial-info-block .editorial-text {
  line-height: 1.7;
  color: #dcdcdc;
}
.editorial-info-block .editorial-image-wrapper img {
  object-fit: cover;
  width: 100%;
  max-height: 400px;
  border: 1px solid #262626;
}
.editorial-info-block .editorial-ethics-box {
  background-color: #161616;
  border: 1px solid #262626;
}
.editorial-info-block .ethics-list li {
  color: #a0a0a0;
  display: flex;
  align-items: center;
}
.editorial-info-block .ethics-list i {
  color: #ff6b00;
  font-size: 1.25rem;
}
.editorial-info-block .contact-sidebar {
  top: 2rem;
}
.editorial-info-block .contact-details-card {
  background-color: #121212;
  border: 1px solid #262626;
  transition: border-color 0.3s ease;
}
.editorial-info-block .contact-details-card:hover {
  border-color: #ff6b00;
}
.editorial-info-block .contact-card-title {
  font-family: 'Playfair Display', serif;
  color: #ffffff;
}
.editorial-info-block .contact-icon-box {
  background: rgba(255, 107, 0, 0.1);
  color: #ff6b00;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.editorial-info-block .contact-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #ff6b00;
  margin-bottom: 2px;
}
.editorial-info-block .contact-value {
  font-size: 1.1rem;
  color: #ffffff;
  word-break: break-all;
  transition: color 0.3s ease;
}
.editorial-info-block a.contact-value:hover {
  color: #ff6b00;
}
@media (max-width: 991.98px) {
  .editorial-info-block .contact-sidebar {
    position: static;
  }
  .editorial-info-block .editorial-main-title {
    font-size: 1.8rem;
  }
}

.main-comment-wrapper {
    background-color: #121212;
    border-color: #ff6b00 !important;
    transition: transform 0.3s ease;
}

.main-comment-wrapper:hover {
    transform: translateX(5px);
}

.avatar-initials {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b00, #e65100);
    color: #ffffff;
    font-size: 1.1rem;
    border: 2px solid #262626;
}

.comment-author-name {
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
}

.comment-body-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #a0a0a0 !important;
}

.action-link {
    color: #ff6b00 !important;
    font-weight: 600;
    font-size: 0.85rem;
    transition: opacity 0.2s ease;
}

.action-link:hover {
    opacity: 0.8;
    color: #ffffff !important;
}

.comment-timestamp {
    font-family: 'Inter', sans-serif;
}

.reply-comment-wrapper {
    background-color: #161616;
    border-color: #4a4a4a !important;
    margin-left: 3rem;
}

@media (max-width: 768px) {
    .reply-comment-wrapper {
        margin-left: 1.5rem;
    }
}

.avatar-initials-sm {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #262626;
    color: #ff6b00;
    font-size: 0.9rem;
    border: 1px solid #ff6b00;
}

.comment-author-name {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
}

.comment-body-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #a0a0a0 !important;
}

.action-link {
    color: #ff6b00 !important;
    font-weight: 600;
    font-size: 0.8rem;
}

.comment-timestamp {
    font-family: 'Inter', sans-serif;
}


/* ===== PAGE TEMPLATE: travel-posts ===== */
.hero-block-zenv-detail {
    min-height: 60vh;
    background-color: #0a0a0a;
    color: #ffffff;
    padding: 120px 0;
}

.hero-block-zenv-detail .hero-bg-image {
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-block-zenv-detail .hero-overlay {
    background: linear-gradient(0deg, rgba(10, 10, 10, 1) 0%, rgba(10, 10, 10, 0.6) 100%);
    z-index: 2;
}

.hero-block-zenv-detail .hero-tag {
    background-color: #ff6b00;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
}

.hero-block-zenv-detail .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.25rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
}

.hero-block-zenv-detail .hero-meta {
    font-family: 'Inter', sans-serif;
    color: #a0a0a0;
    font-size: 0.9rem;
}

.hero-block-zenv-detail .hero-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
    position: relative;
}

.hero-block-zenv-detail .hero-content.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.article-content-wrapper {
    background-color: #161616;
    border: 1px solid #262626;
}

.article-body {
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    color: #e0e0e0;
    font-size: 1.1rem;
}

.article-body h2 {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    margin-top: 2rem;
    margin-bottom: 1.25rem;
}

.article-body p {
    margin-bottom: 1.5rem;
}

.share-btn-fb,
.share-btn-tw,
.share-btn-li {
    background-color: #262626;
    color: #ffffff;
    border-radius: 0;
    transition: all 0.3s ease;
}

.share-btn-fb:hover {
    background-color: #3b5998;
    color: #fff;
}

.share-btn-tw:hover {
    background-color: #000000;
    color: #fff;
}

.share-btn-li:hover {
    background-color: #0077b5;
    color: #fff;
}

.sidebar-widget {
    background-color: #121212;
    border: 1px solid #262626;
}

.widget-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ff6b00;
    border-left: 3px solid #ff6b00;
    padding-left: 1rem;
}

.related-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.related-item-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    line-height: 1.3;
    color: #ffffff;
    transition: color 0.3s ease;
}

.related-post-link:hover .related-item-title {
    color: #ff6b00;
}

.comment-form-block {
    background-color: #1a1a1a;
    border: 1px solid #262626;
}

.comment-form-block .form-control {
    background-color: #121212;
    border: 1px solid #262626;
    color: #ffffff;
    border-radius: 0;
}

.comment-form-block .form-control:focus {
    background-color: #161616;
    border-color: #ff6b00;
    box-shadow: none;
    color: #fff;
}

.btn-primary-custom {
    background-color: #ff6b00;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    transition: all 0.4s ease;
    border: none;
}

.btn-primary-custom:hover {
    background-color: #ffffff;
    color: #121212;
}

.avatar-initials,
.avatar-initials-sm {
    background-color: #ff6b00;
    color: #ffffff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.avatar-initials-sm {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
}

.action-link {
    color: #ff6b00 !important;
    font-weight: 600;
}

.bg-accent-soft {
    background-color: rgba(255, 107, 0, 0.05) !important;
}

@media (max-width: 768px) {
    .hero-block-zenv-detail {
        min-height: 450px;
        padding: 60px 0;
    }

    .article-content-wrapper {
        padding: 1.5rem !important;
    }

    .article-body {
        font-size: 1rem;
    }
}

/* ===== PAGE TEMPLATE: culture-posts ===== */
.hero-block-zenv-detail {
    min-height: 60vh;
    background-color: #0a0a0a;
    color: #ffffff;
    padding: 120px 0;
}

.hero-block-zenv-detail .hero-bg-image {
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-block-zenv-detail .hero-overlay {
    background: linear-gradient(0deg, rgba(10, 10, 10, 1) 0%, rgba(10, 10, 10, 0.6) 100%);
    z-index: 2;
}

.hero-block-zenv-detail .hero-tag {
    background-color: #ff6b00;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
}

.hero-block-zenv-detail .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.25rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
}

.hero-block-zenv-detail .hero-meta {
    font-family: 'Inter', sans-serif;
    color: #a0a0a0;
    font-size: 0.9rem;
}

.hero-block-zenv-detail .hero-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
    position: relative;
}

.hero-block-zenv-detail .hero-content.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.article-content-wrapper {
    background-color: #161616;
    border: 1px solid #262626;
}

.article-body {
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    color: #e0e0e0;
    font-size: 1.1rem;
}

.article-body h2 {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    margin-top: 2rem;
    margin-bottom: 1.25rem;
}

.article-body p {
    margin-bottom: 1.5rem;
}

.share-btn-fb,
.share-btn-tw,
.share-btn-li {
    background-color: #262626;
    color: #ffffff;
    border-radius: 0;
    transition: all 0.3s ease;
}

.share-btn-fb:hover {
    background-color: #3b5998;
    color: #fff;
}

.share-btn-tw:hover {
    background-color: #000000;
    color: #fff;
}

.share-btn-li:hover {
    background-color: #0077b5;
    color: #fff;
}

.sidebar-widget {
    background-color: #121212;
    border: 1px solid #262626;
}

.widget-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ff6b00;
    border-left: 3px solid #ff6b00;
    padding-left: 1rem;
}

.related-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.related-item-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    line-height: 1.3;
    color: #ffffff;
    transition: color 0.3s ease;
}

.related-post-link:hover .related-item-title {
    color: #ff6b00;
}

.comment-form-block {
    background-color: #1a1a1a;
    border: 1px solid #262626;
}

.comment-form-block .form-control {
    background-color: #121212;
    border: 1px solid #262626;
    color: #ffffff;
    border-radius: 0;
}

.comment-form-block .form-control:focus {
    background-color: #161616;
    border-color: #ff6b00;
    box-shadow: none;
    color: #fff;
}

.btn-primary-custom {
    background-color: #ff6b00;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    transition: all 0.4s ease;
    border: none;
}

.btn-primary-custom:hover {
    background-color: #ffffff;
    color: #121212;
}

.avatar-initials,
.avatar-initials-sm {
    background-color: #ff6b00;
    color: #ffffff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.avatar-initials-sm {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
}

.action-link {
    color: #ff6b00 !important;
    font-weight: 600;
}

.bg-accent-soft {
    background-color: rgba(255, 107, 0, 0.05) !important;
}

@media (max-width: 768px) {
    .hero-block-zenv-detail {
        min-height: 450px;
        padding: 60px 0;
    }

    .article-content-wrapper {
        padding: 1.5rem !important;
    }

    .article-body {
        font-size: 1rem;
    }
}

/* ===== PAGE TEMPLATE: lifestyle-posts ===== */
.hero-block-zenv-detail {
    min-height: 60vh;
    background-color: #0a0a0a;
    color: #ffffff;
    padding: 120px 0;
}

.hero-block-zenv-detail .hero-bg-image {
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-block-zenv-detail .hero-overlay {
    background: linear-gradient(0deg, rgba(10, 10, 10, 1) 0%, rgba(10, 10, 10, 0.6) 100%);
    z-index: 2;
}

.hero-block-zenv-detail .hero-tag {
    background-color: #ff6b00;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
}

.hero-block-zenv-detail .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.25rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
}

.hero-block-zenv-detail .hero-meta {
    font-family: 'Inter', sans-serif;
    color: #a0a0a0;
    font-size: 0.9rem;
}

.hero-block-zenv-detail .hero-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
    position: relative;
}

.hero-block-zenv-detail .hero-content.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.article-content-wrapper {
    background-color: #161616;
    border: 1px solid #262626;
}

.article-body {
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    color: #e0e0e0;
    font-size: 1.1rem;
}

.article-body h2 {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    margin-top: 2rem;
    margin-bottom: 1.25rem;
}

.article-body p {
    margin-bottom: 1.5rem;
}

.share-btn-fb,
.share-btn-tw,
.share-btn-li {
    background-color: #262626;
    color: #ffffff;
    border-radius: 0;
    transition: all 0.3s ease;
}

.share-btn-fb:hover {
    background-color: #3b5998;
    color: #fff;
}

.share-btn-tw:hover {
    background-color: #000000;
    color: #fff;
}

.share-btn-li:hover {
    background-color: #0077b5;
    color: #fff;
}

.sidebar-widget {
    background-color: #121212;
    border: 1px solid #262626;
}

.widget-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ff6b00;
    border-left: 3px solid #ff6b00;
    padding-left: 1rem;
}

.related-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.related-item-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    line-height: 1.3;
    color: #ffffff;
    transition: color 0.3s ease;
}

.related-post-link:hover .related-item-title {
    color: #ff6b00;
}

.comment-form-block {
    background-color: #1a1a1a;
    border: 1px solid #262626;
}

.comment-form-block .form-control {
    background-color: #121212;
    border: 1px solid #262626;
    color: #ffffff;
    border-radius: 0;
}

.comment-form-block .form-control:focus {
    background-color: #161616;
    border-color: #ff6b00;
    box-shadow: none;
    color: #fff;
}

.btn-primary-custom {
    background-color: #ff6b00;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    transition: all 0.4s ease;
    border: none;
}

.btn-primary-custom:hover {
    background-color: #ffffff;
    color: #121212;
}

.avatar-initials,
.avatar-initials-sm {
    background-color: #ff6b00;
    color: #ffffff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.avatar-initials-sm {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
}

.action-link {
    color: #ff6b00 !important;
    font-weight: 600;
}

.bg-accent-soft {
    background-color: rgba(255, 107, 0, 0.05) !important;
}

@media (max-width: 768px) {
    .hero-block-zenv-detail {
        min-height: 450px;
        padding: 60px 0;
    }

    .article-content-wrapper {
        padding: 1.5rem !important;
    }

    .article-body {
        font-size: 1rem;
    }
}