:root {
    --primary: #FF8C00;
    --primary-glow: rgba(255, 140, 0, 0.4);
    --background-main: #0B0B0C;
    --background-surface: #161618;
    --text-light-primary: #F8F9FA;
    --text-light-secondary: #ADB5BD;
    --accent-gradient: linear-gradient(135deg, #FF8C00 0%, #FF4500 100%);
    --border-glow: rgba(255, 140, 0, 0.15)
}

html {
    scroll-behavior: smooth
}

.dark-theme {
    background-color: var(--background-main);
    color: var(--text-light-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    letter-spacing: -0.01em
}

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

.playfair-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 700
}

.glow-button {
    background: var(--accent-gradient);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 15px var(--primary-glow)
}

.glow-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px var(--primary-glow)
}

.glass-card {
    background: var(--background-surface);
    border: 1px solid var(--border-glow);
    border-radius: 12px;
    transition: all .4s ease-in-out
}

.glass-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow)
}

.neon-border-bottom {
    border-bottom: 1px solid var(--border-glow)
}

/* ===== header ===== */
.hyrvessa-header {
    background-color: #0B0B0C;
    border-bottom: 1px solid rgba(255, 140, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.75rem 0;
    z-index: 1050;
}

.hyrvessa-header.is-scrolled {
    background-color: #0B0B0C;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 140, 0, 0.15);
    border-bottom: 1px solid rgba(255, 140, 0, 0.4);
    padding: 0.5rem 0;
}

.hyrvessa-header .navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.hyrvessa-logo-img {
    max-width: 45px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(255, 140, 0, 0.3));
}

.hyrvessa-brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #F8F9FA;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.hyrvessa-nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ADB5BD !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 1.25rem !important;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.hyrvessa-nav-link:hover {
    color: #FF8C00 !important;
    text-shadow: 0 0 8px rgba(255, 140, 0, 0.4);
}

.hyrvessa-toggler-icon {
    color: #FF8C00;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler {
    border: 1px solid rgba(255, 140, 0, 0.3);
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 140, 0, 0.25);
}

@media (max-width: 991.98px) {
    .hyrvessa-header .navbar-collapse {
        background-color: #161618;
        margin-top: 0.75rem;
        padding: 1.5rem;
        border-radius: 12px;
        border: 1px solid rgba(255, 140, 0, 0.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .hyrvessa-nav-link {
        padding: 0.75rem 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .hyrvessa-nav-link:last-child {
        border-bottom: none;
    }

    .hyrvessa-brand-name {
        font-size: 1.25rem;
    }
}

/* ===== hero ===== */
#hero-editorial {
    min-height: 100vh;
    background-color: #0B0B0C;
    color: #F8F9FA;
}

#hero-editorial .hero-video-wrapper {
    z-index: 1;
}

#hero-editorial .hero-bg-video {
    object-fit: cover;
    filter: grayscale(20%) brightness(0.8);
}

#hero-editorial .hero-overlay {
    background: linear-gradient(180deg, rgba(11, 11, 12, 0.4) 0%, rgba(11, 11, 12, 0.8) 100%);
    z-index: 1;
}

#hero-editorial .z-index-2 {
    z-index: 2;
}

#hero-editorial .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
}

#hero-editorial .hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.125rem, 3vw, 1.375rem);
    max-width: 700px;
    color: #ADB5BD;
    line-height: 1.6;
}

#hero-editorial .btn-glow-primary {
    background: #FF8C00;
    color: #0B0B0C;
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
}

#hero-editorial .btn-glow-primary:hover {
    background: #FF4500;
    box-shadow: 0 0 25px rgba(255, 140, 0, 0.6);
    transform: translateY(-2px);
}

#hero-editorial .btn-glow-outline {
    background: transparent;
    color: #F8F9FA;
    border: 1px solid rgba(255, 140, 0, 0.5);
    padding: 1rem 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#hero-editorial .btn-glow-outline:hover {
    background: rgba(255, 140, 0, 0.1);
    border-color: #FF8C00;
    color: #FF8C00;
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.2);
}

#hero-editorial .hero-scroll-indicator {
    width: 2px;
    height: 60px;
    background: rgba(255, 140, 0, 0.2);
    z-index: 3;
}

#hero-editorial .scroll-dot {
    width: 6px;
    height: 6px;
    background: #FF8C00;
    border-radius: 50%;
    position: absolute;
    left: -2px;
    animation: scrollDown 2s infinite ease-in-out;
}

@keyframes scrollDown {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateY(54px);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    #hero-editorial .hero-title {
        font-size: 2.25rem;
    }

    #hero-editorial .hero-subtitle {
        font-size: 1rem;
    }

    #hero-editorial .hero-cta-group {
        width: 100%;
        padding: 0 20px;
    }
}

/* ===== adventure-highlights ===== */
.adventure-highlights-section {
    background-color: #0B0B0C;
    color: #F8F9FA;
    overflow: hidden;
}

.adventure-highlights-section .section-heading {
    font-family: 'Playfair Display', serif;
    color: #FF8C00;
    letter-spacing: 2px;
}

.adventure-highlights-section .heading-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FF8C00, transparent);
}

.adventure-highlights-section .section-subtitle {
    max-width: 600px;
    color: #ADB5BD;
    font-size: 1.125rem;
}

.adventure-highlights-section .adv-card {
    background: rgba(22, 22, 24, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 140, 0, 0.1);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.adventure-highlights-section .adv-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 140, 0, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 140, 0, 0.1);
}

.adventure-highlights-section .adv-card-img-wrapper {
    height: 240px;
    overflow: hidden;
    position: relative;
    border-radius: 12px 12px 0 0;
}

.adventure-highlights-section .adv-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.adventure-highlights-section .adv-card:hover .adv-card-img {
    transform: scale(1.1);
}

.adventure-highlights-section .adv-card-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #FF8C00;
    color: #1A1A1B;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

.adventure-highlights-section .adv-card-title a {
    font-family: 'Playfair Display', serif;
    color: #F8F9FA;
    transition: color 0.3s ease;
    display: block;
    line-height: 1.3;
}

.adventure-highlights-section .adv-card-title a:hover {
    color: #FF8C00;
}

.adventure-highlights-section .adv-meta {
    font-size: 0.85rem;
    color: #ADB5BD;
    display: flex;
    align-items: center;
}

.adventure-highlights-section .adv-icon {
    stroke: #FF8C00;
}

.adventure-highlights-section .adv-card-excerpt {
    color: #ADB5BD;
    font-size: 1rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.adventure-highlights-section .adv-btn {
    background: #FF8C00;
    color: #1A1A1B;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    padding: 10px 22px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.adventure-highlights-section .adv-btn:hover {
    background: transparent;
    color: #FF8C00;
    border-color: #FF8C00;
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.2);
}

.adventure-highlights-section .adv-comments-count {
    font-size: 0.85rem;
    color: #ADB5BD;
    display: flex;
    align-items: center;
}

/* ===== festival-highlights ===== */
.festival-updates-block {
    background-color: #0B0B0C;
    color: #F8F9FA;
    font-family: 'Inter', sans-serif;
}

.festival-updates-block h2,
.festival-updates-block h3 {
    font-family: 'Playfair Display', serif;
    color: #F8F9FA;
}

.festival-updates-block .festival-card {
    background: #161618;
    border-radius: 12px;
    border: 1px solid rgba(255, 140, 0, 0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.festival-updates-block .festival-card:hover {
    border-color: rgba(255, 140, 0, 0.6);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 140, 0, 0.15);
    transform: translateY(-5px);
}

.festival-updates-block .festival-img-wrapper {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.festival-updates-block .festival-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.festival-updates-block .festival-card:hover .festival-img {
    transform: scale(1.05);
}

.festival-updates-block .festival-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #FF8C00;
    color: #0B0B0C;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 2;
}

.festival-updates-block .festival-meta {
    font-size: 0.85rem;
    color: #ADB5BD;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.festival-updates-block .festival-title {
    transition: color 0.3s ease;
}

.festival-updates-block .festival-card:hover .festival-title {
    color: #FF8C00;
}

.festival-updates-block .btn-glow-editorial {
    display: inline-block;
    padding: 12px 28px;
    background: transparent;
    color: #F8F9FA;
    border: 1px solid #FF8C00;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.875rem;
    position: relative;
    overflow: hidden;
}

.festival-updates-block .btn-glow-editorial:hover {
    background: #FF8C00;
    color: #0B0B0C;
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.4);
}

.festival-updates-block .festival-card-horizontal .festival-img {
    height: 100%;
    min-height: 400px;
}

@media (max-width: 767.98px) {
    .festival-updates-block .festival-card-horizontal .festival-img {
        min-height: 250px;
        height: 250px;
    }

    .festival-updates-block .display-4 {
        font-size: 2.25rem;
    }

    .festival-updates-block .h2 {
        font-size: 1.75rem;
    }
}

/* ===== city-highlights ===== */
.city-highlights-section {
    background-color: #0B0B0C;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.city-highlights-section .section-title {
    font-family: 'Playfair Display', serif;
    color: #F8F9FA;
    font-size: 2.5rem;
    font-weight: 700;
}

.city-highlights-section .tracking-widest {
    letter-spacing: 0.2em;
    font-size: 0.875rem;
}

.city-highlights-section .filter-btn {
    background: #161618;
    border: 1px solid rgba(255, 140, 0, 0.1);
    color: #ADB5BD;
    padding: 8px 24px;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 600;
}

.city-highlights-section .filter-btn:hover,
.city-highlights-section .filter-btn.active {
    background: #FF8C00;
    color: #1A1A1B;
    border-color: #FF8C00;
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.3);
}

.city-highlights-section .article-stack {
    position: relative;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    background: #161618;
    border: 1px solid rgba(255, 140, 0, 0.1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.city-highlights-section .article-stack:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 140, 0, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.city-highlights-section .image-wrapper {
    display: block;
    height: 100%;
    width: 100%;
    position: relative;
}

.city-highlights-section .stack-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.city-highlights-section .article-stack:hover .stack-img {
    transform: scale(1.1);
}

.city-highlights-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(11, 11, 12, 0.8) 100%);
}

.city-highlights-section .floating-panel {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(22, 22, 24, 0.85);
    backdrop-filter: blur(12px);
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid #FF8C00;
    transform: translateY(10px);
    transition: all 0.4s ease;
    z-index: 2;
}

.city-highlights-section .article-stack:hover .floating-panel {
    transform: translateY(0);
}

.city-highlights-section .panel-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.city-highlights-section .category-tag {
    color: #FF8C00;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.city-highlights-section .date-tag {
    color: #ADB5BD;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.city-highlights-section .icon-sm {
    width: 14px;
    height: 14px;
}

.city-highlights-section .panel-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.city-highlights-section .panel-title a {
    color: #F8F9FA;
    text-decoration: none;
    transition: color 0.3s;
}

.city-highlights-section .panel-title a:hover {
    color: #FF8C00;
}

.city-highlights-section .panel-excerpt {
    color: #ADB5BD;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.city-highlights-section .btn-link {
    color: #FF8C00;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.city-highlights-section .btn-link:hover {
    gap: 12px;
    color: #FF4500;
}

.city-highlights-section .icon-xs {
    width: 16px;
    height: 16px;
}

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

    .city-highlights-section .section-title {
        font-size: 1.8rem;
    }

    .city-highlights-section .article-stack {
        height: 450px;
    }

    .city-highlights-section .floating-panel {
        padding: 16px;
    }

    .city-highlights-section .panel-title {
        font-size: 1.2rem;
    }
}

/* ===== newsletter ===== */
.hyrvessa-newsletter-section {
    background-color: #0B0B0C;
    position: relative;
    overflow: hidden;
}

.hyrvessa-newsletter-section .newsletter-card {
    background-color: #161618;
    border-radius: 12px;
    border: 1px solid rgba(255, 140, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hyrvessa-newsletter-section .hyrvessa-newsletter-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #F8F9FA;
    font-weight: 700;
    line-height: 1.2;
}

.hyrvessa-newsletter-section .hyrvessa-newsletter-subtitle {
    font-family: 'Inter', sans-serif;
    color: #ADB5BD;
    font-size: 1.125rem;
    line-height: 1.6;
}

.hyrvessa-newsletter-section .newsletter-input {
    background-color: #0B0B0C;
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 8px;
    padding: 0.75rem 1.25rem;
    color: #F8F9FA;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.hyrvessa-newsletter-section .newsletter-input::placeholder {
    color: #495057;
}

.hyrvessa-newsletter-section .newsletter-input:focus {
    border-color: #FF8C00;
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.3);
    outline: none;
}

.hyrvessa-newsletter-section .newsletter-submit-btn {
    background: #FF8C00;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 2rem;
    color: #1A1A1B;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    min-height: 50px;
}

.hyrvessa-newsletter-section .newsletter-submit-btn:hover {
    background: #FF4500;
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(255, 140, 0, 0.3);
}

.hyrvessa-newsletter-section .newsletter-privacy {
    font-size: 0.875rem;
    color: #495057;
    margin-bottom: 0;
}

.hyrvessa-newsletter-section .newsletter-privacy a {
    color: #ADB5BD;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.hyrvessa-newsletter-section .newsletter-privacy a:hover {
    color: #FF8C00;
}

@media (max-width: 767.98px) {
    .hyrvessa-newsletter-section .hyrvessa-newsletter-title {
        font-size: 16px !important;
    }

    .hyrvessa-newsletter-section .hyrvessa-newsletter-subtitle {
        font-size: 14px !important;
    }

    .hyrvessa-newsletter-section .newsletter-privacy {
        font-size: 12px !important;
    }

    .hyrvessa-newsletter-section .newsletter-submit-btn {
        width: 100%;
    }
}

/* ===== footer ===== */
.hyrvessa-footer {
    background-color: #0B0B0C;
    color: #F8F9FA;
    border-top: 1px solid rgba(255, 140, 0, 0.15);
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.hyrvessa-footer .footer-logo-img {
    max-width: 50px;
    height: auto;
    filter: drop-shadow(0 0 5px rgba(255, 140, 0, 0.4));
}

.hyrvessa-footer .footer-description {
    color: #ADB5BD;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 340px;
}

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

.hyrvessa-footer .footer-link {
    color: #ADB5BD;
    text-decoration: none;
    font-size: 0.95rem;
    display: block;
    padding: 0.4rem 0;
    transition: all 0.3s ease-in-out;
}

.hyrvessa-footer .footer-link:hover {
    color: #FF8C00;
    transform: translateX(5px);
}

.hyrvessa-footer .footer-contact-info {
    color: #ADB5BD;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.hyrvessa-footer .footer-email-cta {
    color: #F8F9FA;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    padding-bottom: 2px;
    border-bottom: 2px solid #FF8C00;
    transition: all 0.3s ease;
}

.hyrvessa-footer .footer-email-cta:hover {
    color: #FF8C00;
    border-bottom-color: transparent;
    background: rgba(255, 140, 0, 0.05);
}

.hyrvessa-footer .footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 140, 0, 0.2), transparent);
}

.hyrvessa-footer .copyright-text {
    color: #495057;
    font-size: 0.85rem;
}

.hyrvessa-footer .footer-tagline {
    color: #495057;
    font-size: 0.85rem;
    font-style: italic;
}

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

    .hyrvessa-footer .footer-bottom {
        text-align: center;
        gap: 1rem;
    }
}

/* ===== PAGE: privacy ===== */
.policy-article-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  background-color: #0B0B0C;
  color: #ADB5BD;
  font-family: 'Inter', sans-serif;
  line-height: 1.8;
}

.policy-article-wrapper h2 {
  font-family: 'Playfair Display', serif;
  color: #F8F9FA;
  font-size: 2.5rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid #FF8C00;
  padding-left: 1.5rem;
  line-height: 1.2;
}

.policy-article-wrapper p {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  font-weight: 300;
}

.policy-article-wrapper ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.policy-article-wrapper li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.policy-article-wrapper li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  background: #FF8C00;
  box-shadow: 0 0 10px rgba(255, 140, 0, 0.6);
  border-radius: 50%;
}

.policy-article-wrapper strong {
  color: #F8F9FA;
  font-weight: 600;
}

@media (max-width: 768px) {
  .policy-article-wrapper {
    padding: 2rem 1rem;
  }
  .policy-article-wrapper h2 {
    font-size: 1.5rem !important;
    padding-left: 1rem;
  }
  .policy-article-wrapper p {
    font-size: 1rem;
  }
  .policy-article-wrapper li {
    font-size: 0.95rem;
  }
}

/* ===== PAGE: terms ===== */
.policy-article-wrapper { max-width: 850px; margin: 0 auto; padding: 4rem 1.5rem; background-color: #0B0B0C; color: #ADB5BD; font-family: 'Inter', sans-serif; } .policy-article-wrapper h1 { font-family: 'Playfair Display', serif; color: #F8F9FA; font-size: 3.5rem; margin-bottom: 1rem; letter-spacing: -0.02em; } .policy-article-wrapper .policy-intro { color: #FF8C00; font-weight: 600; margin-bottom: 3rem; text-transform: uppercase; font-size: 0.875rem; letter-spacing: 0.1em; } .policy-article-wrapper h2 { font-family: 'Playfair Display', serif; color: #F8F9FA; font-size: 1.75rem; margin-top: 3rem; margin-bottom: 1.25rem; border-left: 3px solid #FF8C00; padding-left: 1.25rem; } .policy-article-wrapper p { margin-bottom: 1.25rem; line-height: 1.8; } .policy-article-wrapper ul { margin-bottom: 1.5rem; padding-left: 1.25rem; list-style-type: none; } .policy-article-wrapper ul li { position: relative; margin-bottom: 0.75rem; padding-left: 1.5rem; } .policy-article-wrapper ul li::before { content: ''; position: absolute; left: 0; top: 0.6rem; width: 8px; height: 1px; background-color: #FF8C00; } .policy-article-wrapper .policy-section { margin-bottom: 4rem; } @media (max-width: 768px) { .policy-article-wrapper { padding: 2rem 1rem; } .policy-article-wrapper h1 { font-size: 18px !important; } .policy-article-wrapper h2 { font-size: 16px !important; margin-top: 2rem; } .policy-article-wrapper h3 { font-size: 14px !important; } .policy-article-wrapper p, .policy-article-wrapper li { font-size: 1rem; } }

/* ===== PAGE: disclaimer ===== */
.policy-article-wrapper {
  padding: 4rem 1rem;
  max-width: 900px;
  margin: 0 auto;
  color: #ADB5BD;
  font-family: 'Inter', sans-serif;
  line-height: 1.8;
}

.policy-article-wrapper .disclaimer-header {
  margin-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 140, 0, 0.2);
  padding-bottom: 2rem;
}

.policy-article-wrapper h2.disclaimer-main-title {
  font-family: 'Playfair Display', serif;
  color: #F8F9FA;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-transform: capitalize;
}

.policy-article-wrapper .disclaimer-meta {
  font-size: 0.875rem;
  color: #FF8C00;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.policy-article-wrapper .disclaimer-section {
  margin-bottom: 3rem;
}

.policy-article-wrapper .disclaimer-section h2 {
  font-family: 'Playfair Display', serif;
  color: #F8F9FA;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
}

.policy-article-wrapper .disclaimer-section h2::after {
  content: '';
  flex-grow: 0;
  width: 40px;
  height: 2px;
  background: #FF8C00;
  margin-left: 1rem;
  box-shadow: 0 0 10px rgba(255, 140, 0, 0.4);
}

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

.policy-article-wrapper ul {
  list-style: none !important;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.policy-article-wrapper ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-article-wrapper ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 8px;
  height: 1px;
  background-color: #FF8C00;
}

@media (max-width: 768px) {
  .policy-article-wrapper {
    padding: 2.5rem 1.25rem;
  }
  
  .policy-article-wrapper h1, 
  .policy-article-wrapper h2.disclaimer-main-title {
    font-size: 1.5rem !important;
  }

  .policy-article-wrapper h2 {
    font-size: 1.25rem !important;
  }

  .policy-article-wrapper h3 {
    font-size: 1.125rem !important;
  }
  
  .policy-article-wrapper p,
  .policy-article-wrapper li {
    font-size: 0.95rem;
    hyphens: auto;
  }
}

/* ===== PAGE: cookies ===== */
.policy-article-wrapper {
  padding: 4rem 1rem;
  max-width: 900px;
  margin: 0 auto;
  color: #ADB5BD;
  font-family: 'Inter', sans-serif;
  line-height: 1.8;
}

.policy-article-wrapper h2 {
  font-family: 'Playfair Display', serif;
  color: #F8F9FA;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid #FF8C00;
  padding-left: 1.5rem;
}

.policy-article-wrapper h3 {
  font-family: 'Playfair Display', serif;
  color: #FF8C00;
  font-size: 1.75rem;
  margin-top: 3rem;
  margin-bottom: 1.25rem;
}

.policy-article-wrapper p {
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.policy-article-wrapper .policy-intro {
  font-size: 1.25rem;
  color: #F8F9FA;
  font-style: italic;
}

.policy-article-wrapper .policy-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.policy-article-wrapper .policy-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy-article-wrapper .policy-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 8px;
  height: 8px;
  background: #FF8C00;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 140, 0, 0.6);
}

.policy-article-wrapper strong {
  color: #F8F9FA;
}

.policy-article-wrapper .policy-table-container {
  overflow-x: auto;
  margin: 2rem 0;
  background: #161618;
  border: 1px solid rgba(255, 140, 0, 0.15);
  border-radius: 12px;
}

.policy-article-wrapper .policy-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
}

.policy-article-wrapper .policy-table th,
.policy-article-wrapper .policy-table td {
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.policy-article-wrapper .policy-table th {
  background: rgba(255, 140, 0, 0.05);
  color: #FF8C00;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

.policy-article-wrapper a {
  color: #FF8C00;
  text-decoration: none;
  transition: color 0.3s ease;
  border-bottom: 1px solid rgba(255, 140, 0, 0.3);
}

.policy-article-wrapper a:hover {
  color: #FF4500;
  border-bottom-color: #FF4500;
}

@media (max-width: 768px) {
  .policy-article-wrapper {
    padding: 2rem 1rem;
  }
  .policy-article-wrapper h2 {
    font-size: 1.5rem;
  }
  .policy-article-wrapper h3 {
    font-size: 1.25rem;
  }
  .policy-article-wrapper p {
    font-size: 1rem;
  }
}

/* ===== PAGE: adventure ===== */
.hyr-adventure-page {
  background-color: #0B0B0C;
  color: #F8F9FA;
  overflow-x: hidden;
}

.hyr-adventure-page .hyr-heading-editorial {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #F8F9FA;
  letter-spacing: -0.02em;
}

.hyr-adventure-page .btn-primary {
  background: linear-gradient(135deg, #FF8C00 0%, #FF4500 100%);
  border: none;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.hyr-adventure-page .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 140, 0, 0.5);
}

.hyr-adventure-page .btn-outline-primary {
  color: #FF8C00;
  border-color: rgba(255, 140, 0, 0.5);
  background: transparent;
}

.hyr-adventure-page .btn-outline-primary:hover, 
.hyr-adventure-page .btn-outline-primary.active {
  background-color: #FF8C00;
  border-color: #FF8C00;
  color: #1A1A1B;
}

.hyr-adventure-page .hyr-adventure-card {
  background-color: #161618;
  border: 1px solid rgba(255, 140, 0, 0.1);
  border-radius: 12px;
  transition: all 0.4s ease;
  overflow: hidden;
}

.hyr-adventure-page .hyr-adventure-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 140, 0, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hyr-adventure-page .hyr-card-img-wrapper {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.hyr-adventure-page .hyr-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.hyr-adventure-page .hyr-adventure-card:hover .hyr-card-img-wrapper img {
  transform: scale(1.1);
}

.hyr-adventure-page .card-body {
  padding: 1.5rem;
}

.hyr-adventure-page .card-title a {
  font-family: 'Playfair Display', serif;
  transition: color 0.3s ease;
}

.hyr-adventure-page .card-title a:hover {
  color: #FF8C00 !important;
}

.hyr-adventure-page .newsletter-card {
  background: radial-gradient(circle at top right, rgba(255, 140, 0, 0.1), transparent 70%), #161618;
  border: 1px solid rgba(255, 140, 0, 0.15);
  border-radius: 20px;
}

.hyr-adventure-page .form-control {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #F8F9FA;
  padding: 0.75rem 1.25rem;
}

.hyr-adventure-page .form-control:focus {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: #FF8C00;
  box-shadow: 0 0 0 0.25rem rgba(255, 140, 0, 0.25);
  color: #F8F9FA;
}

.hyr-adventure-page .btn-link:hover,
.hyr-adventure-page .btn-link:focus {
  background-color: transparent !important;
  color: #FF8C00 !important;
}

.hyr-adventure-page .breadcrumb-item + .breadcrumb-item::before {
  color: #495057;
}

@media (max-width: 768px) {
  .hyr-adventure-page .hyr-heading-editorial {
    font-size: 1.75rem;
  }
  .hyr-adventure-page .lead {
    font-size: 1rem;
  }
}

/* ===== PAGE: festivals ===== */
.festivals-page-content {
  background-color: #0B0B0C;
  color: #F8F9FA;
  font-family: 'Inter', sans-serif;
}

.festivals-page-content .category-main-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #F8F9FA;
  letter-spacing: -0.02em;
}

.festivals-page-content .category-subtitle {
  color: #FF8C00;
  font-size: 1.25rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.festivals-page-content .category-description-text {
  color: #ADB5BD;
  line-height: 1.8;
  font-size: 1.125rem;
}

.festivals-page-content .section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #F8F9FA;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.festivals-page-content .section-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: #FF8C00;
  box-shadow: 0 0 10px rgba(255, 140, 0, 0.6);
}

.festivals-page-content .fest-card {
  background: #161618;
  border: 1px solid rgba(255, 140, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.festivals-page-content .fest-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 140, 0, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 140, 0, 0.15);
}

.festivals-page-content .fest-card-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.festivals-page-content .fest-card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.festivals-page-content .fest-card:hover .fest-card-image-wrapper img {
  transform: scale(1.05);
}

.festivals-page-content .fest-card-date {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(11, 11, 12, 0.8);
  backdrop-filter: blur(4px);
  color: #FF8C00;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(255, 140, 0, 0.2);
}

.festivals-page-content .fest-card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.festivals-page-content .fest-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.festivals-page-content .fest-card-title a {
  color: #F8F9FA;
  text-decoration: none;
  transition: color 0.3s ease;
}

.festivals-page-content .fest-card-title a:hover {
  color: #FF8C00;
}

.festivals-page-content .fest-card-excerpt {
  color: #ADB5BD;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.festivals-page-content .fest-card-meta {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #6C757D;
}

.festivals-page-content .btn-fest-accent {
  background: transparent;
  border: 1px solid #FF8C00;
  color: #FF8C00;
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px 20px;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.festivals-page-content .btn-fest-accent:hover {
  background: #FF8C00;
  color: #0B0B0C;
  box-shadow: 0 0 15px rgba(255, 140, 0, 0.4);
}

.festivals-page-content .search-container .form-control {
  background: #161618;
  border: 1px solid rgba(255, 140, 0, 0.2);
  color: #F8F9FA;
  padding: 12px 20px;
  border-radius: 8px;
}

.festivals-page-content .search-container .form-control:focus {
  background: #161618;
  border-color: #FF8C00;
  box-shadow: 0 0 0 0.25rem rgba(255, 140, 0, 0.1);
  color: #F8F9FA;
}

.festivals-page-content .search-container .form-control::placeholder {
  color: #6C757D;
}

.festivals-page-content .newsletter-card {
  background: linear-gradient(135deg, #161618 0%, #0B0B0C 100%);
  border: 1px solid rgba(255, 140, 0, 0.2);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.festivals-page-content .newsletter-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.festivals-page-content .newsletter-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: #F8F9FA;
}

.festivals-page-content .newsletter-text {
  color: #ADB5BD;
}

.festivals-page-content .newsletter-input {
  background: #0B0B0C;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #F8F9FA;
  padding: 12px 15px;
}

.festivals-page-content .newsletter-input:focus {
  background: #0B0B0C;
  border-color: #FF8C00;
  color: #F8F9FA;
  box-shadow: none;
}

.festivals-page-content .btn-newsletter-submit {
  background: #FF8C00;
  color: #0B0B0C;
  font-weight: 700;
  padding: 10px 25px;
  border: none;
}

.festivals-page-content .btn-newsletter-submit:hover {
  background: #FF4500;
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .festivals-page-content .category-main-title {
    font-size: 2.25rem;
  }
  .festivals-page-content .newsletter-block {
    text-align: center;
  }
}

/* ===== PAGE: city-guides ===== */
.city-guides-content {
  background-color: #0B0B0C;
  color: #F8F9FA;
  overflow-x: hidden;
}

.city-guides-content h2,
.city-guides-content h3 {
  font-family: 'Playfair Display', serif;
  color: #F8F9FA;
}

.city-guides-content .category-intro {
  border-bottom: none;
}

.city-guides-content .search-input-group {
  background: #161618;
  border: 1px solid rgba(255, 140, 0, 0.2);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.city-guides-content .search-input-group:focus-within {
  border-color: #FF8C00;
  box-shadow: 0 0 15px rgba(255, 140, 0, 0.3);
}

.city-guides-content .search-input-group .form-control {
  background: transparent !important;
  color: #F8F9FA;
  border: none;
  box-shadow: none;
}

.city-guides-content .search-input-group .form-control::placeholder {
  color: #ADB5BD;
}

.city-guides-content .search-icon {
  width: 20px;
  height: 20px;
  color: #FF8C00;
}

.city-guides-content .guide-card {
  background: #161618;
  border: 1px solid rgba(255, 140, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.city-guides-content .guide-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 140, 0, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 140, 0, 0.1);
}

.city-guides-content .card-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.city-guides-content .card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.city-guides-content .guide-card:hover .card-img-wrapper img {
  transform: scale(1.05);
}

.city-guides-content .category-tag {
  background: rgba(255, 140, 0, 0.1);
  color: #FF8C00;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-right: 10px;
}

.city-guides-content .post-date {
  font-size: 0.85rem;
  color: #ADB5BD;
}

.city-guides-content .card-title a {
  color: #F8F9FA;
  transition: color 0.3s ease;
}

.city-guides-content .card-title a:hover {
  color: #FF8C00;
}

.city-guides-content .author {
  font-size: 0.85rem;
  color: #ADB5BD;
}

.city-guides-content .btn-outline-primary {
  border-color: #FF8C00;
  color: #FF8C00;
}

.city-guides-content .btn-outline-primary:hover {
  background: #FF8C00;
  color: #1A1A1B;
}

.city-guides-content .btn-primary {
  background: linear-gradient(135deg, #FF8C00 0%, #FF4500 100%);
  border: none;
  color: #F8F9FA;
  font-weight: 600;
}

.city-guides-content .newsletter-card {
  background-color: #161618;
  background-image: url('../static/static/media/hyrvessa-cityscape-sunset-background.webp');
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 140, 0, 0.15);
}

.city-guides-content .newsletter-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #0B0B0C 0%, rgba(11, 11, 12, 0.8) 100%);
  z-index: 0;
}

.city-guides-content .newsletter-section .position-relative {
  z-index: 1;
}

.city-guides-content .newsletter-form .form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 140, 0, 0.3);
  color: #F8F9FA;
}

.city-guides-content .newsletter-form .form-control:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: #FF8C00;
  box-shadow: 0 0 10px rgba(255, 140, 0, 0.2);
}

@media (max-width: 768px) {
  .city-guides-content h2 {
    font-size: 1.75rem;
  }
  .city-guides-content .card-img-wrapper {
    height: 200px;
  }
}

/* ===== PAGE: about ===== */
.hyrvessa-about-content {
  background-color: #0B0B0C;
  color: #F8F9FA;
  overflow: hidden;
}
.hyrvessa-about-content h1,
.hyrvessa-about-content h2 {
  font-family: 'Playfair Display', serif;
  color: #F8F9FA;
}
.hyrvessa-about-content .text-primary {
  color: #FF8C00 !important;
}
.hyrvessa-about-content .text-secondary {
  color: #ADB5BD !important;
}
.hyrvessa-about-content .feature-icon-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 140, 0, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 140, 0, 0.3);
}
.hyrvessa-about-content .feature-icon-box .icon {
  width: 20px;
  height: 20px;
  color: #FF8C00;
}
.hyrvessa-about-content .image-wrapper {
  position: relative;
  z-index: 1;
}
.hyrvessa-about-content .image-wrapper::after {
  content: '';
  position: absolute;
  top: 10px;
  right: -10px;
  width: 100%;
  height: 100%;
  border: 1px solid #FF8C00;
  border-radius: 1rem;
  z-index: -1;
}
.hyrvessa-about-content .hyrvessa-card {
  background: #161618;
  border: 1px solid rgba(255, 140, 0, 0.1);
  border-radius: 12px;
  transition: all 0.4s ease;
}
.hyrvessa-about-content .hyrvessa-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 140, 0, 0.4);
  box-shadow: 0 10px 30px rgba(255, 140, 0, 0.1);
}
.hyrvessa-about-content .shadow-glow {
  box-shadow: 0 0 40px rgba(255, 140, 0, 0.2);
}
.hyrvessa-newsletter {
  background-color: #0B0B0C;
}
.hyrvessa-newsletter .newsletter-banner {
  background: #161618;
  border: 1px solid rgba(255, 140, 0, 0.15);
  position: relative;
  overflow: hidden;
}
.hyrvessa-newsletter h2 {
  font-family: 'Playfair Display', serif;
  color: #F8F9FA;
}
.hyrvessa-newsletter .form-control {
  background: #0B0B0C;
  border: 1px solid #2D2D30;
  color: #F8F9FA;
  padding: 0.75rem 1.25rem;
}
.hyrvessa-newsletter .form-control:focus {
  background: #0B0B0C;
  border-color: #FF8C00;
  box-shadow: 0 0 0 0.25rem rgba(255, 140, 0, 0.25);
  color: #F8F9FA;
}
.hyrvessa-newsletter .btn-primary {
  background: linear-gradient(135deg, #FF8C00 0%, #FF4500 100%);
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  color: #1A1A1B;
  transition: all 0.3s ease;
}
.hyrvessa-newsletter .btn-primary:hover {
  opacity: 0.9;
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(255, 140, 0, 0.4);
}
@media (max-width: 768px) {
  .hyrvessa-about-content .display-3 {
    font-size: 2.5rem;
  }
  .hyrvessa-about-content h2 {
    font-size: 1.75rem;
  }
}

.comment-card {
    background: #161618;
    border: 1px solid rgba(255, 140, 0, 0.1);
    border-radius: 12px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.comment-card:hover {
    border-color: rgba(255, 140, 0, 0.3);
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.05);
    transform: translateY(-2px);
}

.avatar-initials {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF8C00 0%, #FF4500 100%);
    color: #1A1A1B;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    border: 2px solid rgba(255, 140, 0, 0.2);
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.2);
}

.author-name {
    font-family: 'Playfair Display', serif;
    color: #F8F9FA;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.comment-timestamp {
    font-family: 'Inter', sans-serif;
    color: #6C757D;
    font-size: 0.85rem;
}

.comment-body-text {
    font-family: 'Inter', sans-serif;
    color: #ADB5BD;
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.comment-action-btn {
    background: transparent;
    border: none;
    color: #FF8C00;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.comment-action-btn:hover {
    opacity: 0.8;
    text-shadow: 0 0 8px rgba(255, 140, 0, 0.4);
}

.comment-action-btn svg {
    width: 18px;
    height: 18px;
}

.reply-comment-item {
    position: relative;
}

.reply-card {
    background: rgba(22, 22, 24, 0.6) !important;
    border: 1px solid rgba(255, 140, 0, 0.05) !important;
    backdrop-filter: blur(10px);
}

.reply-connector {
    position: absolute;
    left: -25px;
    top: -20px;
    width: 20px;
    height: 50px;
    border-left: 2px solid rgba(255, 140, 0, 0.15);
    border-bottom: 2px solid rgba(255, 140, 0, 0.15);
    border-bottom-left-radius: 12px;
}

.avatar-small {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    font-size: 0.9rem !important;
}

.small-text {
    font-size: 0.95rem !important;
    margin-bottom: 0.75rem !important;
}

.author-name {
    font-size: 1.1rem !important;
}

.reply-card:hover {
    border-color: rgba(255, 140, 0, 0.2) !important;
}


/* ===== PAGE TEMPLATE: adventure-list ===== */
.hyrvessa-adventure-template {
    background-color: #0B0B0C;
    color: #F8F9FA;
    font-family: 'Inter', sans-serif;
}

.detail-hero {
    min-height: 60vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 120px 0 80px;
}

.detail-hero .hero-overlay {
    background: linear-gradient(180deg, rgba(11, 11, 12, 0.4) 0%, rgba(11, 11, 12, 0.9) 100%);
}

.detail-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #F8F9FA;
    line-height: 1.2;
}

.detail-subtitle {
    font-size: 1.25rem;
    color: #ADB5BD;
    max-width: 800px;
    margin: 0 auto;
}

.breadcrumb-item a {
    color: #FF8C00;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

.breadcrumb-item.active {
    color: #ADB5BD;
}

.content-card,
.sidebar-card {
    background-color: #161618;
    border-radius: 12px;
    border: 1px solid rgba(255, 140, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.post-meta .meta-item {
    color: #ADB5BD;
    font-size: 0.9rem;
}

.rich-text-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #F8F9FA;
}

.rich-text-content h2,
.rich-text-content h3 {
    font-family: 'Playfair Display', serif;
    color: #FF8C00;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.detail-tabs-container .nav-tabs {
    border-bottom: 1px solid rgba(255, 140, 0, 0.2);
    flex-wrap: wrap;
}

.detail-tabs-container .nav-link {
    color: #ADB5BD;
    border: none;
    background: transparent !important;
    padding: 1rem 1.5rem;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.detail-tabs-container .nav-link:hover {
    color: #F8F9FA !important;
    background: transparent !important;
}

.detail-tabs-container .nav-link:focus,
.detail-tabs-container .nav-link:focus-visible {
    background: transparent !important;
    outline: none !important;
    box-shadow: none !important;
}

.detail-tabs-container .nav-link.active {
    background: transparent !important;
    color: #FF8C00 !important;
    border-bottom: 2px solid #FF8C00;
}

.tab-pane {
    padding-top: 20px;
    color: #ADB5BD;
}

.sidebar-title {
    font-family: 'Playfair Display', serif;
    color: #FF8C00;
    font-size: 1.5rem;
    border-left: 4px solid #FF8C00;
    padding-left: 15px;
}

.sidebar-info-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-info-list li:last-child {
    border-bottom: none;
}

.sidebar-info-list .label {
    color: #ADB5BD;
    font-size: 0.9rem;
}

.sidebar-info-list .value {
    color: #F8F9FA;
    font-weight: 600;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 2px solid #FF8C00;
}

.share-btn {
    border-color: rgba(255, 140, 0, 0.3);
    color: #ADB5BD;
    padding: 0.5rem 1.5rem;
}

.share-btn:hover {
    background-color: rgba(255, 140, 0, 0.1);
    border-color: #FF8C00;
    color: #FF8C00;
}


.comment-card {
    background: #1A1A1C;
    border-radius: 12px;
    border: 1px solid rgba(255, 140, 0, 0.05);
}

.comment-avatar-container {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF8C00 0%, #FF4500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    flex-shrink: 0;
}

.author-name {
    color: #F8F9FA;
    font-size: 1.1rem;
}

.comment-timestamp {
    color: #495057;
    font-size: 0.8rem;
}

.comment-body-text {
    color: #ADB5BD;
    margin: 1rem 0;
}

.comment-action-btn {
    background: none;
    border: none;
    color: #ADB5BD;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.comment-action-btn:hover {
    color: #FF8C00;
}

.comment-action-btn.active {
    color: #FF4500;
}

.js-comment-form .form-control {
    background-color: #1A1A1C;
    border: 1px solid rgba(255, 140, 0, 0.1);
    color: #F8F9FA;
    padding: 1rem;
}

.js-comment-form .form-control:focus {
    background-color: #1A1A1C;
    border-color: #FF8C00;
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.1);
    color: #F8F9FA;
}

.btn-glow-primary {
    background: #FF8C00;
    color: #0B0B0C;
    font-weight: 700;
    border-radius: 4px;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}

.btn-glow-primary:hover {
    background: #FF4500;
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.4);
}

.js-comment-form .btn-glow-primary {
    padding: 0.65rem 2rem !important;
    font-size: 0.95rem !important;
}

#js-comment-form .btn-primary {
    padding-top: 0.65rem !important;
    padding-bottom: 0.65rem !important;
    font-size: 0.95rem !important;
}

@media (max-width: 768px) {
    .detail-hero {
        min-height: 40vh;
        padding: 100px 0 60px;
    }

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

/* ===== PAGE TEMPLATE: festivals-list ===== */
.hyrvessa-detail-template {
    background-color: #0B0B0C;
    color: #F8F9FA;
    font-family: 'Inter', sans-serif;
}

.detail-hero {
    min-height: 70vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 11, 12, 0.4), #0B0B0C);
}

.breadcrumb-item a {
    color: #FF8C00;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

.breadcrumb-item.active {
    color: #ADB5BD;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 140, 0, 0.5);
}

.detail-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.detail-subtitle {
    font-size: 1.25rem;
    max-width: 800px;
    color: #ADB5BD;
}

.meta-icon {
    width: 20px;
    height: 20px;
    color: #FF8C00;
}

.meta-item {
    color: #F8F9FA;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bg-surface {
    background-color: #161618;
    border: 1px solid rgba(255, 140, 0, 0.1);
}

.section-title {
    font-family: 'Playfair Display', serif;
    color: #F8F9FA;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #FF8C00;
}

.article-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #ADB5BD;
}

.highlight-card {
    background: rgba(255, 140, 0, 0.03);
    border: 1px solid rgba(255, 140, 0, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 140, 0, 0.3);
}

.highlight-icon-box {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #FF8C00;
    opacity: 0.6;
}

.share-link {
    color: #ADB5BD;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.share-link:hover {
    color: #FF8C00;
}

.sidebar-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #F8F9FA;
}

.info-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-list .label {
    color: #ADB5BD;
    font-weight: 600;
}

.info-list .value {
    color: #F8F9FA;
    text-align: right;
}

.btn-primary-glow {
    background: #FF8C00;
    color: #0B0B0C;
    border: none;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-primary-glow:hover {
    background: #FF4500;
    box-shadow: 0 0 25px rgba(255, 140, 0, 0.5);
}

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

.related-name {
    font-size: 1rem;
    color: #F8F9FA;
    transition: color 0.3s ease;
}

.related-item:hover .related-name {
    color: #FF8C00;
}

.related-date {
    font-size: 0.8rem;
    color: #ADB5BD;
}

.custom-input {
    background-color: #0B0B0C !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #F8F9FA !important;
    padding: 12px;
}

.custom-input:focus {
    border-color: #FF8C00 !important;
    box-shadow: 0 0 0 0.25rem rgba(255, 140, 0, 0.1) !important;
}

.hyrvessa-comment-wrapper {
    animation: fadeIn 0.5s ease-out;
}

.comment-card {
    background: #161618;
    border: 1px solid rgba(255, 140, 0, 0.1);
    border-radius: 12px;
}

.avatar-initials {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #FF8C00, #FF4500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #0B0B0C;
}

.avatar-small {
    width: 35px;
    height: 35px;
    font-size: 0.8rem;
}

.comment-timestamp {
    font-size: 0.75rem;
    color: #495057;
}

.author-name {
    color: #F8F9FA;
    font-weight: 600;
}

.comment-body-text {
    color: #ADB5BD;
    line-height: 1.5;
}

.comment-action-btn {
    background: none;
    border: none;
    color: #495057;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
}

.comment-action-btn:hover {
    color: #FF8C00;
}

.comment-action-btn.active {
    color: #FF8C00;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .detail-title {
        font-size: 2rem;
    }

    .detail-hero {
        min-height: 50vh;
    }

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

/* ===== PAGE TEMPLATE: city-guides-list ===== */
.hyrvessa-detail-page {
    background-color: #0B0B0C;
    color: #F8F9FA;
    min-height: 100vh;
}

.hyrvessa-detail-page .detail-hero-section {
    min-height: 70vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hyrvessa-detail-page .hero-overlay {
    background: linear-gradient(180deg, rgba(11, 11, 12, 0.2) 0%, rgba(11, 11, 12, 0.9) 100%);
    z-index: 1;
}

.hyrvessa-detail-page .z-index-2 {
    z-index: 2;
}

.hyrvessa-detail-page .detail-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    font-weight: 700;
    color: #F8F9FA;
}

.hyrvessa-detail-page .detail-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: #ADB5BD;
    max-width: 800px;
}

.hyrvessa-detail-page .hyrvessa-article-content {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #CED4DA;
}

.hyrvessa-detail-page .hyrvessa-article-content h2,
.hyrvessa-detail-page .hyrvessa-article-content h3 {
    font-family: 'Playfair Display', serif;
    color: #F8F9FA;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.hyrvessa-detail-page .hyrvessa-article-content p {
    margin-bottom: 1.5rem;
}

.hyrvessa-detail-page .hyrvessa-article-content strong {
    color: #FF8C00;
}

.hyrvessa-detail-page .bg-surface {
    background-color: #161618;
}

.hyrvessa-detail-page .sidebar-widget .widget-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #F8F9FA;
    position: relative;
    padding-bottom: 10px;
}

.hyrvessa-detail-page .sidebar-widget .widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #FF8C00;
}

.hyrvessa-detail-page .sidebar-post-list .img-wrap img {
    object-fit: cover;
    border: 1px solid rgba(255, 140, 0, 0.1);
}


.hyrvessa-detail-page .comment-card {
    background-color: #161618;
    border-radius: 12px;
    border: 1px solid rgba(255, 140, 0, 0.1);
}

.hyrvessa-detail-page .comment-avatar-container {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.hyrvessa-detail-page .avatar-initials {
    width: 100%;
    height: 100%;
    background: #2D2D30;
    color: #FF8C00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border-radius: 50%;
    font-size: 1.1rem;
}

.hyrvessa-detail-page .comment-timestamp {
    font-size: 0.8rem;
    color: #6C757D;
}

.hyrvessa-detail-page .comment-body-text {
    font-size: 0.95rem;
    color: #ADB5BD;
    line-height: 1.6;
}

.hyrvessa-detail-page .comment-action-btn {
    background: none;
    border: none;
    padding: 0;
    color: #FF8C00;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: opacity 0.3s ease;
}

.hyrvessa-detail-page .comment-action-btn:hover {
    opacity: 0.8;
}

.hyrvessa-detail-page .comment-action-btn svg {
    width: 16px;
    height: 16px;
}

.hyrvessa-detail-page .form-control {
    background-color: #2D2D30 !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: #F8F9FA !important;
}

.hyrvessa-detail-page .form-control::placeholder {
    color: #ADB5BD !important;
    opacity: 1 !important;
}

.hyrvessa-detail-page .form-label {
    display: none !important;
}

.hyrvessa-detail-page .share-block .btn-outline-light {
    color: #F8F9FA !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
}

.hyrvessa-detail-page .share-block .btn-outline-light:hover {
    color: #0B0B0C !important;
    background-color: #F8F9FA !important;
    border-color: #F8F9FA !important;
}

.hyrvessa-detail-page .form-control:focus {
    border-color: #FF8C00 !important;
    box-shadow: 0 0 0 0.25rem rgba(255, 140, 0, 0.15) !important;
}

.hyrvessa-detail-page .btn-primary {
    background-color: #FF8C00 !important;
    color: #0B0B0C !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
}

.hyrvessa-detail-page .btn-primary:hover {
    background-color: #FF4500 !important;
}

.hyrvessa-detail-page .btn-outline-primary {
    border-color: #FF8C00;
    color: #FF8C00;
}

.hyrvessa-detail-page .btn-outline-primary:hover {
    background-color: #FF8C00;
    color: #0B0B0C;
}

.hyrvessa-detail-page .alert-outline-warning {
    border: 1px solid #FF8C00;
    color: #FF8C00;
    background: rgba(255, 140, 0, 0.05);
}

@media (max-width: 768px) {
    .hyrvessa-detail-page .detail-hero-section {
        min-height: 50vh;
    }

    .hyrvessa-detail-page .detail-hero-title {
        font-size: 1.75rem;
    }

    .hyrvessa-detail-page .sidebar-content {
        padding-left: 0 !important;
        margin-top: 3rem;
    }
}