Files
ODOO4projects.com/style.css
T
reef a2cfa09558 pricing: remove monthly/yearly billing toggle, default to yearly
- Remove billing-toggle-wrap HTML (switch + labels)
- Update all 4 pricing cards to show yearly prices by default
  with / year period and save percentage
- Simplify openOrderWidget() to always use yearly pricing only
- Remove billing toggle JS block (updatePrices, setBilling, event listeners)
- Remove billing toggle CSS (billing-toggle-wrap, .toggle-*, .toggle-switch)
- Update order widget default display to / year
- Update CTA note to 'Save money, less administration'
2026-08-20 10:38:03 +00:00

826 lines
25 KiB
CSS

/* =========================================================
ODOO4projects.com — The Grand Hotel Business Lounge
palette: midnight (#0d1b2e) · brass (#c9a227) · cream (#f4f0e8) · ivory (#faf7f1)
type: Marcellus (display) · Inter (body)
world: hotel concierge, global business lounge, brass plaques
========================================================= */
* { box-sizing: border-box; }
body {
margin: 0;
font-family: Inter, 'Segoe UI', sans-serif;
font-size: 1rem;
line-height: 1.6;
color: var(--ink);
background: var(--cream);
}
h1, h2, h3, h4 {
font-family: Marcellus, 'Georgia', serif;
font-weight: 400;
line-height: 1.15;
margin-top: 0;
margin-bottom: 0.5rem;
}
h1 { font-size: clamp(2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1rem; }
p { margin-top: 0; margin-bottom: 1rem; }
a { color: var(--brass-deep); text-decoration: none; }
a:hover { color: var(--brass); }
img { max-width: 100%; height: auto; vertical-align: middle; }
:root {
--midnight: #0d1b2e;
--midnight-2: #12233c;
--midnight-3: #162a45;
--brass: #c9a227;
--brass-bright: #ddb84a;
--brass-deep: #8a6f1f;
--cream: #f4f0e8;
--cream-2: #ece6da;
--ivory: #faf7f1;
--ink: #171c26;
--ink-soft: rgba(23,28,38,0.6);
--ink-faint: rgba(23,28,38,0.38);
--line: rgba(23,28,38,0.09);
--line-brass: rgba(201,162,39,0.25);
--success: #1e7a46;
--radius: 0.5rem;
--radius-lg: 1rem;
--radius-pill: 2rem;
--shadow-rest: 0 2px 8px rgba(13,27,46,0.08);
--shadow-hover: 0 12px 30px rgba(13,27,46,0.16);
--shadow-brass: 0 8px 20px rgba(201,162,39,0.25);
}
/* ---- Layout ---- */
.container { width: 86%; padding: 0 1.25rem; margin: 0 auto; max-width: 1200px; }
.text-center { text-align: center; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
/* ---- Buttons ---- */
.btn {
display: inline-block;
padding: 0.7rem 2rem;
font-family: Marcellus, Georgia, serif;
font-size: 0.9rem;
letter-spacing: 0.04em;
text-transform: uppercase;
border: 1px solid transparent;
border-radius: var(--radius);
cursor: pointer;
text-decoration: none;
transition: all 0.25s;
}
.btn-brass {
background: var(--brass);
color: var(--midnight);
border-color: var(--brass);
}
.btn-brass:hover {
background: var(--brass-bright);
border-color: var(--brass-bright);
transform: translateY(-1px);
box-shadow: var(--shadow-brass);
}
.btn-outline {
background: transparent;
color: var(--cream);
border-color: var(--line-brass);
}
.btn-outline:hover {
border-color: var(--brass);
color: var(--brass);
background: rgba(201,162,39,0.08);
}
.btn-lg { padding: 0.85rem 2.5rem; font-size: 1rem; }
/* ---- Hero ---- */
.hero {
background: var(--midnight);
padding: 4rem 0 0;
position: relative;
overflow: hidden;
min-height: 85vh;
display: flex;
flex-direction: column;
}
.hero::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(135deg, var(--midnight) 50%, rgba(13,27,46,0.4) 100%);
opacity: 0.5;
z-index: 0;
}
.hero-bg {
position: absolute;
inset: 0;
z-index: 0;
overflow: hidden;
}
.hero-bg-slide {
position: absolute;
inset: 0;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
opacity: 0.25;
filter: brightness(1.15) saturate(1.1);
}
.hero .container { position: relative; z-index: 1; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.hero-kicker {
font-family: Inter, sans-serif;
font-size: 0.72rem;
font-weight: 600;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--brass);
margin-bottom: 0.75rem;
}
.hero h1 {
color: #fff;
max-width: 700px;
margin-bottom: 1rem;
font-weight: 400;
}
.hero h1 span { color: var(--brass); }
.hero-sub {
font-size: 1.05rem;
color: rgba(255,255,255,0.7);
max-width: 560px;
line-height: 1.7;
margin-bottom: 1.5rem;
}
.hero-stats {
display: flex;
gap: 1.5rem;
margin-bottom: 2rem;
flex-wrap: wrap;
}
.hero-stat {
display: flex;
align-items: center;
gap: 0.4rem;
color: rgba(255,255,255,0.65);
font-size: 0.85rem;
}
.hero-stat i { color: var(--brass); font-size: 0.75rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
/* ---- Server Status Banner ---- */
.server-banner {
background: var(--midnight);
padding: 2rem 0 1.5rem;
border-top: 1px solid var(--line-brass);
border-bottom: 1px solid var(--line-brass);
position: relative;
overflow: hidden;
}
.server-banner::before {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(201,162,39,0.06) 0%, transparent 70%);
pointer-events: none;
}
.server-banner-header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 1.25rem;
flex-wrap: wrap;
gap: 0.5rem;
}
.server-banner-kicker {
font-family: Marcellus, Georgia, serif;
font-size: 1rem;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--brass);
}
.server-banner-status {
font-family: Inter, sans-serif;
font-size: 0.78rem;
color: rgba(255,255,255,0.55);
display: flex;
align-items: center;
gap: 0.4rem;
}
.status-dot {
width: 7px;
height: 7px;
border-radius: 50%;
background: var(--brass);
display: inline-block;
animation: statusPulse 1.2s ease-in-out infinite;
}
@keyframes statusPulse {
0%, 100% { opacity: 0.3; transform: scale(0.8); }
50% { opacity: 1; transform: scale(1.2); }
}
.server-grid {
display: grid;
grid-template-columns: repeat(6, 1fr);
gap: 0.75rem;
}
.server-card {
background: rgba(255,255,255,0.035);
border: 1px solid rgba(201,162,39,0.12);
border-radius: var(--radius);
padding: 1rem 0.75rem;
text-align: center;
transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
position: relative;
}
.server-card:hover {
background: rgba(255,255,255,0.06);
border-color: rgba(201,162,39,0.25);
}
.server-card .server-city {
font-family: Marcellus, Georgia, serif;
font-size: 1.05rem;
color: #fff;
margin-bottom: 0.15rem;
}
.server-card .server-region {
font-family: Inter, sans-serif;
font-size: 0.68rem;
color: rgba(255,255,255,0.45);
text-transform: uppercase;
letter-spacing: 0.06em;
}
.server-card.server-best {
background: rgba(201,162,39,0.1);
border-color: var(--brass);
box-shadow: 0 0 25px rgba(201,162,39,0.15), inset 0 0 25px rgba(201,162,39,0.04);
transform: translateY(-3px);
}
.server-card.server-best .server-city {
color: var(--brass-bright);
}
@media (max-width: 992px) {
.server-grid {
grid-template-columns: repeat(3, 1fr);
}
}
@media (max-width: 576px) {
.server-grid {
grid-template-columns: repeat(2, 1fr);
}
.server-banner-header {
flex-direction: column;
align-items: flex-start;
}
}
.hero-city-label {
position: absolute;
bottom: 2rem;
right: 2rem;
background: rgba(13,27,46,0.88);
border: 1px solid var(--line-brass);
border-radius: var(--radius);
padding: 0.7rem 1.25rem;
color: rgba(255,255,255,0.8);
font-family: Marcellus, Georgia, serif;
font-size: 0.9rem;
z-index: 2;
transform: translateX(150%);
white-space: nowrap;
backdrop-filter: blur(6px);
pointer-events: none;
}
.hero-city-label strong {
color: var(--brass-bright);
font-weight: 400;
}
@media (max-width: 768px) {
.hero { min-height: auto; padding: 3rem 0 0; }
.hero-actions { flex-direction: column; }
.hero-actions .btn { width: 100%; text-align: center; }
.hero-stats { gap: 0.75rem; }
.hero-city-label {
bottom: 1rem;
right: 1rem;
font-size: 0.78rem;
padding: 0.5rem 0.9rem;
}
}
/* ---- Trust Bar ---- */
.trust-bar {
background: var(--cream);
padding: 1.5rem 0;
border-bottom: 1px solid var(--line);
overflow: hidden;
}
.trust-bar .trust-label {
font-family: Inter, sans-serif;
font-size: 0.7rem;
font-weight: 600;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--ink-soft);
text-align: center;
margin-bottom: 1rem;
}
.partner-carousel-wrap { overflow: hidden; width: 100%; max-width: 1080px; margin: 0 auto; }
.partner-grid {
display: flex;
align-items: center;
gap: 3rem;
width: max-content;
animation: partnerScroll 40s linear infinite;
}
.partner-carousel-wrap:hover .partner-grid { animation-play-state: paused; }
@keyframes partnerScroll {
0% { transform: translateX(0); }
100% { transform: translateX(-50%); }
}
.partner-item {
display: flex;
align-items: center;
gap: 0.6rem;
text-decoration: none;
color: var(--ink-soft);
font-size: 0.85rem;
font-weight: 500;
white-space: nowrap;
transition: opacity 0.2s;
flex-shrink: 0;
}
.partner-item:hover { opacity: 0.7; }
.partner-item img { width: 44px; height: 44px; border-radius: 8px; object-fit: contain; }
@media (max-width: 768px) {
.partner-grid { gap: 2rem; }
.partner-item img { width: 38px; height: 38px; }
}
/* ---- Section rhythm ---- */
.section-light { background: var(--cream); padding: 3.5rem 0; }
.section-dark { background: var(--midnight); padding: 3.5rem 0; }
.section-dark h2 { color: #fff; }
.section-kicker {
font-family: Inter, sans-serif;
font-size: 0.68rem;
font-weight: 600;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--brass);
margin-bottom: 0.5rem;
text-align: center;
}
.section-title { text-align: center; margin-bottom: 2rem; color: var(--ink); }
.section-dark .section-title { color: #fff; }
/* ---- Features ---- */
.features-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.5rem;
}
.feature-card {
background: var(--ivory);
border: 1px solid var(--line);
border-radius: var(--radius-lg);
padding: 1.5rem;
text-align: center;
transition: all 0.25s;
box-shadow: var(--shadow-rest);
}
.feature-card:hover {
box-shadow: var(--shadow-hover);
transform: translateY(-3px);
}
.feature-card i {
font-size: 1.5rem;
color: var(--brass);
margin-bottom: 0.75rem;
display: inline-flex;
align-items: center;
justify-content: center;
width: 3rem;
height: 3rem;
border-radius: 50%;
background: rgba(201,162,39,0.1);
border: 1px solid var(--line-brass);
}
.feature-card h3 {
font-size: 1.05rem;
font-weight: 400;
margin-bottom: 0.35rem;
color: var(--ink);
}
.feature-card p {
font-size: 0.85rem;
color: var(--ink-soft);
line-height: 1.5;
margin-bottom: 0;
}
.feature-card-trial {
background: var(--midnight);
border: 1px solid var(--line-brass);
border-radius: var(--radius-lg);
padding: 1.5rem;
text-align: center;
transition: all 0.25s;
box-shadow: var(--shadow-rest);
display: flex;
flex-direction: column;
justify-content: center;
}
.feature-card-trial h3 {
font-family: Marcellus, Georgia, serif;
font-size: 1.05rem;
font-weight: 400;
margin-bottom: 0.35rem;
color: #fff;
}
.feature-card-trial p {
font-size: 0.8rem;
color: rgba(255,255,255,0.55);
margin-bottom: 1rem;
line-height: 1.4;
}
.trial-form {
display: flex;
flex-direction: column;
gap: 0.6rem;
}
.trial-form input,
.trial-form select {
padding: 0.6rem 0.8rem;
border-radius: var(--radius);
border: 1px solid var(--line-brass);
background: rgba(255,255,255,0.06);
color: #fff;
font-family: Inter, sans-serif;
font-size: 0.82rem;
outline: none;
transition: border-color 0.2s;
}
.trial-form input::placeholder {
color: rgba(255,255,255,0.3);
}
.trial-form input:focus,
.trial-form select:focus {
border-color: var(--brass);
background: rgba(255,255,255,0.1);
}
.trial-form select option {
background: var(--midnight);
color: #fff;
}
.trial-form .btn-brass {
padding: 0.6rem;
font-size: 0.82rem;
width: 100%;
}
.trial-success {
display: none;
font-size: 0.82rem;
color: #4ade80;
line-height: 1.4;
margin-top: 0.5rem;
}
.trial-success.visible {
display: block;
}
@media (max-width: 768px) {
.features-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 576px) {
.features-grid {
grid-template-columns: 1fr;
}
}
/* ---- FAQ ---- */
.faq-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1rem;
max-width: 900px;
margin: 0 auto;
}
.faq-card {
background: var(--ivory);
border: 1px solid var(--line);
border-radius: var(--radius-lg);
padding: 1.25rem;
cursor: pointer;
transition: all 0.25s;
box-shadow: var(--shadow-rest);
}
.faq-card:hover { box-shadow: var(--shadow-hover); }
.faq-q {
font-family: Marcellus, Georgia, serif;
font-size: 0.95rem;
color: var(--midnight);
display: flex;
justify-content: space-between;
align-items: center;
gap: 0.5rem;
}
.faq-q i {
color: var(--brass);
font-size: 0.75rem;
transition: transform 0.25s;
flex-shrink: 0;
}
.faq-card.open .faq-q i { transform: rotate(180deg); }
.faq-a {
font-size: 0.85rem;
color: var(--ink-soft);
line-height: 1.7;
max-height: 0;
overflow: hidden;
transition: max-height 0.3s, padding 0.3s;
}
.faq-card.open .faq-a {
max-height: 300px;
padding-top: 0.75rem;
}
.faq-a p:last-child { margin-bottom: 0; }
.faq-link {
display: block;
text-align: center;
margin-top: 1.5rem;
font-size: 0.85rem;
color: var(--brass-deep);
font-weight: 500;
}
@media (max-width: 768px) {
.faq-grid { grid-template-columns: 1fr; }
}
/* ---- Pricing ---- */
.pricing-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1rem;
}
.pcard {
background: var(--ivory);
border: 1px solid var(--line);
border-radius: var(--radius-lg);
overflow: hidden;
display: flex;
flex-direction: column;
transition: all 0.3s;
box-shadow: var(--shadow-rest);
}
.pcard:hover {
box-shadow: var(--shadow-hover);
transform: translateY(-4px);
}
.pcard.featured {
border: 2px solid var(--brass);
position: relative;
box-shadow: 0 8px 24px rgba(201,162,39,0.15);
}
.pcard.featured::before {
content: "Most Popular";
position: absolute;
top: 0.75rem;
right: 0.75rem;
background: var(--brass);
color: var(--midnight);
padding: 0.2rem 0.7rem;
border-radius: 2rem;
font-size: 0.6rem;
font-weight: 700;
letter-spacing: 0.04em;
text-transform: uppercase;
font-family: Inter, sans-serif;
}
.pcard-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.pcard-body h3 { font-family: Marcellus, Georgia, serif; font-size: 1.1rem; color: var(--ink); }
.pcard .price { margin: 0.5rem 0; }
.pcard .price strong { font-size: clamp(1.28rem, 2vw, 1.92rem); color: var(--midnight); }
.pcard .price small { color: var(--ink-soft); font-size: 0.82rem; }
.pcard .desc { font-size: 0.82rem; color: var(--ink-soft); min-height: 3rem; font-style: italic; }
.pcard-body ul { list-style: none; padding: 0; margin: 0; flex-grow: 1; }
.pcard li { padding: 0.4rem 0; font-size: 0.82rem; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 0.4rem; }
.pcard li:last-child { border-bottom: 0; }
.pcard .btn { margin-bottom: 0.75rem; width: 100%; box-sizing: border-box; }
.pcard-foot {
padding: 0.6rem 1.25rem;
text-align: center;
border-top: 1px solid var(--line);
font-size: 0.78rem;
color: var(--ink-soft);
}
.price-save {
font-size: 0.72rem;
font-weight: 700;
color: var(--success);
margin-top: 0.15rem;
}
.price-period { color: var(--ink-soft); font-size: 0.68rem; }
.pricing-cta-note {
text-align: center;
margin-top: 1rem;
font-size: 0.82rem;
color: rgba(255,255,255,0.5);
}
.pricing-cta-note strong { color: var(--brass); }
/* ---- Order Widget (restyled) ---- */
.ow-overlay {
position: fixed; inset: 0; z-index: 999; display: none;
background: rgba(13,27,46,0.85);
align-items: center; justify-content: center;
cursor: pointer;
}
.ow-panel {
background: var(--ivory);
border-radius: var(--radius-lg);
max-width: 460px; width: 90%;
overflow: hidden; position: relative;
cursor: default;
box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.ow-close {
position: absolute; top: 0.75rem; right: 0.75rem; z-index: 10;
background: var(--ivory);
border: 1px solid var(--line);
width: 2.8rem; height: 2.8rem;
border-radius: 50%; cursor: pointer;
font-size: 1.4rem; color: var(--ink-soft);
display: flex; align-items: center; justify-content: center;
transition: all 0.2s;
}
.ow-close:hover { background: var(--cream); color: var(--ink); }
.ow-content { padding: 2rem; }
.ow-title { font-family: Marcellus, Georgia, serif; font-size: clamp(1rem, 2vw, 1.24rem); margin-bottom: 0.5rem; color: var(--midnight); }
.ow-price { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 1rem; }
.ow-price .ow-price-amount { font-size: 1rem; font-weight: 600; color: var(--midnight); }
.ow-price .ow-price-tax { font-size: 0.72rem; color: var(--ink-faint); }
.ow-coupon-msg { font-size: 0.78rem; color: var(--success); margin-bottom: 1rem; display: none; }
.ow-yearly-save { font-size: 0.78rem; color: var(--success); margin-bottom: 1rem; display: none; }
.ow-field-label { font-size: 0.78rem; font-weight: 500; display: block; margin-bottom: 0.25rem; color: var(--ink); }
.ow-select { width: 100%; padding: 0.6rem 0.8rem; font-size: 0.85rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--ivory); color: var(--ink); margin-bottom: 1.5rem; font-family: Inter, sans-serif; cursor: pointer; transition: border-color 0.2s; }
.ow-select:focus { border-color: var(--brass); outline: none; }
.ow-coupon-row { display: flex; gap: 0.5rem; margin-bottom: 1rem; }
.ow-input { flex: 1; padding: 0.55rem 0.8rem; font-size: 0.85rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--ivory); color: var(--ink); font-family: Inter, sans-serif; transition: border-color 0.2s; }
.ow-input:focus { border-color: var(--brass); outline: none; }
.ow-btn-apply { padding: 0.55rem 1rem; font-size: 0.78rem; background: var(--brass); color: var(--midnight); border: none; border-radius: var(--radius); cursor: pointer; font-family: Inter, sans-serif; font-weight: 600; transition: all 0.2s; }
.ow-btn-apply:hover { background: var(--brass-bright); }
.ow-coupon-status { font-size: 0.75rem; margin-top: 0.3rem; display: none; }
.ow-buy { width: 100%; text-align: center; display: block; box-sizing: border-box; }
.ow-note { font-size: 0.72rem; color: var(--ink-faint); text-align: center; margin-top: 0.6rem; }
/* ---- Blog ---- */
.blog-section { padding: 3.5rem 0; }
.blog-section-light { background: var(--cream); }
.blog-section-light h2 { color: var(--ink); }
.blog-search-wrap { max-width: 500px; margin: 0 auto 2rem; }
.blog-search {
width: 100%; padding: 0.75rem 1rem;
font-size: 0.85rem; font-family: Inter, sans-serif;
background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius);
color: var(--ink); outline: none;
transition: border-color 0.2s;
}
.blog-search:focus { border-color: var(--brass); box-shadow: 0 0 0 2px rgba(201,162,39,0.15); }
.blog-search::placeholder { color: var(--ink-faint); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-bottom: 2rem; }
.blog-card {
background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius-lg);
padding: 1.25rem; display: flex; flex-direction: column;
transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
box-shadow: var(--shadow-rest);
}
.blog-card:hover {
transform: translateY(-2px);
border-color: var(--brass);
box-shadow: var(--shadow-hover);
}
.blog-card-top { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; flex-wrap: wrap; }
.blog-badge {
display: inline-block; padding: 0.2rem 0.6rem; border-radius: 3rem;
font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
font-family: Inter, sans-serif; color: var(--midnight);
}
.blog-badge-speed-run { background: #d9c4a8; }
.blog-badge-guide { background: #c9b8a2; }
.blog-badge-howto { background: #c9a227; }
.blog-badge-news { background: #c9b8a2; }
.blog-badge-default { background: #c9b8a2; }
.blog-agent {
display: inline-block; padding: 0.2rem 0.55rem; border-radius: 3rem;
font-size: 0.7rem; font-weight: 600; font-family: Inter, sans-serif;
background: rgba(201,162,39,0.15); color: var(--brass-deep);
border: 1px solid rgba(201,162,39,0.25);
}
.blog-date { font-size: 0.82rem; color: var(--ink-faint); margin-bottom: 0.4rem; }
.blog-card h3 { margin: 0 0 0.5rem; }
.blog-card h3 a { font-family: Marcellus, Georgia, serif; font-size: 1.05rem; font-weight: 400; line-height: 1.3; color: var(--ink); text-decoration: none; transition: color 0.2s; }
.blog-card h3 a:hover { color: var(--brass-deep); }
.blog-teaser { font-size: 0.85rem; color: var(--ink-soft); line-height: 1.55; margin: 0 0 1rem; flex: 1; }
.blog-readmore { font-size: 0.85rem; color: var(--brass-deep); text-decoration: none; font-weight: 500; transition: opacity 0.2s; margin-top: auto; }
.blog-readmore:hover { opacity: 0.75; }
.blog-empty { grid-column: 1 / -1; text-align: center; padding: 2rem; color: var(--ink-faint); font-size: 0.9rem; }
.blog-pagination { display: flex; align-items: center; justify-content: center; gap: 0.75rem; padding: 1rem 0; }
.blog-page-btn {
padding: 0.4rem 1rem; font-size: 0.85rem; font-family: Inter, sans-serif;
background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius);
color: var(--ink); cursor: pointer; transition: border-color 0.2s, background 0.2s;
}
.blog-page-btn:hover:not(:disabled) { border-color: var(--brass); background: rgba(201,162,39,0.08); }
.blog-page-btn:disabled { opacity: 0.3; cursor: default; }
.blog-page-info { font-size: 0.78rem; color: var(--ink-faint); }
@media (max-width: 992px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .blog-grid { grid-template-columns: 1fr; } }
/* ---- Final CTA ---- */
.final-cta {
padding: 4rem 0;
background: var(--midnight);
text-align: center;
position: relative;
overflow: hidden;
}
.final-cta::after {
content: '';
position: absolute;
inset: 0;
background: url('images/city-amsterdam.jpg') center/cover no-repeat;
opacity: 0.06;
z-index: 0;
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); color: #fff; margin-bottom: 0.75rem; }
.final-cta p { font-size: 1.05rem; color: rgba(255,255,255,0.7); max-width: 520px; margin: 0 auto 1.5rem; line-height: 1.7; }
/* ---- Footer ---- */
.footer {
background: var(--midnight);
color: rgba(255,255,255,0.8);
padding-top: 3rem;
}
.fgrid {
display: grid;
grid-template-columns: 1.5fr 3fr 3.5fr;
gap: 2rem;
padding-bottom: 2rem;
border-bottom: 1px solid var(--line-brass);
}
.footer h4 { font-family: Marcellus, Georgia, serif; color: #fff; margin-bottom: 0.8rem; font-size: 1rem; }
.footer ul { list-style: none; padding: 0; }
.footer li { margin-bottom: 0.3rem; }
.footer a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer a:hover { color: var(--brass); }
.footer p { color: rgba(255,255,255,0.65); font-size: 0.85rem; line-height: 1.7; }
.footer strong { color: #fff; }
.footer .social a {
display: inline-flex; align-items: center; justify-content: center;
width: 2.5rem; height: 2.5rem; border-radius: 50%;
background: rgba(255,255,255,0.08);
color: rgba(255,255,255,0.6);
margin-right: 0.3rem; transition: all 0.2s;
}
.footer .social a:hover { background: var(--brass); color: var(--midnight); }
.fcopy { padding: 1rem 0; text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.4); }
@media (max-width: 768px) {
.fgrid { grid-template-columns: 1fr; }
.footer { padding-bottom: 5rem; }
}
/* ---- Blog post pages (legacy dark — maintain backward compatibility) ---- */
.blog-section-dark {
background: #08080c; color: #e8e8f0; padding: 3rem 0;
}
.blog-section-dark h2 { color: #e8e8f0; }
.blog-section-dark .blog-search {
background: #1a1a2e; border-color: #2a2a4e; color: #e8e8f0;
}
.blog-section-dark .blog-search:focus { border-color: #00f5ff; box-shadow: 0 0 0 2px rgba(0,245,255,0.15); }
.blog-section-dark .blog-card { background: #12121c; border-color: #1a1a2e; }
.blog-section-dark .blog-card:hover { border-color: #00f5ff; box-shadow: 0 4px 20px rgba(0,245,255,0.08); }
.blog-section-dark .blog-card h3 a { color: #e8e8f0; }
.blog-section-dark .blog-card h3 a:hover { color: #00f5ff; }
.blog-section-dark .blog-date { color: rgba(232,232,240,0.45); }
.blog-section-dark .blog-teaser { color: rgba(232,232,240,0.65); }
.blog-section-dark .blog-readmore { color: #00f5ff; }
.blog-section-dark .blog-empty { color: rgba(232,232,240,0.5); }
.blog-section-dark .blog-agent { background: rgba(0,245,255,0.15); color: #00f5ff; border-color: rgba(0,245,255,0.25); }
.blog-section-dark .blog-page-btn { background: #12121c; border-color: #1a1a2e; color: #e8e8f0; }
.blog-section-dark .blog-page-btn:hover:not(:disabled) { border-color: #00f5ff; background: rgba(0,245,255,0.08); }
.blog-section-dark .blog-page-info { color: rgba(232,232,240,0.55); }
.blog-section-dark .blog-badge { color: #08080c; }
.blog-section-dark .blog-badge-speed-run { background: #f472b6; }
.blog-section-dark .blog-badge-guide { background: #a78bfa; }
.blog-section-dark .blog-badge-howto { background: #00f5ff; }
.blog-section-dark .blog-badge-news { background: #ffaa00; }
.blog-section-dark .blog-badge-default { background: #a78bfa; }