:root { --hd-gold:           #B8860B;
--hd-gold-light:     #D4A843;
--hd-gold-lighter:   #F0D68A;
--hd-gold-pale:      #FBF3DB;
--hd-gold-dark:      #8B6508;
--hd-gold-accent:    #A16207; --hd-cream:          #FFFBF0;
--hd-cream-dark:     #FFF5E1;
--hd-white:          #FFFFFF;
--hd-bg:             #FDFAF3;
--hd-card:           #FFFFFF;
--hd-border:         #F0E6D0;
--hd-border-dark:    #DDD0B5; --hd-text-primary:   #2D2A26;
--hd-text-secondary: #5C5647;
--hd-text-muted:     #8A8271;
--hd-text-light:     #B0A994; --hd-accent-warm:    #C7702E;
--hd-accent-sage:    #6B7F5E;
--hd-accent-sky:     #4A7C9B;
--hd-destructive:    #C53030;
--hd-success:        #2F7A3E; --hd-shadow-sm:      0 1px 3px rgba(139, 101, 8, 0.08);
--hd-shadow-md:      0 4px 12px rgba(139, 101, 8, 0.1);
--hd-shadow-lg:      0 8px 30px rgba(139, 101, 8, 0.12);
--hd-shadow-xl:      0 16px 50px rgba(139, 101, 8, 0.15);
--hd-shadow-gold:    0 4px 20px rgba(184, 134, 11, 0.2); --hd-font-heading:   'Playfair Display', Georgia, 'Times New Roman', serif;
--hd-font-body:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; --hd-space-xs:       4px;
--hd-space-sm:       8px;
--hd-space-md:       16px;
--hd-space-lg:       24px;
--hd-space-xl:       32px;
--hd-space-2xl:      48px;
--hd-space-3xl:      64px;
--hd-space-4xl:      96px; --hd-radius-sm:      6px;
--hd-radius-md:      10px;
--hd-radius-lg:      16px;
--hd-radius-xl:      24px;
--hd-radius-full:    9999px; --hd-transition:     all 0.25s ease;
--hd-transition-slow: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); --hd-container:      1240px;
--hd-container-wide: 1440px;
--hd-gutter:         20px;
} *,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
font-size: 16px;
scroll-behavior: smooth;
-webkit-text-size-adjust: 100%;
}
body {
font-family: var(--hd-font-body);
font-weight: 400;
line-height: 1.6;
color: var(--hd-text-primary);
background-color: var(--hd-bg);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
img {
max-width: 100%;
height: auto;
display: block;
}
a {
color: var(--hd-gold-dark);
text-decoration: none;
transition: var(--hd-transition);
}
a:hover {
color: var(--hd-gold);
}
a:focus-visible {
outline: 2px solid var(--hd-gold);
outline-offset: 2px;
border-radius: 2px;
} h1, h2, h3, h4, h5, h6 {
font-family: var(--hd-font-heading);
font-weight: 700;
line-height: 1.2;
color: var(--hd-text-primary);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.375rem, 3vw, 1.875rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }
.wp-block-post-title {
font-family: var(--hd-font-heading);
font-weight: 700;
}
p {
margin-bottom: var(--hd-space-md);
}
.text-gold { color: var(--hd-gold); }
.text-muted { color: var(--hd-text-muted); }
.wp-block-image img {
border-radius: var(--hd-radius-sm);
}
blockquote,
.wp-block-quote {
margin: var(--hd-space-lg) 0;
padding: var(--hd-space-md) var(--hd-space-lg);
border-left: 4px solid var(--hd-gold);
background: var(--hd-gold-pale);
border-radius: 0 var(--hd-radius-sm) var(--hd-radius-sm) 0;
font-style: italic;
color: var(--hd-text-secondary);
}
blockquote p,
.wp-block-quote p {
margin: 0 !important;
}
blockquote cite,
.wp-block-quote cite,
.wp-block-quote .wp-block-quote__citation {
display: block;
margin-top: var(--hd-space-sm);
padding-top: 0;
font-size: 0.875rem;
font-style: normal;
font-weight: 600;
color: var(--hd-gold-dark);
} .container {
width: 100%;
max-width: var(--hd-container);
margin-left: auto;
margin-right: auto;
padding-left: var(--hd-gutter);
padding-right: var(--hd-gutter);
}
.container--wide {
max-width: var(--hd-container-wide);
} .btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: var(--hd-space-sm);
padding: 12px 28px;
font-family: var(--hd-font-body);
font-size: 0.9375rem;
font-weight: 600;
line-height: 1.4;
border: 2px solid transparent;
border-radius: var(--hd-radius-full);
cursor: pointer;
transition: var(--hd-transition);
text-decoration: none;
white-space: nowrap;
}
.btn:focus-visible {
outline: 2px solid var(--hd-gold);
outline-offset: 3px;
}
.btn--primary {
background: linear-gradient(135deg, var(--hd-gold), var(--hd-gold-dark));
color: var(--hd-white);
box-shadow: var(--hd-shadow-gold);
}
.btn--primary:hover {
background: linear-gradient(135deg, var(--hd-gold-light), var(--hd-gold));
color: var(--hd-white);
transform: translateY(-2px);
box-shadow: 0 6px 25px rgba(184, 134, 11, 0.3);
}
.btn--secondary {
background: transparent;
color: var(--hd-gold-dark);
border-color: var(--hd-gold);
}
.btn--secondary:hover {
background: var(--hd-gold);
color: var(--hd-white);
}
.btn--white {
background: var(--hd-white);
color: var(--hd-gold-dark);
box-shadow: var(--hd-shadow-md);
}
.btn--white:hover {
background: var(--hd-gold-pale);
transform: translateY(-2px);
}
.btn--lg {
padding: 16px 36px;
font-size: 1.0625rem;
} .wp-block-button.hd-btn-primary .wp-block-button__link {
background: linear-gradient(135deg, var(--hd-gold), var(--hd-gold-dark));
color: var(--hd-white);
border: none;
border-radius: var(--hd-radius-full);
padding: 16px 36px;
font-weight: 600;
font-size: 0.9375rem;
text-decoration: none;
transition: var(--hd-transition);
box-shadow: var(--hd-shadow-gold);
}
.wp-block-button.hd-btn-primary .wp-block-button__link:hover {
background: linear-gradient(135deg, var(--hd-gold-light), var(--hd-gold));
transform: translateY(-2px);
box-shadow: 0 6px 25px rgba(184, 134, 11, 0.3);
}
.wp-block-button.hd-btn-secondary .wp-block-button__link {
background: transparent;
color: var(--hd-gold-dark);
border: 2px solid var(--hd-gold);
border-radius: var(--hd-radius-full);
padding: 14px 36px;
font-weight: 600;
font-size: 0.9375rem;
text-decoration: none;
transition: var(--hd-transition);
}
.wp-block-button.hd-btn-secondary .wp-block-button__link:hover {
background: var(--hd-gold);
color: var(--hd-white);
} .cta-banner--gold .wp-block-button.hd-btn-primary .wp-block-button__link {
background: var(--hd-white);
color: var(--hd-gold-dark);
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.cta-banner--gold .wp-block-button.hd-btn-primary .wp-block-button__link:hover {
background: var(--hd-cream);
transform: translateY(-2px);
box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}
.cta-banner--gold .wp-block-button.hd-btn-secondary .wp-block-button__link {
background: transparent;
color: var(--hd-white);
border-color: rgba(255, 255, 255, 0.5);
}
.cta-banner--gold .wp-block-button.hd-btn-secondary .wp-block-button__link:hover {
background: rgba(255, 255, 255, 0.15);
border-color: var(--hd-white);
color: var(--hd-white);
} .site-header {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 1000;
transition: var(--hd-transition-slow);
padding: var(--hd-space-md) 0;
}
.site-header--transparent {
background: transparent;
}
.site-header--scrolled {
background: rgba(255, 251, 240, 0.95);
backdrop-filter: blur(12px);
box-shadow: 0 1px 8px rgba(139, 101, 8, 0.08);
padding: var(--hd-space-sm) 0;
}
.header__inner {
display: flex;
align-items: center;
justify-content: space-between;
}
.header__logo {
display: flex;
align-items: center;
gap: var(--hd-space-sm);
}
.header__logo-text {
font-family: var(--hd-font-heading);
font-size: 1.5rem;
font-weight: 700;
color: var(--hd-text-primary);
letter-spacing: -0.01em;
}
.site-header--transparent .header__logo .header__logo-text,
.site-header--transparent .header__logo-text {
color: var(--hd-white);
}
.site-header--scrolled .header__logo .header__logo-text,
.site-header--scrolled .header__logo-text {
color: var(--hd-text-primary);
}
.site-header--transparent .nav-toggle__bar {
background: var(--hd-white);
}
.header__logo-accent {
color: var(--hd-gold-light);
} .nav {
display: flex;
align-items: center;
gap: var(--hd-space-xs);
}
.nav__list {
display: flex;
list-style: none;
gap: var(--hd-space-xs);
align-items: center;
}
.nav__link {
display: block;
padding: 8px 16px;
font-size: 0.9375rem;
font-weight: 500;
color: var(--hd-text-secondary);
border-radius: var(--hd-radius-full);
transition: var(--hd-transition);
}
.site-header--transparent .nav__list .nav__link,
.site-header--transparent a.nav__link {
color: rgba(255, 255, 255, 0.9);
}
.site-header--scrolled .nav__list .nav__link,
.site-header--scrolled a.nav__link {
color: var(--hd-text-secondary);
}
.nav__link:hover,
.nav__item--active .nav__link {
color: var(--hd-gold);
background: var(--hd-gold-pale);
}
.site-header--transparent .nav__list .nav__link:hover,
.site-header--transparent .nav__item--active .nav__link,
.site-header--transparent .current-menu-item .nav__link {
color: var(--hd-gold-light);
background: rgba(255, 255, 255, 0.12);
} .site-header--transparent .nav__cta .btn--primary {
background: linear-gradient(135deg, var(--hd-gold), var(--hd-gold-dark));
color: var(--hd-white);
} .nav__lang {
display: flex;
align-items: center;
gap: 2px;
margin-left: var(--hd-space-sm);
border: 1px solid var(--hd-border);
border-radius: var(--hd-radius-full);
overflow: hidden;
}
.nav__lang-item {
padding: 5px 10px;
font-size: 0.75rem;
font-weight: 700;
letter-spacing: 0.03em;
text-decoration: none;
color: var(--hd-text-muted);
transition: var(--hd-transition);
}
.nav__lang-item--active {
background: var(--hd-gold);
color: var(--hd-white);
}
.nav__lang-item:hover:not(.nav__lang-item--active) {
color: var(--hd-gold-dark);
background: var(--hd-gold-pale);
}
.site-header--transparent .nav__lang {
border-color: rgba(255, 255, 255, 0.25);
}
.site-header--transparent .nav__lang-item {
color: rgba(255, 255, 255, 0.7);
}
.site-header--transparent .nav__lang-item--active {
background: var(--hd-gold);
color: var(--hd-white);
}
.site-header--transparent .nav__lang-item:hover:not(.nav__lang-item--active) {
color: var(--hd-white);
background: rgba(255, 255, 255, 0.12);
}
.nav__cta {
margin-left: var(--hd-space-sm);
} .nav-toggle {
display: none;
flex-direction: column;
gap: 5px;
background: none;
border: none;
cursor: pointer;
padding: var(--hd-space-sm);
z-index: 1001;
}
.nav-toggle__bar {
width: 24px;
height: 2px;
background: var(--hd-text-primary);
border-radius: 2px;
transition: var(--hd-transition);
}
.site-header--transparent .nav-toggle__bar {
background: var(--hd-white);
} .hero {
position: relative;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
background-color: #2D2A26;
} .hero__bg {
position: absolute;
inset: 0;
z-index: 1;
overflow: hidden;
}
.hero__bg-img {
width: 100%;
height: 100%;
object-fit: cover;
animation: kenBurns 25s ease-in-out infinite alternate;
will-change: transform;
}
@keyframes kenBurns {
0%   { transform: scale(1) translate(0, 0); }
100% { transform: scale(1.12) translate(-1.5%, -1%); }
}
.hero__overlay {
position: absolute;
inset: 0;
background: linear-gradient(
180deg,
rgba(45, 42, 38, 0.5) 0%,
rgba(45, 42, 38, 0.25) 40%,
rgba(45, 42, 38, 0.7) 100%
);
z-index: 2;
} .hero__particles {
position: absolute;
inset: 0;
z-index: 3;
pointer-events: none;
overflow: hidden;
}
.hero__particle {
position: absolute;
width: 3px;
height: 3px;
background: radial-gradient(circle, var(--hd-gold-lighter), transparent);
border-radius: 50%;
opacity: 0;
animation: particleFloat linear infinite;
}
.hero__particle:nth-child(1) { left: 10%; animation-duration: 12s; animation-delay: 0s; }
.hero__particle:nth-child(2) { left: 25%; animation-duration: 15s; animation-delay: 2s; width: 2px; height: 2px; }
.hero__particle:nth-child(3) { left: 40%; animation-duration: 11s; animation-delay: 4s; }
.hero__particle:nth-child(4) { left: 55%; animation-duration: 14s; animation-delay: 1s; width: 4px; height: 4px; }
.hero__particle:nth-child(5) { left: 70%; animation-duration: 13s; animation-delay: 3s; width: 2px; height: 2px; }
.hero__particle:nth-child(6) { left: 85%; animation-duration: 16s; animation-delay: 5s; }
.hero__particle:nth-child(7) { left: 33%; animation-duration: 10s; animation-delay: 6s; width: 4px; height: 4px; }
.hero__particle:nth-child(8) { left: 65%; animation-duration: 12s; animation-delay: 8s; }
@keyframes particleFloat {
0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
10%  { opacity: 0.6; }
90%  { opacity: 0.6; }
100% { transform: translateY(-20vh) rotate(180deg); opacity: 0; }
} .hero__gold-frame {
position: absolute;
inset: 16px 16px 40px;
z-index: 3;
pointer-events: none;
}
.hero__gold-corner {
position: absolute;
width: 120px;
height: 120px;
opacity: 0;
animation: cornerFadeIn 1.2s ease forwards;
}
.hero__gold-corner--tl { top: 0; left: 0; animation-delay: 0.5s; }
.hero__gold-corner--tr { top: 0; right: 0; animation-delay: 0.7s; }
.hero__gold-corner--bl { bottom: 0; left: 0; animation-delay: 0.9s; }
.hero__gold-corner--br { bottom: 0; right: 0; animation-delay: 1.1s; }
.hero__gold-corner svg {
width: 100%;
height: 100%;
filter: drop-shadow(0 0 6px rgba(212, 168, 67, 0.3));
}
@keyframes cornerFadeIn {
from { opacity: 0; transform: scale(0.8); }
to   { opacity: 0.7; transform: scale(1); }
} .hero__gold-line {
position: absolute;
left: 120px;
right: 120px;
height: 1px;
background: linear-gradient(90deg, var(--hd-gold-light), transparent 15%, transparent 85%, var(--hd-gold-light));
opacity: 0;
animation: lineFadeIn 1.5s ease 1.3s forwards;
}
.hero__gold-line--top { top: 0; }
.hero__gold-line--bottom { bottom: 0; }
@keyframes lineFadeIn {
from { opacity: 0; }
to   { opacity: 0.25; }
} .hero__content {
position: relative;
z-index: 4;
text-align: center;
padding: var(--hd-space-4xl) var(--hd-gutter);
max-width: 800px;
}
.hero__badge,
.hero__title,
.hero__ornament,
.hero__subtitle,
.hero__actions {
opacity: 0;
transform: translateY(20px);
animation: heroEntrance 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero__badge     { animation-delay: 0.3s; }
.hero__title     { animation-delay: 0.5s; }
.hero__ornament  { animation-delay: 0.7s; }
.hero__subtitle  { animation-delay: 0.9s; }
.hero__actions   { animation-delay: 1.1s; }
@keyframes heroEntrance {
to {
opacity: 1;
transform: translateY(0);
}
}
.hero__badge {
display: inline-flex;
align-items: center;
gap: var(--hd-space-sm);
padding: 6px 20px;
background: rgba(184, 134, 11, 0.2);
border: 1px solid rgba(212, 168, 67, 0.4);
border-radius: var(--hd-radius-full);
color: var(--hd-gold-lighter);
font-size: 0.8125rem;
font-weight: 600;
letter-spacing: 0.08em;
text-transform: uppercase;
margin-bottom: var(--hd-space-lg);
backdrop-filter: blur(4px);
}
.hero__title {
font-family: var(--hd-font-heading);
font-size: clamp(2.5rem, 6vw, 4.5rem);
font-weight: 800;
color: var(--hd-white);
line-height: 1.1;
margin-bottom: var(--hd-space-md);
}
.hero__title-gold {
font-style: italic;
background: linear-gradient(135deg, var(--hd-gold-lighter), var(--hd-gold-light), var(--hd-gold-lighter));
background-size: 200% auto;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
animation: heroEntrance 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards,
goldShimmer 4s ease 1.5s infinite;
}
@keyframes goldShimmer {
0%   { background-position: 0% center; }
50%  { background-position: 200% center; }
100% { background-position: 0% center; }
} .hero__ornament {
display: flex;
align-items: center;
justify-content: center;
gap: var(--hd-space-sm);
margin-bottom: var(--hd-space-lg);
color: var(--hd-gold-light);
}
.hero__ornament-line {
display: block;
width: 50px;
height: 1px;
background: linear-gradient(90deg, transparent, var(--hd-gold-light), transparent);
}
.hero__subtitle {
font-size: clamp(1rem, 2vw, 1.25rem);
color: rgba(255, 255, 255, 0.8);
line-height: 1.7;
margin-bottom: var(--hd-space-xl);
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
.hero__actions {
display: flex;
gap: var(--hd-space-md);
justify-content: center;
flex-wrap: wrap;
}
.hero__scroll-hint {
position: absolute;
bottom: var(--hd-space-xl);
left: 50%;
transform: translateX(-50%);
z-index: 3;
display: flex;
flex-direction: column;
align-items: center;
gap: var(--hd-space-sm);
color: rgba(255, 255, 255, 0.5);
font-size: 0.75rem;
letter-spacing: 0.1em;
text-transform: uppercase;
animation: bounceDown 2s ease infinite;
}
.hero__scroll-line {
width: 1px;
height: 40px;
background: linear-gradient(to bottom, rgba(212, 168, 67, 0.6), transparent);
}
@keyframes bounceDown {
0%, 100% { transform: translateX(-50%) translateY(0); }
50% { transform: translateX(-50%) translateY(8px); }
} .hd-archive__divider {
display: flex;
align-items: center;
justify-content: center;
gap: 0;
margin: var(--hd-space-lg) 0;
}
.hd-archive__divider-wing {
flex: 1;
max-width: 200px;
height: 1px;
background: linear-gradient(90deg, transparent, rgba(212, 168, 67, 0.4));
}
.hd-archive__divider-wing:last-child {
background: linear-gradient(90deg, rgba(212, 168, 67, 0.4), transparent);
}
.hd-archive__divider-diamond {
width: 8px;
height: 8px;
background: var(--hd-gold-light);
transform: rotate(45deg);
flex-shrink: 0;
box-shadow: 0 0 12px rgba(212, 168, 67, 0.4);
animation: diamondPulse 3s ease-in-out infinite;
}
@keyframes diamondPulse {
0%, 100% { box-shadow: 0 0 12px rgba(212, 168, 67, 0.4); }
50%      { box-shadow: 0 0 24px rgba(212, 168, 67, 0.7), 0 0 6px rgba(212, 168, 67, 0.9); }
} .front-page-content {
padding-left: var(--hd-gutter);
padding-right: var(--hd-gutter);
}
.section__intro {
max-width: 700px;
margin: var(--hd-space-2xl) auto var(--hd-space-xl);
font-size: 1.0625rem;
line-height: 1.8;
color: var(--hd-text-secondary);
}
.section {
padding: var(--hd-space-4xl) var(--hd-gutter);
}
.section--cream {
background: var(--hd-cream);
}
.section--white {
background: var(--hd-white);
}
.section--gold-pale {
background: var(--hd-gold-pale);
}
.section__header {
text-align: center;
margin-bottom: var(--hd-space-3xl);
}
.section__overline {
display: inline-block;
font-size: 0.8125rem;
font-weight: 600;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--hd-gold);
margin-bottom: var(--hd-space-sm);
}
.section__title {
margin-bottom: var(--hd-space-md);
}
.section__description {
font-size: 1.0625rem;
color: var(--hd-text-secondary);
max-width: 600px;
margin-left: auto;
margin-right: auto;
} .trip-types-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: var(--hd-space-lg);
} .trip-types-grid--magazine {
grid-template-columns: 1fr 1fr;
grid-template-rows: auto auto;
gap: var(--hd-space-lg);
}
.trip-types-grid--magazine .trip-type-overlay--featured {
grid-row: 1 / 3;
aspect-ratio: auto;
min-height: 500px;
}
.trip-types-grid--magazine .trip-type-overlay:not(.trip-type-overlay--featured) {
aspect-ratio: 16 / 9;
} .trips-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: var(--hd-space-lg);
}
.trip-card {
background: var(--hd-card);
border-radius: var(--hd-radius-lg);
overflow: hidden;
box-shadow: var(--hd-shadow-sm);
transition: var(--hd-transition-slow);
border: 1px solid var(--hd-border);
}
.trip-card:hover {
transform: translateY(-4px);
box-shadow: var(--hd-shadow-lg);
border-color: var(--hd-gold-lighter);
}
.trip-card__image {
position: relative;
aspect-ratio: 16 / 10;
overflow: hidden;
}
.trip-card__image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.trip-card:hover .trip-card__image img {
transform: scale(1.05);
}
.trip-card__badge {
position: absolute;
top: var(--hd-space-md);
left: var(--hd-space-md);
padding: 4px 14px;
background: var(--hd-gold);
color: var(--hd-white);
font-size: 0.75rem;
font-weight: 600;
border-radius: var(--hd-radius-full);
text-transform: uppercase;
letter-spacing: 0.05em;
}
.trip-card__wishlist {
position: absolute;
top: var(--hd-space-md);
right: var(--hd-space-md);
width: 36px;
height: 36px;
background: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(4px);
border: none;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: var(--hd-transition);
}
.trip-card__wishlist:hover {
background: var(--hd-white);
transform: scale(1.1);
}
.trip-card__wishlist svg {
width: 18px;
height: 18px;
color: var(--hd-text-muted);
}
.trip-card__body {
padding: var(--hd-space-lg);
}
.trip-card__meta {
display: flex;
align-items: center;
gap: var(--hd-space-md);
margin-bottom: var(--hd-space-sm);
font-size: 0.8125rem;
color: var(--hd-text-muted);
}
.trip-card__meta-item {
display: flex;
align-items: center;
gap: 4px;
}
.trip-card__meta-item svg {
width: 14px;
height: 14px;
color: var(--hd-gold);
}
.trip-card__title {
font-family: var(--hd-font-heading);
font-size: 1.25rem;
font-weight: 600;
margin-bottom: var(--hd-space-sm);
}
.trip-card__title a {
color: var(--hd-text-primary);
}
.trip-card__title a:hover {
color: var(--hd-gold);
}
.trip-card__excerpt {
font-size: 0.9375rem;
color: var(--hd-text-secondary);
line-height: 1.6;
margin-bottom: var(--hd-space-md);
}
.trip-card__footer {
display: flex;
align-items: center;
justify-content: space-between;
padding-top: var(--hd-space-md);
border-top: 1px solid var(--hd-border);
}
.trip-card__price {
font-size: 0.8125rem;
color: var(--hd-text-muted);
}
.trip-card__price strong {
display: block;
font-family: var(--hd-font-heading);
font-size: 1.375rem;
font-weight: 700;
color: var(--hd-gold-dark);
}
.trip-card__book {
padding: 8px 20px;
font-size: 0.8125rem;
} .trip-type-overlay {
position: relative;
display: block;
border-radius: var(--hd-radius-lg);
overflow: hidden;
aspect-ratio: 5 / 4;
text-decoration: none;
color: var(--hd-white);
background: #2D2A26;
transition: var(--hd-transition-slow);
}
.trip-type-overlay:hover {
transform: translateY(-6px);
box-shadow: var(--hd-shadow-xl);
color: var(--hd-white);
}
.trip-type-overlay__img {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.trip-type-overlay:hover .trip-type-overlay__img {
transform: scale(1.06);
}
.trip-type-overlay__gradient {
position: absolute;
inset: 0;
background: linear-gradient(
180deg,
rgba(45, 42, 38, 0.1) 0%,
rgba(45, 42, 38, 0.35) 40%,
rgba(45, 42, 38, 0.92) 100%
);
z-index: 2;
}
.trip-type-overlay__count {
position: absolute;
top: var(--hd-space-md);
right: var(--hd-space-md);
z-index: 3;
padding: 4px 12px;
background: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(8px);
border-radius: var(--hd-radius-full);
font-size: 0.8125rem;
font-weight: 600;
color: var(--hd-gold-dark);
}
.trip-type-overlay__content {
position: absolute;
bottom: 0;
left: 0;
right: 0;
z-index: 3;
padding: var(--hd-space-xl);
}
.trip-type-overlay__title {
font-family: var(--hd-font-heading);
font-size: 1.5rem;
font-weight: 700;
color: var(--hd-white);
margin: 0 0 var(--hd-space-xs);
line-height: 1.2;
}
.trip-type-overlay__desc {
font-size: 0.875rem;
color: rgba(255, 255, 255, 0.75);
line-height: 1.5;
margin: 0 0 var(--hd-space-md);
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.trip-type-overlay__cta {
display: inline-flex;
align-items: center;
gap: 6px;
font-size: 0.875rem;
font-weight: 600;
color: var(--hd-gold-light);
transition: var(--hd-transition);
}
.trip-type-overlay:hover .trip-type-overlay__cta {
gap: 10px;
} .trip-type-overlay__gold-accent {
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 3px;
background: linear-gradient(90deg, transparent, var(--hd-gold-light), var(--hd-gold), var(--hd-gold-light), transparent);
z-index: 4;
opacity: 0;
transition: opacity 0.3s ease;
}
.trip-type-overlay:hover .trip-type-overlay__gold-accent {
opacity: 1;
} .trip-card-overlay {
position: relative;
display: block;
border-radius: var(--hd-radius-lg);
overflow: hidden;
aspect-ratio: 4 / 3;
text-decoration: none;
color: var(--hd-white);
transition: var(--hd-transition-slow);
}
.trip-card-overlay:hover {
transform: translateY(-6px);
box-shadow: var(--hd-shadow-xl);
color: var(--hd-white);
}
.trip-card-overlay__img {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.trip-card-overlay:hover .trip-card-overlay__img {
transform: scale(1.06);
}
.trip-card-overlay__gradient {
position: absolute;
inset: 0;
background: linear-gradient(
180deg,
rgba(45, 42, 38, 0.1) 0%,
rgba(45, 42, 38, 0.35) 40%,
rgba(45, 42, 38, 0.92) 100%
);
z-index: 2;
}
.trip-card-overlay__badge {
position: absolute;
top: var(--hd-space-md);
left: var(--hd-space-md);
z-index: 3;
padding: 4px 14px;
background: rgba(184, 134, 11, 0.85);
backdrop-filter: blur(4px);
color: var(--hd-white);
font-size: 0.6875rem;
font-weight: 700;
letter-spacing: 0.05em;
text-transform: uppercase;
border-radius: var(--hd-radius-full);
}
.trip-card-overlay__content {
position: absolute;
bottom: 0;
left: 0;
right: 0;
z-index: 3;
padding: var(--hd-space-xl);
}
.trip-card-overlay__title {
font-family: var(--hd-font-heading);
font-size: 1.375rem;
font-weight: 700;
color: var(--hd-white);
margin: 0 0 var(--hd-space-sm);
line-height: 1.25;
}
.trip-card-overlay__meta {
display: flex;
align-items: center;
justify-content: space-between;
}
.trip-card-overlay__price {
font-family: var(--hd-font-heading);
font-size: 1.25rem;
font-weight: 700;
color: var(--hd-gold-light);
}
.trip-card-overlay__cta {
display: inline-flex;
align-items: center;
gap: 6px;
font-size: 0.875rem;
font-weight: 600;
color: rgba(255, 255, 255, 0.8);
transition: var(--hd-transition);
}
.trip-card-overlay:hover .trip-card-overlay__cta {
gap: 10px;
color: var(--hd-gold-light);
} .trip-card-overlay__gold-border {
position: absolute;
inset: 0;
z-index: 4;
border: 2px solid transparent;
border-radius: var(--hd-radius-lg);
transition: border-color 0.3s ease, box-shadow 0.3s ease;
pointer-events: none;
}
.trip-card-overlay:hover .trip-card-overlay__gold-border {
border-color: rgba(212, 168, 67, 0.5);
box-shadow: inset 0 0 30px rgba(184, 134, 11, 0.1);
} .section--cta-gold {
background: var(--hd-cream);
}
.cta-banner {
position: relative;
border-radius: var(--hd-radius-xl);
overflow: hidden;
background: linear-gradient(135deg, #2D2A26, #4A3F2F);
padding: var(--hd-space-4xl) var(--hd-space-2xl);
text-align: center;
}
.cta-banner--gold {
background: linear-gradient(135deg, var(--hd-gold-dark), var(--hd-gold), var(--hd-gold-dark));
box-shadow: 0 8px 40px rgba(184, 134, 11, 0.25);
}
.cta-banner__pattern {
position: absolute;
inset: 0;
opacity: 0.1;
background-image: radial-gradient(circle at 20% 50%, var(--hd-white) 1px, transparent 1px),
radial-gradient(circle at 80% 50%, var(--hd-white) 1px, transparent 1px);
background-size: 60px 60px;
}
.cta-banner__gold-glow {
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
pointer-events: none;
}
.cta-banner__content {
position: relative;
z-index: 2;
max-width: 600px;
margin: 0 auto;
} .cta-banner__ornament {
display: flex;
align-items: center;
justify-content: center;
gap: var(--hd-space-sm);
margin-bottom: var(--hd-space-lg);
color: rgba(255, 255, 255, 0.7);
}
.cta-banner__ornament-line {
display: block;
width: 40px;
height: 1px;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}
.cta-banner__title {
font-family: var(--hd-font-heading);
font-size: clamp(1.75rem, 4vw, 2.5rem);
color: var(--hd-white);
margin-bottom: var(--hd-space-md);
}
.cta-banner--gold .cta-banner__title em {
font-style: italic;
color: var(--hd-white);
text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.cta-banner__text {
color: rgba(255, 255, 255, 0.85);
margin-bottom: var(--hd-space-xl);
font-size: 1.0625rem;
} .cta-banner--gold .cta-banner__btn-primary {
background: var(--hd-white);
color: var(--hd-gold-dark);
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.cta-banner--gold .cta-banner__btn-primary:hover {
background: var(--hd-cream);
color: var(--hd-gold-dark);
transform: translateY(-2px);
box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}
.cta-banner--gold .cta-banner__btn-secondary {
border-color: rgba(255, 255, 255, 0.5);
color: var(--hd-white);
}
.cta-banner--gold .cta-banner__btn-secondary:hover {
background: rgba(255, 255, 255, 0.15);
border-color: var(--hd-white);
color: var(--hd-white);
} .site-footer {
background: var(--hd-text-primary);
color: rgba(255, 255, 255, 0.7);
padding: var(--hd-space-3xl) 0 var(--hd-space-xl);
}
.footer__grid {
display: grid;
grid-template-columns: 1.5fr 1fr 1fr 1fr;
gap: var(--hd-space-2xl);
margin-bottom: var(--hd-space-2xl);
}
.footer__brand-desc {
font-size: 0.9375rem;
line-height: 1.7;
margin-bottom: var(--hd-space-lg);
}
.footer__social {
display: flex;
gap: var(--hd-space-sm);
}
.footer__social-link {
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
background: rgba(255, 255, 255, 0.08);
border-radius: 50%;
color: rgba(255, 255, 255, 0.6);
transition: var(--hd-transition);
}
.footer__social-link:hover {
background: var(--hd-gold);
color: var(--hd-white);
}
.footer__social-link svg {
width: 18px;
height: 18px;
}
.footer__heading {
font-family: var(--hd-font-heading);
font-size: 1.0625rem;
font-weight: 600;
color: var(--hd-white);
margin-bottom: var(--hd-space-lg);
}
.footer__links {
list-style: none;
display: flex;
flex-direction: column;
gap: var(--hd-space-sm);
}
.footer__links a {
color: rgba(255, 255, 255, 0.6);
font-size: 0.9375rem;
transition: var(--hd-transition);
}
.footer__links a:hover {
color: var(--hd-gold-light);
}
.footer__contact-item {
display: flex;
align-items: center;
gap: var(--hd-space-sm);
margin-bottom: var(--hd-space-sm);
font-size: 0.9375rem;
}
.footer__contact-item svg {
width: 16px;
height: 16px;
color: var(--hd-gold);
flex-shrink: 0;
}
.footer__bottom {
padding-top: var(--hd-space-xl);
border-top: 1px solid rgba(255, 255, 255, 0.1);
display: flex;
align-items: center;
justify-content: space-between;
font-size: 0.8125rem;
}  body:not(.happydays-home):not(.page-template-page-minust):not(.page-template-page-kontakt):not(.single-tripzzy):not(.post-type-archive-tripzzy):not(.tax-tripzzy_trip_type):not(.tax-tripzzy_trip_destination):not(.tax-tripzzy_trip_activities) .site-main,
body:not(.happydays-home):not(.page-template-page-minust):not(.page-template-page-kontakt):not(.single-tripzzy):not(.post-type-archive-tripzzy):not(.tax-tripzzy_trip_type):not(.tax-tripzzy_trip_destination):not(.tax-tripzzy_trip_activities) main {
padding-top: 120px;
} .hd-bank-details {
margin-top: var(--hd-space-md);
}
.hd-bank-details__title {
font-family: var(--hd-font-heading);
font-size: 1rem;
font-weight: 700;
margin: 0 0 var(--hd-space-md);
}
.hd-bank-details__card {
background: var(--hd-white);
border: 1px solid var(--hd-border);
border-radius: var(--hd-radius-md);
overflow: hidden;
margin-bottom: var(--hd-space-sm);
}
.hd-bank-details__row {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px var(--hd-space-md);
border-bottom: 1px solid var(--hd-border);
}
.hd-bank-details__row:last-child {
border-bottom: none;
}
.hd-bank-details__label {
font-size: 0.8125rem;
color: var(--hd-text-muted);
font-weight: 500;
}
.hd-bank-details__value {
font-weight: 600;
color: var(--hd-text-primary);
text-align: right;
}
.hd-bank-details__value--mono {
font-family: 'SF Mono', 'Consolas', 'Monaco', monospace;
letter-spacing: 0.03em;
font-size: 0.9375rem;
} body.tripzzy-checkout-page table,
body.tripzzy-checkout-page .tripzzy-bank-transfer-details,
.tripzzy-payment-options-wrapper table,
.tripzzy-form-field-wrapper table {
display: none !important;
} .gold-divider {
width: 60px;
height: 3px;
background: linear-gradient(90deg, var(--hd-gold), var(--hd-gold-light));
border-radius: 2px;
margin: var(--hd-space-md) auto;
} .reveal {
opacity: 0;
transform: translateY(24px);
transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal--visible {
opacity: 1;
transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
.reveal {
opacity: 1;
transform: none;
transition: none;
}
.hero__scroll-hint {
animation: none;
}
.hero__title-gold {
animation: none;
background-size: 100% auto;
}
.hero__bg-img {
animation: none;
}
.hero__particle {
animation: none;
display: none;
}
.hero__badge,
.hero__title,
.hero__ornament,
.hero__subtitle,
.hero__actions {
opacity: 1;
transform: none;
animation: none;
}
.hero__gold-corner {
opacity: 0.7;
animation: none;
}
.hero__gold-line {
opacity: 0.25;
animation: none;
}
} @media (max-width: 1024px) {
.trip-types-grid,
.trips-grid {
grid-template-columns: repeat(2, 1fr);
}
.trip-types-grid--magazine {
grid-template-columns: 1fr 1fr;
}
.trip-types-grid--magazine .trip-type-overlay--featured {
min-height: 400px;
}
.footer__grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 1024px) {
:root {
--hd-gutter: 20px;
}
.nav-toggle {
display: flex;
}
.nav {
position: fixed;
top: 0;
right: -100%;
width: 300px;
height: 100vh;
background: var(--hd-cream);
flex-direction: column;
align-items: flex-start;
padding: 80px var(--hd-space-xl) var(--hd-space-xl);
box-shadow: var(--hd-shadow-xl);
transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
z-index: 999;
}
.nav--open {
right: 0;
}
.nav__list {
flex-direction: column;
width: 100%;
gap: var(--hd-space-xs);
} .nav__link,
.nav .nav__list .nav__link,
.site-header--transparent .nav__list .nav__link,
.site-header--transparent a.nav__link {
width: 100%;
padding: 12px 16px;
font-size: 1rem;
color: var(--hd-text-primary) !important;
border-radius: var(--hd-radius-md);
background: transparent !important;
}
.nav__link:hover,
.nav__item--active .nav__link,
.current-menu-item .nav__link {
background: var(--hd-gold-pale) !important;
color: var(--hd-gold-dark) !important;
}
.nav__cta {
margin-left: 0;
margin-top: var(--hd-space-md);
width: 100%;
}
.nav__cta .btn {
width: 100%;
} .nav-toggle__bar {
background: var(--hd-text-primary) !important;
}
.site-header--transparent .nav-toggle__bar {
background: var(--hd-white) !important;
}
.site-header--scrolled .nav-toggle__bar {
background: var(--hd-text-primary) !important;
} .nav-is-open .nav-toggle__bar {
background: var(--hd-text-primary) !important;
}
.nav--open .nav__lang {
border-color: var(--hd-border) !important;
}
.nav--open .nav__lang-item {
color: var(--hd-text-secondary) !important;
}
.nav--open .nav__lang-item--active {
background: var(--hd-gold) !important;
color: var(--hd-white) !important;
}
.nav--open .nav__lang-item:hover:not(.nav__lang-item--active) {
color: var(--hd-gold-dark) !important;
background: var(--hd-gold-pale) !important;
}
.nav-overlay {
display: none;
position: fixed;
inset: 0;
background: rgba(45, 42, 38, 0.4);
z-index: 998;
}
.nav-overlay--visible {
display: block;
}
.trip-types-grid,
.trips-grid {
grid-template-columns: 1fr;
} .trip-types-grid--magazine {
grid-template-columns: 1fr;
grid-template-rows: auto;
}
.trip-types-grid--magazine .trip-type-overlay--featured {
grid-row: auto;
min-height: auto;
aspect-ratio: 5 / 4;
}
.trip-types-grid--magazine .trip-type-overlay:not(.trip-type-overlay--featured) {
aspect-ratio: 5 / 4;
} .hero__gold-frame {
inset: 10px 10px 30px;
}
.hero__gold-corner {
width: 70px;
height: 70px;
}
.hero__gold-line {
left: 70px;
right: 70px;
}
.footer__grid {
grid-template-columns: 1fr;
gap: var(--hd-space-xl);
}
.footer__bottom {
flex-direction: column;
gap: var(--hd-space-sm);
text-align: center;
}
.hero__content {
padding-left: var(--hd-space-md);
padding-right: var(--hd-space-md);
}
.section {
padding: var(--hd-space-3xl) 0;
}
}
@media (max-width: 375px) {
.hero__actions {
flex-direction: column;
align-items: center;
}
.hero__actions .btn {
width: 100%;
}
}