/* =========================================================
CAMPERBASE CUSTOM CSS
Ryddet og struktureret version
Opdateret: 2026-05-19

Indhold:
01. Farver og basis
02. Joomla / Astroid basis overrides
03. Header, logo og sticky menu
04. Burger menu / offcanvas
05. Forside hero / video
06. Forside intro / autocamper
07. Forside feature-ikoner
08. Booking CTA
09. Oplevelser
10. Footer
11. Custom article fields / gamle undersider
12. Priser
13. Undersider
14. Hytter / hyttepriser
15. Responsive tablet
16. Responsive mobil
17. Legacy / midlertidige gamle sektioner
========================================================= */


/* =========================================================
01. FARVER OG BASIS
========================================================= */

:root {
	--cb-green-dark: #105D50;
	--cb-green-blue: #105d70;
	--cb-green-main: #467069;
	--cb-green-soft: #708A8A;
	--cb-pink: #C4998B;
	--cb-rose: #A68076;
	--cb-menu-dark: #1e3a2f;
	--cb-button-hover: #2f8c74;
	--cb-white: #ffffff;
	--cb-shadow: 0 4px 8px rgba(0,0,0,0.2);
	--cb-shadow-big: 0 8px 20px rgba(0,0,0,0.22);
	--cb-text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

html,
body {
	margin: 0;
	padding: 0;
	width: 100%;
	overflow-x: hidden;
}

body {
	background-color: var(--cb-green-dark);
}

a {
	color: var(--cb-white);
	text-decoration: none;
}

p {
	font-size: 16px;
	margin-bottom: 20px;
}

h2 {
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 15px;
	text-shadow: var(--cb-text-shadow);
}

.container {
	width: 100%;
	padding: 0;
	margin: 0 auto;
}


/* =========================================================
02. JOOMLA / ASTROID BASIS OVERRIDES
========================================================= */

.astroid-component-section {
	padding: 0 !important;
	margin-top: 0;
}

.bg-primary {
	--bs-bg-opacity: 1;
	background-color: #779993 !important;
}

.py-2 {
	background-color: transparent !important;
}

.com-content-article > h1,
.com-content-article > h2,
.page-header,
dd.readtime,
.article-info-muted dd.readtime,
dd[class*="readtime"] {
	display: none !important;
}

#astroid-backtotop {
	display: none;
	line-height: 0;
	position: fixed;
	right: 40px;
	bottom: 20px;
	padding: 10px;
	z-index: 1020;
}


/* =========================================================
03. HEADER, LOGO OG STICKY MENU
========================================================= */

.astroid-section.header-section {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 100px;
	margin: 0;
	padding: 0;
	background-color: var(--cb-green-main);
	position: sticky !important;
	top: 0;
	z-index: 9998;
}

.color1,
.color2 {
	width: 400px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.color1 {
	background-color: var(--cb-green-soft);
}

.color2 {
	background-color: var(--cb-pink);
}

.logo {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex: 1;
}

.logo img {
	width: 60%;
	height: auto;
	position: relative;
	top: 20px;
}

#b-64f815f0d7e6a067539342 {
	width: 800px;
}


/* =========================================================
04. BURGER MENU / OFFCANVAS
========================================================= */

button.my-burger-toggle,
.my-burger-toggle {
	display: inline-flex !important;
	flex-direction: column;
	gap: 5px;
	padding: 10px;
	background: transparent !important;
	border: 0;
	cursor: pointer;
}

button.my-burger-toggle:hover {
	background: rgba(255,255,255,0.15) !important;
	border-radius: 6px;
}

.my-burger-toggle span {
	display: block;
	width: 28px;
	height: 3px;
	background: var(--cb-white);
	border-radius: 2px;
}

.burger-img {
	position: absolute;
	width: 52px;
	height: 52px;
	right: 450px;
	top: -20px;
}

.astroid-offcanvas,
#astroid-offcanvas,
.offcanvas-menu,
.offcanvas-overlay {
	z-index: 9999 !important;
}

.astroid-offcanvas {
	position: absolute;
	top: 53px;
	width: 400px;
	height: 80vh;
	background: var(--cb-menu-dark);
	transition: right 0.4s ease;
	box-shadow: -5px 0 25px rgba(0,0,0,0.4);
	overflow-y: auto;
	border-radius: 0 12px 0 12px;
}

.astroid-offcanvas.active {
	right: 0;
}

.offcanvas-header {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 15px 20px;
}

.offcanvas-close-btn {
	background: none;
	border: none;
	color: var(--cb-white);
	font-size: 28px;
	cursor: pointer;
}

.offcanvas-menu .menu-item {
	display: flex;
	align-items: center;
	padding: 18px 25px;
	color: var(--cb-white);
	text-decoration: none;
	font-size: 1.1rem;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}

.menu-item .icon,
.menu-item img.icon {
	width: 32px;
	height: 32px;
	margin-right: 18px;
	object-fit: contain;
	opacity: 0.95;
}

.offcanvas-footer {
	position: sticky;
	bottom: 0;
	padding: 25px 25px 30px;
	background: var(--cb-menu-dark);
}

.book-btn {
	display: block;
	padding: 16px 20px;
	background: #8cc4a8;
	color: var(--cb-menu-dark);
	text-align: center;
	font-size: 1.15rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 0 12px 0 12px;
}

.book-btn:hover {
	background: #a5d9c0;
}


/* =========================================================
05. FORSIDE HERO / VIDEO
========================================================= */

.com-content-article:has(.hero) {
	padding: 0 !important;
	margin: 0 !important;
}

.com-content-article:has(.hero) .container {
	max-width: none;
	padding: 0;
}

.hero {
	position: relative;
	top: -28px;
	left: 50%;
	right: 50%;
	width: 100vw;
	max-width: 100vw;
	height: 700px;
	margin-left: -50vw;
	margin-right: -50vw;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
}

#video-background {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.1);
	z-index: 5;
}

.hero__content {
	position: relative;
	z-index: 6;
	width: 820px;
	margin-top: 150px;
	padding: 40px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	border-radius: 50%;
	background: none;
}

.hero__welcome,
.hero__title,
.hero__text,
.hero__slogan {
	margin: 0;
	color: var(--cb-white) !important;
	font-weight: bolder !important;
	text-shadow: var(--cb-text-shadow);
}

.hero__welcome {
	font-size: 28px;
	margin-bottom: -15px;
	opacity: 0.9;
}

.hero__title {
	font-size: 96px !important;
	letter-spacing: 1px;
}

.hero__text {
	font-size: 18px;
	line-height: 1.6;
}

.hero__slogan {
	margin-top: 10px;
	font-size: 20px !important;
	letter-spacing: 1px;
}


/* =========================================================
06. FORSIDE INTRO / AUTOCAMPER
========================================================= */

.autocamper-plads {
	position: relative;
	left: 50%;
	width: 100vw;
	padding: 20px 150px;
	display: flex;
	color: var(--cb-white);
	transform: translateX(-50%);
	z-index: 1;
}

.content {
	flex: 1;
	padding-right: 20px;
}

.content h2 {
	font-size: 30px;
	font-weight: bold;
}

.content h3 {
	font-size: 20px;
	font-weight: bold;
}

.image {
	width: 40%;
	height: auto;
	overflow: hidden;
	border-radius: 0 100px 0 100px;
}

.image img {
	width: 100%;
	height: 570px;
	object-fit: cover;
}


/* =========================================================
07. FORSIDE FEATURE-IKONER
========================================================= */

.cbfp {
	width: 100vw;
	height: 900px;
	margin-left: 50%;
	margin-bottom: 300px;
	background-color: var(--cb-green-soft);
	box-shadow: var(--cb-shadow);
	transform: translateX(-50%);
}

.cbfp__grid {
	display: grid !important;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 60px 40px;
	width: 100%;
	max-width: 1600px;
	margin: 0 auto;
	padding: 70px 40px 0;
	align-items: start;
	box-sizing: border-box;
}

.cbfp__item {
	text-align: center;
	transition: transform 0.25s ease;
}

.cbfp__item:hover {
	transform: scale(1.05);
}

.cbfp__item a {
	display: block;
	color: var(--cb-white) !important;
	text-decoration: none !important;
}

.cbfp__item img {
	display: block;
	width: 150px !important;
	height: 150px !important;
	margin: 0 auto 15px;
	object-fit: contain;
	transition: transform 0.25s ease;
}

.cbfp__item:hover img {
	transform: scale(1.1);
}

.cbfp__item h4 {
	margin-bottom: 10px;
	color: var(--cb-white) !important;
	font-size: 22px;
	font-weight: bold;
	text-align: center;
	text-shadow: var(--cb-text-shadow);
}

.cbfp__text,
.cbfp__item p {
	margin: 0;
	color: var(--cb-white) !important;
	font-size: 14px;
	line-height: 1.4;
	text-align: center;
}

.cbfp__image {
	grid-column: 1 / -1;
	width: auto;
	margin: 0 -200px;
	overflow: hidden;
	line-height: 0;
	border-radius: 0 200px 0 200px;
	box-shadow: var(--cb-shadow);
}

.cbfp__image a {
	display: block;
	width: 100%;
}

.cbfp__image img {
	display: block;
	width: 100% !important;
	max-width: none !important;
	height: 700px !important;
	object-fit: cover;
}


/* =========================================================
08. BOOKING CTA
========================================================= */

.booking-container,
.booking-container-side {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	background-color: var(--cb-rose);
	border-radius: 0 30px 0 30px;
	box-shadow: var(--cb-shadow);
}

.booking-container {
	padding: 25px 100px;
	margin-top: -10px;
	margin-bottom: -8px;
}

.booking-container-side {
	padding: 20px 100px;
	margin-top: -80px;
	margin-bottom: 100px;
}

.booking-text,
.booking-text-side {
	color: var(--cb-white);
	font-size: 35px;
	font-weight: bold;
	text-shadow: var(--cb-text-shadow);
}

.booking-button,
.booking-button-side {
	background-color: var(--cb-green-dark);
	color: var(--cb-white);
	border: none;
	cursor: pointer;
	font-weight: bold;
	border-radius: 0 30px 0 30px;
	box-shadow: var(--cb-shadow);
	text-shadow: var(--cb-text-shadow);
	transition: background-color 0.3s ease;
}

.booking-button {
	padding: 20px 30px;
	font-size: 36px;
}

.booking-button-side {
	padding: 10px 30px;
	font-size: 36px;
}

.booking-button:hover,
.booking-button-side:hover {
	background-color: var(--cb-button-hover);
}


/* =========================================================
09. OPLEVELSER
========================================================= */

.cbexperiencebox {
	width: 100%;
	max-width: 1300px;
	margin: 80px auto;
	background-color: var(--cb-green-soft);
	border-radius: 0 55px 0 55px;
	overflow: hidden;
	box-shadow: var(--cb-shadow-big);
}

.cbexperiencebox__header {
	padding: 45px 30px;
	background-color: var(--cb-pink);
	text-align: center;
}

.cbexperiencebox__header h2 {
	margin: 0;
	color: var(--cb-white) !important;
	font-size: 44px;
	font-weight: bold;
	text-shadow: var(--cb-text-shadow);
}

.cbexperiencebox__content {
	padding: 60px 50px;
}

.cbexperiences {
	width: 100%;
	margin-left: 0;
	padding: 0;
	background-color: transparent;
	color: var(--cb-white);
	transform: none;
	box-sizing: border-box;
}

.cbexperiences__inner {
	max-width: 1300px;
	margin: 0 auto;
}

.cbexperiences__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 40px;
	align-items: stretch;
}

.cbexperiences__card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background-color: var(--cb-green-soft);
	border-radius: 0 55px 0 55px;
	box-shadow: var(--cb-shadow-big);
}

.cbexperiences__card:nth-child(even) {
	background-color: var(--cb-rose);
}

.cbexperiences__image {
	width: 100%;
	overflow: hidden;
}

.cbexperiences__image img {
	display: block;
	width: 100%;
	object-fit: cover;
}

.cbexperiences__content {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 38px 36px 36px;
}

.cbexperiences__content h3 {
	margin: 0 0 18px;
	color: var(--cb-white) !important;
	font-size: 30px;
	font-weight: bold;
	text-shadow: var(--cb-text-shadow);
}

.cbexperiences__text,
.cbexperiences__text p {
	margin-bottom: 16px;
	color: var(--cb-white) !important;
	font-size: 16px;
	line-height: 1.6;
}

.cbexperiences__text p:last-child {
	margin-bottom: 0;
}

.cbexperiences__button-wrap {
	margin-top: auto;
	padding-top: 28px;
}

.cbexperiences__button {
	display: inline-block;
	padding: 13px 24px;
	background-color: var(--cb-green-dark);
	color: var(--cb-white) !important;
	font-weight: bold;
	text-decoration: none !important;
	border-radius: 0 24px 0 24px;
	box-shadow: var(--cb-shadow);
	transition: background-color 0.25s ease, transform 0.25s ease;
}

.cbexperiences__button:hover {
	background-color: var(--cb-button-hover);
	transform: translateY(-1px);
}


/* =========================================================
10. FOOTER
========================================================= */

.footer {
	position: relative;
	left: 50%;
	right: 50%;
	width: 100vw;
	padding: 40px 0 0;
	color: var(--cb-white);
	transform: translateX(-50%);
}

.footer__content {
	display: flex;
}

.footer__section {
	padding: 20px;
}

.footer__section-kontakt,
.footer__section-follow,
.footer__section-empty,
.footer__section-video {
	width: 100%;
}

.footer__section-kontakt {
	padding: 50px;
	background-color: var(--cb-green-main);
}

.footer__section-follow {
	padding: 50px;
	background-color: var(--cb-green-soft);
}

.footer__section-empty {
	background-color: var(--cb-pink);
}

.footer__section-video {
	background-color: var(--cb-rose);
}

.footer__section h4 {
	margin-top: 10px;
	font-size: 25px;
	font-weight: bold;
	text-shadow: var(--cb-text-shadow);
}

.footer__section p,
.footer__section a {
	font-size: 16px;
}

.footer__section p {
	margin-bottom: 10px;
}

.footer__section a {
	color: var(--cb-white);
	text-decoration: none;
}

.footer__section a:hover {
	text-decoration: underline;
}

.footer__bottom {
	margin-top: 30px;
	text-align: center;
	font-size: 12px;
}

.section-video {
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-top: -120px;
	margin-bottom: -80px;
}

#logo-video {
	width: 100%;
	max-width: 600px;
	height: auto;
	margin-top: 60px;
	margin-bottom: 0;
	mask-image: radial-gradient(circle, black 40%, transparent 55%);
}


/* =========================================================
11. CUSTOM ARTICLE FIELDS / GAMLE UNDERSIDER
========================================================= */

.article-custom-page {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

.hero-container {
	display: flex;
	min-height: 520px;
	margin-bottom: 3rem;
	overflow: hidden;
	border-radius: 20px;
}

.hero-video,
.hero-content {
	flex: 1;
	min-width: 50%;
}

.hero-video img,
.hero-video video,
.hero-video iframe {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0 100px 0 100px;
}

.hero-content {
	padding: 80px 60px;
	color: var(--cb-white);
	align-items: center;
}

.hero-overskrift {
	font-size: 50px !important;
}

.hero-content h1 {
	font-size: 15px;
}

.justify-content-center {
	justify-content: center !important;
	gap: 50px;
}

.icon-circle {
	width: 90px;
	height: 90px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background-color: #f8f9fa;
	border-radius: 50%;
	box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.icon-circle img {
	width: 50px;
	height: 50px;
	object-fit: contain;
}

.info-section {
	margin-top: -100px;
	color: #e8f1eb;
}

.info-section .container {
	max-width: 1100px;
}

.info-overskrift {
	margin-bottom: 20px;
	font-size: 2rem;
}

.info-text {
	max-width: 700px;
	line-height: 20px;
}

.info-logo img {
	max-width: 300px;
	margin-top: -100px;
	opacity: 0.5;
}

.images-section {
	padding: 4rem 5rem;
	margin-left: -229px;
	margin-right: -229px;
	background-color: var(--cb-green-main) !important;
}

.images-section img {
	width: 100%;
	height: auto;
	border-radius: 0 100px 0 100px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.menuitems-section {
	margin-left: -229px;
	margin-right: -229px;
	background-color: var(--cb-green-soft) !important;
	color: #e8f1eb;
}

.container1 {
	padding: 0 200px;
}

.bottom-section img {
	width: 100%;
	max-width: 1100px;
	border-radius: 0 100px 0 100px;
	box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.fw-bold {
	margin: -35px;
	font-size: 25px;
	font-weight: 700 !important;
	text-shadow: var(--cb-text-shadow);
}


/* =========================================================
12. PRISER
========================================================= */

.cbprices {
	width: 100vw;
	margin-left: 50%;
	padding: 60px 40px;
	background-color: var(--cb-green-blue);
	color: var(--cb-white);
	transform: translateX(-50%);
	box-sizing: border-box;
}

.cbprices__inner {
	max-width: 1200px;
	margin: 0 auto;
}

.cbprices__heading-wrap,
.cbprices__header {
	max-width: 850px;
	margin: 0 auto 50px;
	text-align: center;
}

.cbprices__heading,
.cbprices__header h2 {
	margin: 0 0 15px;
	color: var(--cb-white);
	font-size: clamp(2rem, 4vw, 3.2rem);
	font-weight: 700;
	line-height: 1.1;
	text-shadow: 0 3px 6px rgba(0,0,0,.35);
}

.cbprices__header p {
	margin: 0;
	color: var(--cb-white);
	font-size: 17px;
	line-height: 1.6;
}

.cbprices__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 40px;
}

.cbprices__card {
	padding: 45px 40px;
	border-radius: 0 50px 0 50px;
	box-shadow: var(--cb-shadow-big);
}

.cbprices__card:nth-child(1) {
	background-color: var(--cb-green-soft);
}

.cbprices__card:nth-child(2) {
	background-color: var(--cb-rose);
}

.cbprices__card-header {
	margin-bottom: 30px;
	text-align: center;
}

.cbprices__card-header h3 {
	margin: 0 0 8px;
	color: var(--cb-white);
	font-size: 34px;
	font-weight: bold;
	text-shadow: var(--cb-text-shadow);
}

.cbprices__card-header p {
	margin: 0;
	color: rgba(255,255,255,0.95);
	font-size: 15px;
}

.cbprices__lines {
	margin-top: 20px;
}

.cbprices__line {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding: 16px 0;
	border-bottom: 1px solid rgba(255,255,255,0.28);
	font-size: 18px;
}

.cbprices__line:last-child {
	border-bottom: none;
}

.cbprices__line span,
.cbprices__line strong {
	color: var(--cb-white);
}

.cbprices__line strong {
	font-size: 20px;
	white-space: nowrap;
}

.cbprices__note {
	margin-top: 25px;
	padding-top: 20px;
	border-top: 1px solid rgba(255,255,255,0.28);
	color: rgba(255,255,255,0.95);
	font-size: 14px;
	line-height: 1.5;
	text-align: center;
}

.cbprices__note p {
	margin: 0;
	color: rgba(255,255,255,0.95);
}

.cbprices__bottom-note {
	max-width: 900px;
	margin: 35px auto 0;
	color: rgba(255,255,255,0.9);
	text-align: center;
	font-size: 14px;
}


/* =========================================================
13. UNDERSIDER
========================================================= */

.cbsub {
	position: relative;
	width: 100vw;
	margin-left: 50%;
	padding: 70px 40px 90px;
	overflow: hidden;
	background-color: var(--cb-green-dark);
	color: var(--cb-white);
	transform: translateX(-50%);
	box-sizing: border-box;
}

.cbsub__watermark {
	position: absolute;
	right: 8%;
	top: 480px;
	width: 460px;
	max-width: 35vw;
	opacity: 0.08;
	z-index: 0;
	pointer-events: none;
}

.cbsub__hero {
	max-width: 1200px;
	margin: 0 auto 60px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 70px;
	align-items: center;
	position: relative;
	z-index: 2;
}

.cbsub__boxes,
.cbsub__article-content {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.cbsub__boxes {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 70px;
}

.cbsub__article-content {
	margin-top: 70px;
}

.cbsub__image {
	overflow: hidden;
	border-radius: 0 100px 0 100px;
}

.cbsub__image img {
	display: block;
	width: 100%;
	height: 600px;
	object-fit: cover;
}

.cbsub__box {
	position: relative;
	z-index: 2;
}

.cbsub__box h1,
.cbsub__box h2 {
	margin: 0 0 22px;
	color: var(--cb-white) !important;
	font-weight: bold;
	line-height: 1.1;
	text-shadow: var(--cb-text-shadow);
}

.cbsub__box h1 {
	font-size: 46px;
}

.cbsub__box h2 {
	font-size: 38px;
}

.cbsub__text,
.cbsub__text p {
	color: var(--cb-white);
	font-size: 16px;
	line-height: 1.65;
}

.cbsub__text p {
	margin: 0 0 18px;
}

.cbsub__text ul {
	margin: 0 0 22px;
	padding-left: 20px;
}

.cbsub__text li {
	margin-bottom: 8px;
}


/* =========================================================
14. HYTTER / HYTTEPRISER
========================================================= */

.cbcabins {
	width: 100vw;
	margin-left: 50%;
	padding: 80px 40px;
	background-color: var(--cb-green-blue);
	color: var(--cb-white);
	transform: translateX(-50%);
	box-sizing: border-box;
}

.cbcabins__inner {
	max-width: 1500px;
	margin: 0 auto;
}

.cbcabins__heading-wrap {
	margin: 0 0 45px;
	text-align: center;
}

.cbcabins__heading {
	margin: 0;
	color: var(--cb-white);
	font-family: inherit;
	font-size: clamp(2rem, 4vw, 3.2rem);
	font-weight: 400;
	line-height: 1.1;
	text-shadow: 0 3px 6px rgba(0,0,0,.35);
}

.cbcabins__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 30px;
	align-items: stretch;
}

.cbcabins__card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	padding: 35px 100px;
	background-color: var(--cb-green-soft);
	border-radius: 0 45px 0 45px;
	box-shadow: var(--cb-shadow-big);
	font-weight: bold;
}

.cbcabins__card:nth-child(even) {
	background-color: var(--cb-rose);
}

.cbcabins__image {
	position: relative !important;
	margin: -35px -28px 25px;
	overflow: hidden !important;
	border-top-left-radius: 0;
	border-top-right-radius: 45px;
}

.cbcabins__image img {
	display: block !important;
	width: 100% !important;
	height: auto !important;
	object-fit: cover;
}

.cbcabins__image-actions {
	position: absolute !important;
	left: 50% !important;
	bottom: 22px !important;
	z-index: 5 !important;
	display: grid !important;
	gap: 200px !important;
	align-items: center !important;
	justify-content: center !important;
	transform: translateX(-50%) !important;
}

.cbcabins__image-label,
.cbcabins__image-book-button {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-width: 120px !important;
	padding: 12px 22px !important;
	background: #006052 !important;
	color: var(--cb-white) !important;
	font-family: inherit !important;
	font-size: 1.2rem !important;
	font-weight: 700 !important;
	line-height: 1 !important;
	border-radius: 0 22px 0 22px !important;
	text-shadow: 0 1px 2px rgba(0,0,0,.35) !important;
	white-space: nowrap !important;
	text-decoration: none !important;
}

.cbcabins__image-label {
	background: transparent !important;
	font-size: 40px !important;
}

.cbcabins__image-book-button:hover {
	background: #004f44 !important;
	color: var(--cb-white) !important;
	transform: translateY(-2px) !important;
	text-decoration: none !important;
}

.cbcabins__card-header {
	margin-bottom: 24px;
	text-align: center;
}

.cbcabins__card-header h3 {
	margin: 0;
	color: var(--cb-white) !important;
	font-size: 28px;
	font-weight: bold;
	text-shadow: var(--cb-text-shadow);
}

.cbcabins__lines {
	margin-top: 10px;
}

.cbcabins__line {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 12px 0;
	border-bottom: 1px solid rgba(255,255,255,0.28);
	font-size: 15px;
}

.cbcabins__line span,
.cbcabins__line strong {
	color: var(--cb-white) !important;
}

.cbcabins__line span {
	line-height: 1.35;
}

.cbcabins__line strong {
	white-space: nowrap;
	text-align: right;
	font-size: 16px;
}

.cbcabins__line--price strong {
	font-size: 18px;
}

.cbcabins__season {
	border-top: 1px solid rgba(255,255,255,0.28);
}

.cbcabins__season h4 {
	margin: 20px 0 10px;
	color: var(--cb-white) !important;
	font-size: 19px;
	font-weight: bold;
	text-shadow: var(--cb-text-shadow);
}

.cbcabins__season .cbcabins__line:last-child {
	border-bottom: none;
}

.cbcabins__description,
.cbcabins__equipment {
	padding-top: 18px;
	border-top: 1px solid rgba(255,255,255,0.28);
	color: var(--cb-white) !important;
	font-size: 14px;
	line-height: 1.5;
}

.cbcabins__section-label {
	display: block;
	margin-bottom: 10px;
	color: var(--cb-white) !important;
	font-size: 16px;
	font-weight: bold;
	text-shadow: var(--cb-text-shadow);
}

.cbcabins__description-text,
.cbcabins__description-text p {
	margin-bottom: 10px;
	color: var(--cb-white) !important;
	font-size: 14px;
	line-height: 1.5;
}

.cbcabins__description-text p:last-child {
	margin-bottom: 0;
}

.cbcabins__equipment-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0 15px;
	list-style: none;
	padding: 0;
	margin: 10px -30px 0 0;
}

.cbcabins__equipment-list li {
	position: relative;
	padding-left: 18px;
	margin-bottom: 8px;
	color: var(--cb-white) !important;
	font-size: 14px;
	line-height: 1.4;
}

.cbcabins__equipment-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	color: var(--cb-white);
	font-weight: bold;
}

.cbcabins__button-wrap {
	margin-top: auto;
	padding-top: 25px;
}

.cbcabins__button {
	display: block;
	padding: 13px 18px;
	background-color: var(--cb-green-dark);
	color: var(--cb-white) !important;
	font-weight: bold;
	text-align: center;
	text-decoration: none !important;
	border-radius: 0 22px 0 22px;
	box-shadow: var(--cb-shadow);
	transition: background-color 0.25s ease, transform 0.25s ease;
}

.cbcabins__button:hover {
	background-color: var(--cb-button-hover);
	transform: translateY(-1px);
}


/* =========================================================
15. RESPONSIVE TABLET
========================================================= */

@media (min-width: 768px) and (max-width: 1199.98px) {
	#b-64f815f0d7e6a067539342 {
		width: 500px;
	}

	.burger-img {
		right: 280px !important;
	}

	.logo img {
		width: 70%;
		top: 25px;
		margin-left: 10px;
	}

	.hero__slogan {
		font-size: 23px !important;
	}

	.autocamper-plads {
		padding: 10px 60px 50px;
		gap: 20px;
	}

	.content {
		padding-right: 80px;
	}

	.image {
		width: 45%;
	}

	.image img {
		height: 750px;
	}

	.cbfp__grid {
		grid-template-columns: repeat(5, minmax(0, 1fr));
		gap: 25px;
		padding: 60px 35px 0;
	}

	.cbfp__item img {
		width: 100px !important;
		height: 100px !important;
	}

	.cbfp__item h4 {
		font-size: 18px;
	}

	.cbfp__text,
	.cbfp__item p {
		font-size: 12px;
	}

	.cbfp__image img {
		height: 600px !important;
	}

	.booking-container {
		padding: 50px 60px;
	}

	.booking-text {
		font-size: 35px;
	}

	.footer__section-kontakt,
	.footer__section-follow {
		padding: 25px 50px;
	}

	.section-video {
		margin-bottom: -20px;
	}

	.cbexperiences__grid {
		gap: 30px;
	}

	.cbexperiences__content {
		padding: 32px 30px;
	}

	.cbexperiences__content h3 {
		font-size: 26px;
	}

	.cbcabins {
		padding: 70px 35px;
	}

	.cbcabins__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 30px;
	}
}


/* =========================================================
16. RESPONSIVE UNDERSIDER TABLET / LILLE DESKTOP
========================================================= */

@media (max-width: 1199px) {
	.cbsub {
		padding: 55px 30px 75px;
	}

	.cbsub__hero,
	.cbsub__boxes {
		gap: 45px;
	}

	.cbsub__image img {
		height: 460px;
	}

	.cbsub__box h1 {
		font-size: 40px;
	}

	.cbsub__box h2 {
		font-size: 32px;
	}
}


/* =========================================================
17. RESPONSIVE MOBIL
========================================================= */

@media (max-width: 768px) {
	.astroid-section.header-section {
		height: 70px;
		top: 0;
		z-index: 9998;
	}

	#b-64f815f0d7e6a067539342 {
		width: 250px;
		height: 0;
		padding: 45px 30px 25px 10px;
	}

	.color1,
	.color2 {
		height: 70px;
	}

	.logo img {
		width: 80%;
		left: 8px;
	}

	.burger-img {
		right: 150px;
		width: 22px;
		height: 22px;
	}

	#astroid-offcanvas.active {
		visibility: visible !important;
		opacity: 1 !important;
		transform: translateX(0) !important;
		margin-left: -154px;
		width: 250px;
	}

	.hero {
		height: 520px;
	}

	.hero__content {
		width: 300px;
		padding: 0;
		margin-bottom: 20px;
	}

	.hero__welcome {
		font-size: 18px !important;
		margin-bottom: 3px;
	}

	.hero__title {
		font-size: 32px !important;
		line-height: 1.2;
		margin-bottom: 10px;
	}

	.hero__text {
		font-size: 15px !important;
		line-height: 1.5;
	}

	.hero__slogan {
		font-size: 12px !important;
	}

	.autocamper-plads {
		flex-direction: column;
		padding: 0 30px 40px;
	}

	.content h2 {
		font-size: 25px;
	}

	.image {
		width: 100%;
		margin-bottom: 20px;
	}

	.image img {
		height: 250px;
	}

	h2 {
		font-size: 24px;
	}

	p {
		font-size: 14px;
	}

	.cbfp {
		height: 1200px;
		margin-bottom: 100px;
	}

	.cbfp__grid {
		grid-template-columns: 1fr;
		gap: 30px;
		padding: 50px 25px 0;
	}

	.cbfp__item img {
		width: 90px !important;
		height: 90px !important;
	}

	.cbfp__item h4 {
		font-size: 18px;
	}

	.cbfp__text,
	.cbfp__item p {
		font-size: 13px;
	}

	.cbfp__image {
		margin-left: -25px;
		margin-right: -25px;
		border-top-right-radius: 50px;
		border-bottom-left-radius: 50px;
	}

	.cbfp__image img {
		height: 250px !important;
	}

	.booking-container,
	.booking-container-side {
		padding: 30px 20px;
	}

	.booking-container {
		margin-top: 50px;
		margin-bottom: 15px;
	}

	.booking-container-side {
		margin-top: -150px;
		margin-bottom: 80px;
	}

	.booking-text,
	.booking-text-side {
		font-size: 14px;
	}

	.booking-button,
	.booking-button-side {
		padding: 5px 10px;
		font-size: 16px;
		border-top-right-radius: 10px;
		border-bottom-left-radius: 10px;
	}

	.cbexperiencebox {
		margin: 50px 20px;
		border-top-right-radius: 35px;
		border-bottom-left-radius: 35px;
	}

	.cbexperiencebox__header {
		padding: 28px 20px;
	}

	.cbexperiencebox__header h2 {
		font-size: 28px;
	}

	.cbexperiencebox__content {
		padding: 35px 20px;
	}

	.cbexperiences__grid {
		grid-template-columns: 1fr;
		gap: 25px;
	}

	.cbexperiences__card {
		border-top-right-radius: 35px;
		border-bottom-left-radius: 35px;
	}

	.cbexperiences__content {
		padding: 28px 24px 30px;
	}

	.cbexperiences__content h3 {
		font-size: 24px;
	}

	.cbexperiences__text,
	.cbexperiences__text p {
		font-size: 15px;
		line-height: 1.55;
	}

	.cbexperiences__button {
		display: block;
		text-align: center;
	}

	.footer__section h4,
	.footer__section p,
	.footer__section a {
		font-size: 14px;
	}

	.footer__section-empty {
		width: 0;
		padding: 0;
		background-color: var(--cb-rose);
	}

	.footer__section-kontakt {
		width: 50%;
		padding: 20px 14px;
	}

	.footer__section-follow {
		width: 100%;
		padding: 20px 14px;
	}

	.footer__section-video {
		width: 50%;
	}

	.footer__bottom {
		margin-top: 20px;
		font-size: 12px;
	}

	#logo-video {
		height: auto;
		margin-bottom: 50px;
	}

	.section-video {
		margin-top: -80px;
		margin-bottom: -100px;
	}

	.hero-container {
		display: block;
		flex-direction: column;
	}

	.hero-video,
	.hero-content {
		min-width: 100%;
	}

	.hero-video img {
		height: 50%;
	}

	.hero-content {
		padding: 50px 15px;
	}

	.hero-overskrift {
		font-size: 25px !important;
	}

	.hero-content h1 {
		font-size: 2.5rem;
	}

	.icon-circle {
		width: 75px;
		height: 75px;
	}

	.icon-circle img {
		width: 42px;
		height: 42px;
	}

	.info-logo {
		margin-top: 130px;
	}

	.info-text,
	.info-overskrift {
		padding: 0 15px;
	}

	.images-section,
	.menuitems-section {
		margin-left: -15px;
		margin-right: -15px;
	}

	.cbprices {
		padding: 50px 20px;
	}

	.cbprices__header {
		margin-bottom: 35px;
	}

	.cbprices__header h2 {
		font-size: 30px;
	}

	.cbprices__header p {
		font-size: 14px;
	}

	.cbprices__grid {
		grid-template-columns: 1fr;
		gap: 25px;
	}

	.cbprices__card {
		padding: 35px 25px;
		border-top-right-radius: 30px;
		border-bottom-left-radius: 30px;
	}

	.cbprices__card-header h3 {
		font-size: 26px;
	}

	.cbprices__line {
		font-size: 15px;
	}

	.cbprices__line strong {
		font-size: 16px;
	}

	.cbsub {
		padding: 35px 24px 60px;
	}

	.cbsub__hero,
	.cbsub__boxes {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.cbsub__image img {
		height: 280px;
	}

	.cbsub__box h1 {
		font-size: 34px !important;
		line-height: 1.15;
		margin-bottom: 22px;
	}

	.cbsub__box h2 {
		font-size: 28px !important;
		line-height: 1.2;
	}

	.cbsub__text,
	.cbsub__text p {
		font-size: 16px !important;
		line-height: 1.55;
		font-weight: 400;
	}

	.cbcabins {
		padding: 50px 20px;
	}

	.cbcabins__grid {
		grid-template-columns: 1fr;
		gap: 25px;
	}

	.cbcabins__card {
		padding: 32px 24px;
		border-top-right-radius: 30px;
		border-bottom-left-radius: 30px;
	}

	.cbcabins__image {
		margin: -32px -24px 22px;
		border-top-right-radius: 30px;
	}

	.cbcabins__card-header h3 {
		font-size: 26px;
	}

	.cbcabins__line {
		font-size: 15px;
	}

	.cbcabins__line strong {
		font-size: 15px;
	}

	.cbcabins__season h4 {
		font-size: 18px;
	}

	.cbcabins__image-actions {
		bottom: 16px !important;
		gap: 8px !important;
	}

	.cbcabins__image-label,
	.cbcabins__image-book-button {
		min-width: 110px !important;
		padding: 10px 18px !important;
		font-size: 1.05rem !important;
	}
}


/* =========================================================
18. LEGACY / MIDLERTIDIGE GAMLE SEKTIONER
Kan slettes når de gamle hardcoded oplevelser er fjernet
fra artiklerne.
========================================================= */

.oplevelser-sections {
	margin: 100px 0;
}

.oplevelse-overskrift {
	padding: 40px;
	margin-bottom: 0;
	background-color: var(--cb-pink);
	color: var(--cb-white);
	text-align: center;
	border-top-right-radius: 30px;
	text-shadow: var(--cb-text-shadow);
}

.oplevelse-overskrift h1 {
	font-size: 50px;
	font-weight: bold;
}

.oplevelser-row,
.oplevelser-row.reverse {
	display: flex;
	align-items: center;
	gap: 60px;
	padding: 80px 100px;
	color: var(--cb-white);
}

.oplevelser-row.reverse {
	flex-direction: row-reverse;
}

.oplevelser-row:nth-child(odd) {
	background-color: var(--cb-green-main);
}

.oplevelser-row:nth-child(even) {
	background-color: var(--cb-green-soft);
}

.oplevelser-text,
.oplevelser-image {
	flex: 1;
}

.oplevelser-text h2 {
	font-size: 32px;
	margin-bottom: 15px;
}

.oplevelser-text p {
	font-size: 16px;
	line-height: 1.6;
}

.oplevelser-image {
	display: flex;
	justify-content: center;
}

.oplevelser-image img {
	width: 80%;
	height: auto;
	object-fit: cover;
	border-radius: 0 100px 0 100px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
	.oplevelser-row,
	.oplevelser-row.reverse {
		flex-direction: column;
		gap: 20px;
		padding: 40px 20px;
	}

	.oplevelse-overskrift {
		padding: 20px 10px;
	}

	.oplevelse-overskrift h1 {
		font-size: 25px;
	}
}

/* =========================================================
CAMPERBASE - FAST HEADER / STICKY MENU
Bruger den rigtige Astroid section ID fra layoutet
========================================================= */

/* Selve header-sektionen */
#hs-1529472563843 {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	width: 100% !important;
	z-index: 99999 !important;
	background-color: var(--cb-green-dark) !important;
	margin: 0 !important;
	padding: 0 !important;
}

/* Plads under den faste header */
body {
	padding-top: 100px !important;
}

/* Sørg for at headerens indre row ikke laver mærkelig afstand */
#hs-1529472563843 .astroid-row,
#hs-1529472563843 .container,
#hs-1529472563843 .astroid-column {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

/* Offcanvas / burgermenu skal ligge over header */
.astroid-offcanvas,
#astroid-offcanvas,
.offcanvas-menu,
.offcanvas-overlay {
	z-index: 100000 !important;
}

/* Mobil */
@media (max-width: 768px) {
	body {
		padding-top: 70px !important;
	}

	#hs-1529472563843 {
		height: 70px !important;
	}
}
/* =========================================================
CAMPERBASE - FJERN HOVER-PLET VED BURGERMENU
Tilføj nederst i CSS
========================================================= */

#b-64f815f0d7e6a067539342 button,
#b-64f815f0d7e6a067539342 button:hover,
#b-64f815f0d7e6a067539342 button:focus,
#b-64f815f0d7e6a067539342 button:active,
button.my-burger-toggle,
button.my-burger-toggle:hover,
button.my-burger-toggle:focus,
button.my-burger-toggle:active,
.my-burger-toggle,
.my-burger-toggle:hover,
.my-burger-toggle:focus,
.my-burger-toggle:active {
	background: transparent !important;
	box-shadow: none !important;
	outline: none !important;
	border: none !important;
}

/* Fjerner evt. rund hover-effekt lavet med pseudo-element */
#b-64f815f0d7e6a067539342 button::before,
#b-64f815f0d7e6a067539342 button::after,
button.my-burger-toggle::before,
button.my-burger-toggle::after,
.my-burger-toggle::before,
.my-burger-toggle::after {
	display: none !important;
	content: none !important;
	background: transparent !important;
	box-shadow: none !important;
}