BOOK HERE
/* =========================
FULL WIDTH HEADER LAYOUT
========================= */
.header-layout-nav-right .header-inner,
.header-layout-nav-center .header-inner {
max-width: 100% !important;
width: 100% !important;
padding-left: 40px !important;
padding-right: 40px !important;
display: flex !important;
align-items: center !important;
justify-content: space-between !important;
}
/* Spread navigation nicely */
.header-nav {
flex: 1;
display: flex !important;
justify-content: center !important;
}
/* More elegant spacing between nav links */
.header-nav-list {
gap: 28px !important;
}
/* Keep logo left aligned */
.header-title {
flex-shrink: 0;
}
/* Keep CTA aligned right */
.header-actions {
flex-shrink: 0;
}
/* Mobile tidy up */
@media (max-width: 767px) {
.header-layout-nav-right .header-inner,
.header-layout-nav-center .header-inner {
padding-left: 20px !important;
padding-right: 20px !important;
}
}