:root {
    --primary: #C6930A;
    --primary-dark: #A67C08;
    --primary-light: #F4D03F;
    --background: #FCFAF7;
    --surface: #FFFFFF;
    --text-primary: #1A1A1A;
    --text-secondary: #4B5563;
    --border: #E5E1D8;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--text-primary);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
}

.text-muted {
    color: #6B7280 !important;
}

.container-custom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 min(5vw, 32px);
}

.btn-gold {
    background-color: var(--primary);
    color: #FFFFFF;
    font-weight: 600;
    border-radius: 0.75rem;
    padding: 0.75rem 1.5rem;
    transition: background-color 0.2s ease;
    border: none;
}

.btn-gold:hover {
    background-color: var(--primary-dark);
}

.card-premium {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    box-shadow: 0 4px 20px -2px rgba(198, 147, 10, 0.08);
    transition: border-color 0.2s ease;
}

.card-premium:hover {
    border-color: var(--primary);
}

/* ===== header ===== */
.voyaginity-header {
    font-family: 'Inter', sans-serif;
}

.voyaginity-header .js-mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 70px);
    overflow-y: auto;
    padding: 0;
}

.voyaginity-header .js-mobile-menu .mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 240px;
    max-width: calc(100% - 32px);
}

.voyaginity-header .js-mobile-menu .mobile-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.voyaginity-header .js-mobile-menu .mobile-nav li {
    width: 100%;
    text-align: center;
}

.voyaginity-header .js-mobile-menu .mobile-nav-link {
    display: block;
    width: 100%;
    text-align: center;
    padding: 18px 0;
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #1A1A1A;
    text-decoration: none;
    border-top: 1px solid #E5E1D8;
    box-sizing: border-box;
}

.voyaginity-header .js-mobile-menu .mobile-nav li:last-child .mobile-nav-link {
    border-bottom: 1px solid #E5E1D8;
}

.voyaginity-header .js-mobile-menu .mobile-nav-link:hover {
    color: #C6930A;
}

@media (min-width: 768px) {
    .voyaginity-header .js-mobile-menu {
        display: none !important;
    }
}

/* ===== hero ===== */
.voyaginity-hero-block {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #000000;
}

.voyaginity-hero-block .hero-main-title {
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.voyaginity-hero-block .hero-card {
    border: 1px solid #E5E1D8;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.voyaginity-hero-block .hero-card:hover {
    border-color: #C6930A;
    box-shadow: 0 10px 30px -4px rgba(198, 147, 10, 0.15);
}

.voyaginity-hero-block .hero-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.voyaginity-hero-block .hero-card a:hover h3 {
    color: #C6930A;
}

.voyaginity-hero-block .hero-card img {
    transition: transform 0.4s ease;
}

.voyaginity-hero-block .hero-card:hover img {
    transform: scale(1.05);
}

@media (max-width: 767px) {
    .voyaginity-hero-block .hero-main-title {
        hyphens: auto;
    }
}

/* ===== venues-grid ===== */
.venues-grid .js-filter-btn.active-tab {
    background-color: #C6930A !important;
    color: #FFFFFF !important;
}

.venues-grid .venue-card-img-wrapper {
    position: relative;
    overflow: hidden;
}

.venues-grid .venue-card-img-wrapper img {
    transition: transform 0.5s ease;
}

.venues-grid .venue-card-img-wrapper:hover img {
    transform: scale(1.08);
}

.venues-grid .js-venue-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.venues-grid .js-venue-card:hover {
    border-color: #C6930A;
    transform: translateY(-4px);
}

/* ===== blog-highlights ===== */
.blog-highlights-section .js-filter-btn.active {
    background-color: #C6930A;
    color: #FFFFFF;
    border-color: #C6930A;
}

.blog-highlights-section .js-post-card {
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.blog-highlights-section .js-post-card:hover {
    border-color: #C6930A;
}

.blog-highlights-section .hidden {
    display: none !important;
}

/* ===== faq ===== */
.voyaginity-faq .js-faq-item.is-active {
    border-color: #C6930A;
    box-shadow: 0 4px 20px -2px rgba(198, 147, 10, 0.08);
}

.voyaginity-faq .js-faq-item.is-active .js-faq-icon {
    transform: rotate(180deg);
}

.voyaginity-faq .js-faq-trigger:hover h3 {
    color: #C6930A;
}

.voyaginity-faq .js-faq-content {
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== gallery ===== */
.voyaginity-gallery-section .js-filter-btn {
    transition: all 0.3s ease;
}

.voyaginity-gallery-section .js-gallery-item {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.voyaginity-gallery-section .gallery-card:hover img {
    transform: scale(1.1);
}

.voyaginity-gallery-section .shadow-lg {
    shadow: 0 10px 30px -4px rgba(0, 0, 0, 0.05);
}

/* ===== footer ===== */
.voyaginity-footer {
    font-family: 'Inter', sans-serif;
}

.voyaginity-footer h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.voyaginity-footer a {
    text-decoration: none;
}

.voyaginity-footer .container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 767px) {
    .voyaginity-footer h3 {
        font-size: 14px;
    }

    .voyaginity-footer p,
    .voyaginity-footer a {
        font-size: 14px;
    }
}

/* ===== PAGE: privacy ===== */
.policy-content-wrapper { background-color: #FCFAF7; font-family: 'Inter', sans-serif; overflow-x: hidden; }
.policy-content-wrapper h2, .policy-content-wrapper h3 { font-family: 'Plus Jakarta Sans', sans-serif; color: #1A1A1A; }
.policy-content-wrapper p { margin-bottom: 1.5rem; line-height: 1.8; }
.policy-content-wrapper section { scroll-margin-top: 120px; }
.policy-content-wrapper a { transition: all 0.2s ease; }
.policy-content-wrapper .js-toc-link.active a { color: #C6930A; font-weight: 600; border-left: 2px solid #C6930A; padding-left: 12px; margin-left: -26px; }
@media (max-width: 767px) {
  .policy-content-wrapper h2 { font-size: 16px !important; }
  .policy-content-wrapper h3 { font-size: 14px !important; }
  .policy-content-wrapper p, .policy-content-wrapper li { font-size: 14px !important; }
}

/* ===== PAGE: terms ===== */
.policy-content-wrapper .terms-content-card {
  position: relative;
  overflow: hidden;
}
.policy-content-wrapper .terms-list li {
  position: relative;
  padding-left: 0.5rem;
}
.policy-content-wrapper .terms-list li svg {
  flex-shrink: 0;
  margin-top: 4px;
}
.policy-content-wrapper p, .policy-content-wrapper li {
  color: #4B5563;
}
.policy-content-wrapper h2 {
  color: #1A1A1A;
  margin-top: 1.5rem;
}
.policy-content-wrapper h3 {
  margin-top: 1.25rem;
}
@media (max-width: 767px) {
  .policy-content-wrapper .terms-block {
    padding-left: 16px;
    padding-right: 16px;
  }
  .policy-content-wrapper .terms-content-card {
    padding: 24px 20px;
  }
}

/* ===== PAGE: disclaimer ===== */
.policy-content-wrapper { background-color: #FCFAF7; font-family: 'Inter', sans-serif; }
.policy-container { width: 100%; word-wrap: break-word; overflow-wrap: break-word; }
.policy-body h2 { font-family: 'Plus Jakarta Sans', sans-serif; color: #1A1A1A; }
.policy-body p, .policy-body li { color: #4B5563; font-size: 16px; line-height: 1.6; }
.policy-body ul { list-style-type: none; }
.policy-body ul li { position: relative; padding-left: 24px; }
.policy-body ul li::before { content: '•'; color: #C6930A; position: absolute; left: 0; font-weight: bold; }

/* ===== PAGE: cookies ===== */
.policy-content-wrapper {
  font-family: 'Inter', sans-serif;
  background-color: #FCFAF7;
}

.policy-content-wrapper .policy-container {
  transition: border-color 0.3s ease;
}

.policy-content-wrapper .font-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.policy-content-wrapper .shadow-soft {
  box-shadow: 0 4px 20px -2px rgba(198, 147, 10, 0.08);
}

.policy-content-wrapper .policy-text a {
  transition: color 0.2s ease;
}

.policy-content-wrapper .policy-list li {
  color: #4B5563;
}

@media (max-width: 767px) {
  .policy-content-wrapper .policy-title {
    line-height: 1.2;
  }
  .policy-content-wrapper .policy-subtitle {
    line-height: 1.3;
  }
}

/* ===== PAGE: sydney ===== */
.sydney-venues-block .js-venue-card { height: 100%; transition: all 0.3s ease; }.sydney-venues-block .js-venue-card:hover { transform: translateY(-4px); border-color: #C6930A; }.sydney-venues-block .js-filter-btn.active { background-color: #C6930A; color: #FFFFFF; border-color: #C6930A; }

/* ===== PAGE: melbourne ===== */
.venue-explorer { font-family: 'Inter', sans-serif; } .venue-explorer h2, .venue-explorer h3 { font-family: 'Plus Jakarta Sans', sans-serif; } .venue-explorer .venue-explorer__grid { display: grid; } .venue-explorer .js-venue-card { transition: transform 0.3s ease, box-shadow 0.3s ease; } .venue-explorer .js-venue-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px -4px rgba(0, 0, 0, 0.05); border-color: #C6930A; } .venue-explorer .js-filter-btn.active { background-color: #C6930A; border-color: #C6930A; color: white; }

/* ===== PAGE: blog ===== */
.voyaginity-blog-list .js-category-btn.active { background-color: #C6930A; border-color: #C6930A; color: #FFFFFF; } .voyaginity-blog-list .js-blog-card { transition: transform 0.3s ease, border-color 0.3s ease; } .voyaginity-blog-list .js-blog-card:hover { border-color: #C6930A; transform: translateY(-4px); }

.main-comment {
    transition: border-color 0.2s ease;
}

.main-comment:hover {
    border-color: #C6930A;
}

.avatar-circle {
    box-shadow: 0 2px 10px rgba(198, 147, 10, 0.15);
    border: 2px solid #FFFFFF;
}

.author-name {
    letter-spacing: -0.01em;
}

.comment-content {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.reply-comment {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.avatar-circle-small {
    border: 1.5px solid #FFFFFF;
}

.reply-container {
    position: relative;
}

.reply-container::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #E5E1D8;
    opacity: 0.5;
}


/* ===== PAGE TEMPLATE: sydney-list ===== */
.voyaginity-header {
    font-family: 'Inter', sans-serif;
}

.voyaginity-header .js-mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 70px);
    overflow-y: auto;
    padding: 0;
}

.voyaginity-header .js-mobile-menu .mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 240px;
    max-width: calc(100% - 32px);
}

.voyaginity-header .js-mobile-menu .mobile-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.voyaginity-header .js-mobile-menu .mobile-nav li {
    width: 100%;
    text-align: center;
}

.voyaginity-header .js-mobile-menu .mobile-nav-link {
    display: block;
    width: 100%;
    text-align: center;
    padding: 18px 0;
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #1A1A1A;
    text-decoration: none;
    border-top: 1px solid #E5E1D8;
    box-sizing: border-box;
}

.voyaginity-header .js-mobile-menu .mobile-nav li:last-child .mobile-nav-link {
    border-bottom: 1px solid #E5E1D8;
}

.voyaginity-header .js-mobile-menu .mobile-nav-link:hover {
    color: #C6930A;
}

@media (min-width: 768px) {
    .voyaginity-header .js-mobile-menu {
        display: none !important;
    }
}

.voyaginity-footer {
    font-family: 'Inter', sans-serif;
}

.voyaginity-footer h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.voyaginity-footer a {
    text-decoration: none;
}

.voyaginity-footer .container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 767px) {
    .voyaginity-footer h3 {
        font-size: 14px;
    }

    .voyaginity-footer p,
    .voyaginity-footer a {
        font-size: 14px;
    }
}

.sydney-detail-container h2 {
    line-height: 1.2;
}

.sydney-detail-container p {
    line-height: 1.6;
}

.comment-container .avatar-circle {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ===== PAGE TEMPLATE: melbourne-list ===== */
.melbourne-detail-block .hero-section h1 {
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.melbourne-detail-block .shadow-soft {
    box-shadow: 0 4px 20px -2px rgba(198, 147, 10, 0.08);
}

.melbourne-detail-block .shadow-strong {
    box-shadow: 0 10px 30px -4px rgba(0, 0, 0, 0.05);
}

.melbourne-detail-block .js-tab-btn.active {
    box-shadow: 0 4px 12px rgba(198, 147, 10, 0.25);
}

.voyaginity-header {
    font-family: 'Inter', sans-serif;
}

.voyaginity-header .js-mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 70px);
    overflow-y: auto;
    padding: 0;
}

.voyaginity-header .js-mobile-menu .mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 240px;
    max-width: calc(100% - 32px);
}

.voyaginity-header .js-mobile-menu .mobile-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.voyaginity-header .js-mobile-menu .mobile-nav li {
    width: 100%;
    text-align: center;
}

.voyaginity-header .js-mobile-menu .mobile-nav-link {
    display: block;
    width: 100%;
    text-align: center;
    padding: 18px 0;
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #1A1A1A;
    text-decoration: none;
    border-top: 1px solid #E5E1D8;
    box-sizing: border-box;
}

.voyaginity-header .js-mobile-menu .mobile-nav li:last-child .mobile-nav-link {
    border-bottom: 1px solid #E5E1D8;
}

.voyaginity-header .js-mobile-menu .mobile-nav-link:hover {
    color: #C6930A;
}

@media (min-width: 768px) {
    .voyaginity-header .js-mobile-menu {
        display: none !important;
    }
}

.voyaginity-footer {
    font-family: 'Inter', sans-serif;
}

.voyaginity-footer h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.voyaginity-footer a {
    text-decoration: none;
}

@media (max-width: 767px) {
    .voyaginity-footer h3 {
        font-size: 14px;
    }

    .voyaginity-footer p,
    .voyaginity-footer a {
        font-size: 14px;
    }
}

.melbourne-detail-block .prose p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.melbourne-detail-block .prose h2,
.melbourne-detail-block .prose h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #1A1A1A;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* ===== PAGE TEMPLATE: blog-list ===== */
.voyaginity-header .js-mobile-menu {
    height: calc(100vh - 70px);
    overflow-y: auto;
}

.voyaginity-detail-page h1,
.voyaginity-detail-page h2,
.voyaginity-detail-page h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.voyaginity-detail-page p,
.voyaginity-detail-page span,
.voyaginity-detail-page a,
.voyaginity-detail-page div {
    font-family: 'Inter', sans-serif;
}

.article-body p {
    font-size: 16px;
    line-height: 1.8;
    color: #4B5563;
    margin-bottom: 1.5rem;
}

.article-body h2 {
    font-size: 16px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 2.5rem 0 1rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .article-body h2 {
        font-size: 32px;
    }
}

.article-body ul {
    list-style-type: none;
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.article-body li {
    position: relative;
    font-size: 16px;
    color: #4B5563;
    margin-bottom: 0.75rem;
}

.article-body li::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    background-color: #C6930A;
    border-radius: 50%;
}

.js-like-button.active svg {
    fill: #C6930A;
    stroke: #C6930A;
}

.js-like-button.active .js-like-count {
    color: #C6930A;
}

@media (max-width: 767px) {
    .voyaginity-header .js-mobile-menu {
        display: none;
    }

    .voyaginity-header .js-mobile-menu:not(.hidden) {
        display: flex !important;
    }
}