body {
  background-color: white;
	transition: opacity 0.1s ease-out;
	overscroll-behavior-x: none;
}

/* Screen reader only - for accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Hero section video switching */
.desktop-video {
    display: block;
}

.mobile-video {
    display: none;
}

@media (max-width: 767px) {
    .desktop-video {
        display: none;
    }
    
    .mobile-video {
        display: block;
    }
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Dette forhindrer horisontal scrolling */
}

/* ========================================
   SECTION SPACING UTILITIES
   ======================================== */
.spacing-top {
    padding-top: 120px !important;
}

.spacing-bottom {
    padding-bottom: 120px !important;
}

/* Kombi løsning for page-section med spacing */
.page-section.spacing-top {
    padding-top: 120px !important;
}

.page-section.spacing-bottom {
    padding-bottom: 120px !important;
}

@media (max-width: 768px) {
    .spacing-top {
        padding-top: 80px !important;
    }

    .spacing-bottom {
        padding-bottom: 80px !important;
    }

    .page-section.spacing-top {
        padding-top: 80px !important;
    }

    .page-section.spacing-bottom {
        padding-bottom: 80px !important;
    }
}

.nav-buttons {
	position: absolute;
    top: 0.5rem;
	z-index: 100;
}

.nav-top-wrapper {
	display: flex;
	flex-direction: column;
}

.nav-text-wrapper {
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
	
}

#mobile-dropdownList {
	height: auto;
	overflow: hidden; 
}



.logo-buttons-wrapper a:first-child .logo-wrapper {
    background-color: #fff;
}


/* Hide the dark logo by default */

/* Show the dark logo and hide the light logo on hover */




.dropdown {
  position: relative;
  display: inline-block;
  background-color: white;
  width: 100%;
  color: #132352;
  font-size: 0.9rem;
  font-family: korolev, sans-serif;
  font-weight: 500;
  border-radius: 0px 5px 5px 0px;
  cursor: pointer;
  padding: 0.5rem 1rem;
}

.selected-item {
  white-space: nowrap;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 100%;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
  z-index: 1;
  border-radius: 0px 0px 5px 5px;
  left: 0;
  top: 1.9rem;
}

.dropdown-content a {
  color: #132352;
  padding: 0.5rem 1rem;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #F3F9FD;
  border-radius: 5px;
}

.show {
  display: block;
  height: 12rem;
  overflow: scroll;
}

.selected-item::after {
  content: '\25BC'; /* Unicode character for a downward-pointing chevron */
  font-size: 0.5rem;
  position: absolute;
  right: 10px;
  top: 50%;
   transform: translateY(-50%);
}


.calc-wrap {
  grid-column: span 2; /* Span over two columns */
}


/*rabataftaler */

/* ============================================
   GENERIC MODULAR SECTIONS
   ============================================ */

/* Generic Content Section - for text-based sections */
.content-section {
    padding: 80px 20px;
    width: 100%;
}

.content-section--no-top-padding {
    padding-top: 0;
}

.content-section--no-bottom-padding {
    padding-bottom: 0;
}

/* Generic Section Container - standardizes max-width and centering */
.section-container {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

.section-container--narrow {
    max-width: 1200px;
}

/* Generic Image/Video Module - for image/video overlays */
.image-module {
    position: relative;
    width: 100%;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-module--tall {
    min-height: 550px;
}

.image-module__image-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.image-module__image-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.image-module__image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    object-position: center 40%;
}

.image-module__text-section {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 60px 40px;
    text-align: center;
}

.image-module__text-section h2 {
    color: white;
    margin-top: 0;
    font-family: 'CoreRhino', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 0;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Mobile responsive for image modules */
@media (max-width: 768px) {
    .page-section--with-padding {
        padding-top: 100px !important;
        padding-bottom: 60px !important;
    }
    
    .content-section {
        padding: 60px 20px;
    }
    
    .content-section--no-top-padding {
        padding-top: 20px;
    }
    
    .image-module {
        min-height: 400px;
        margin-bottom: 0;
    }
    
    .image-module__image {
        min-height: 400px;
    }
    
    .image-module__text-section {
        padding: 100px 20px;
    }
    
    .image-module__text-section h2 {
        font-size: 2.8rem;
        line-height: 1.2;
        margin-bottom: 0;
    }
    
    .image-module__text-section p {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-top: 20px;
    }
}

/* ============================================
   EXISTING SECTIONS (now using generic modules)
   ============================================ */

.page-section {
    background-color: #fff;
    padding: 0 20px;
}

.page-section--with-padding {
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: 20px;
    padding-right: 20px;
}

.discount-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 2rem;
}

.discount-container {
    width: 100%;
    max-width: 1600px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem 20px;
    display: flex;
  }

  .d-image-wrap {
    position: relative;
    aspect-ratio: 181 / 120;

  }

  .discount-image {
    position: absolute;
    height: 100%;
    width: 100%;
    border-radius: 8px;
  }

/* terms pop-up modal */


#myBtn {
   background-color: transparent; 
    color: white; /* White text */
    border: none; /* Remove border */
    cursor: pointer; /* Cursor style for clickable elements */
	display: flex;
	text-align: left;
	gap: 2px;
	font-size: 0.9rem;
	font-family: korolev, sans-serif;
}

/* The Modal (background) */
.modal {
    position: fixed; /* Stay in place */
    z-index: 999999; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: none; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.6); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    position: relative;
  color: #001F46;
	font-family: korolev, sans-serif;
	font-weight: 500;
  border-radius: 5px;
    background-color: #fefefe;
    margin: 8rem auto;
    padding: 2rem;
    width: 40%; /* Could be more or less, depending on screen size */
	/*height: 60%;*/
	height: auto;
	overflow: auto;
}

/* Style the scrollbar and scrollbar thumb for WebKit browsers */
.modal-content::-webkit-scrollbar {
    width: 0.5rem; /* Adjust the width as needed */
}

.modal-content::-webkit-scrollbar-thumb {
    background-color: #888; /* Color of the scrollbar thumb */
    border-radius: 6px; /* Rounded corners for the thumb */
}



/* The Close Button */
.close {
    color: #001F46;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}



@media screen and (max-width: 991px) {

	.modal {
		overflow: auto; /* Enable scroll if needed */
	}

.modal-content {
    width: 80%; /* Could be more or less, depending on screen size */
	padding: 1rem;
}
	
.discount-grid {

        grid-template-columns: 1fr 1fr;
        grid-gap: 2rem;
    }	

}

@media screen and (max-width: 479px) {
	.w-input {
		max-width: 20rem;
	}
	
	/* Calculator Section Mobile */
	.calculator-section {
		padding: 0px !important;
	}
	
	.calculator-section h2 {
		font-size: 2.5rem !important;
		line-height: 1.2 !important;
		margin-bottom: 30px !important;
	}
	
	.input-field-wrapper {
		margin-bottom: 25px !important;
	}
	
	.field-label {
		font-size: 1.1rem !important;
		margin-bottom: 10px !important;
	}
	
	.from-input,
	.to-input,
	.dropdown {
		font-size: 1rem !important;
		padding: 10px !important;
	}
	
	.beregn-button,
	.booking-cta {
		font-size: 1.15rem !important;
		padding: 18px 30px !important;
		width: 100% !important;
	}
	
	#w-node-cef0619d-004c-66fe-e897-65371f768b26-5dda7e41 {
		margin-top: 1rem;
		justify-content: flex-start;
	}
	
	.modal {
		overflow: auto; /* Enable scroll if needed */
	}
	
	.modal-content {
    width: 90%; /* Could be more or less, depending on screen size */
}
.discount-grid {

        grid-template-columns: 1fr;
        grid-gap: 2rem;
    }
	
.nav-buttons {
	position: static;
	display: flex;
	flex-direction: column;
	margin-bottom: 2rem;
	}
	
/*	.logo-buttons-wrapper {
		display: none;
	}*/
	
	.logo-buttons-wrapper {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
	
}
	
	
	.logo-wrapper {
	padding-left: 0.8rem;
	padding-right: 0.8rem;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}


/*	
	.mobile-nav-dropdown {
  position: relative;
  display: none;
  background-color: white;
  min-width: 11rem;
  border-radius: 5px;
  cursor: pointer;
  padding: 0.5rem 1rem;
}
	
	.mobile-nav-dropdown::after {
  content: '\25BC'; 
  font-size: 0.5rem;
  position: absolute;
  right: 10px;
  top: 50%;
   transform: translateY(-50%);
}

.mobile-nav-dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 100%;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
  z-index: 1;
  border-radius: 0px 0px 5px 5px;
  left: 0;
  top: 1.7rem;
	padding-top: 0.5rem;
}

.mobile-nav-dropdown-content a {
  padding: 0.5rem 1rem;

}
	
	.mobile-nav-dropdown img {
	height: 1rem;
}
	
	.mobile-nav-dropdown-content img {
		height: 1rem;
	
	}

.mobile-nav-dropdown-content a:hover {
  background-color: #F3F9FD;
  border-radius: 5px;
}

.mobile-nav-show {
  display: block;
	display: flex;
    flex-direction: column;
}
	
	 */
	
	.input-field-wrapper {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
}
	
#w-node-_29cc3733-1308-c545-f6ff-0ce0c04d1c8b-5dda7e41, #w-node-_29cc3733-1308-c545-f6ff-0ce0c04d1c8e-5dda7e41 {
	align-self: start; 
	}
	
	.dropdown {
		width: 100%;
		border-radius: 5px;
		max-width: 20rem;
	}

.field-label {
	margin-top: 1rem !important;
	}
	
	.from-input, .to-input { 
	border-radius: 5px;
	}
	
	#w-node-cef0619d-004c-66fe-e897-65371f768b26-5dda7e41 {
		margin-top: 1rem;
		justify-content: flex-start;
	}
	
	
	
	
}

/*----- MOBIL DROP DOWN -----*/
/* Dropdown container */

/* Dropdown button */

/* Arrow next to selected item */

/* Dropdown content (hidden by default) */

/* Dropdown content links */

/* Show the dropdown content */
.show {
  display: block;
  height: 12rem;
  overflow: scroll;
}

#mobile-selectedItemImage {
  height: 20px;
  width: auto;
}

h4 {
  margin-bottom: 0px;
  color: #002f6c;
  margin-top: 0;
  font-family: korolev, sans-serif;
}


.e45-video-section {
    flex: 0 0 40%; /* 40% of the container width */
    margin: 0; /* Remove any default margins */
    padding: 0; /* Remove any default padding */
    display: flex;
    justify-content: center;
    align-items: center;
}


.e45-video {
    width: 100%; /* Ensure the video/image fills the section */
    height: auto; /* Maintain aspect ratio */
    max-height: 650px; /* Limit the maximum height */
    -o-object-fit: cover;
       object-fit: cover; /* Crop the video/image to fit the container */
}

.e45-section {
    display: flex;
    background-color: #ffffff;
    border-radius: 5px;
    overflow: hidden;
    margin: 0 20px;
    margin-left: auto;
    margin-right: auto;
	max-width: 1600px;
}

/* Traffic Section Styling */
.traffic-section h2 {
    color: #b71928;
}

.traffic-section .mobile-only {
    display: none;
}


.e45-text-section {
    flex: 1;
    padding: 20px 100px 20px 50px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.e45-text-section h2 {
    color: #002f6c;
    margin-top: 0;
    font-family: korolev, sans-serif;
}

.e45-text-section p {
    color: #002f6c;
    line-height: 1.5;
    font-family: korolev, sans-serif;
    font-size: 16px;
    margin: 8px 0;
}

.e45-text-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.e45-text-section ul li {
    color: #002f6c;
    line-height: 1.5;
    font-family: korolev, sans-serif;
    margin-bottom: 10px;
    padding-left: 40px; /* Space for the icon */
    position: relative;
    display: flex;
    align-items: center;
    font-size: 16px;
}

.e45-text-section ul li .icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
}

.e45-text-section ul li .icon svg {
    width: 100%;
    height: 100%;
}


.e45-video-section {
    flex: 1;
    margin: 0;
    padding: 20px 0px; /* Add padding to create space between text and video/image */
    display: flex;
    justify-content: center;
    align-items: center;
}


.e45-video {
    width: 100%;
    height: 600px; /* Set fixed height for higher aspect ratio */
    -o-object-fit: cover;
       object-fit: cover; /* Crop the video/image to fit the container */
    border-top-left-radius: 100px; /* Rounded top left corner */
    border-bottom-right-radius: 100px; /* Rounded bottom right corner */
    border-top-right-radius: 20px; /* Rounded top left corner */
    border-bottom-left-radius: 20px; /* Rounded bottom right corner */
}

.desktop-e45-video {
    display: block;
}

.mobile-e45-video {
    display: none;
}

/* Specifik klasse til at ændre placeringen af billedet til højre */

/* Small button adjustments */
.small-button {
    max-width: 400px; /* Ensures the button width is auto */
    margin-top: 50px;
    text-align: center;
}


/* Media query for mobile devices */
@media (max-width: 768px) {
    
    .e45-section {
        flex-direction: column;
        margin: 0;
        padding: 40px 0 !important;
        overflow: visible;
        border-radius: 0 !important;
        background: transparent !important;
    }
    
    .e45-video-section {
        order: -1;
        padding: 0 !important;
    }
	
    .e45-text-section {
        padding: 24px 0px !important;
        background: transparent !important;
    }
    
    .traffic-section .e45-video-section {
        position: relative;
        overflow: visible;
    }
    
    .traffic-section .mobile-only {
        display: flex !important;
        width: 100%;
        justify-content: center;
    }
    
    .e45-text-section h2 {
        font-size: 2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 25px !important;
    }
    
    .e45-text-section p {
        font-size: 1.15rem !important;
        line-height: 1.7 !important;
    }
    
    .e45-text-section ul {
        margin-bottom: 30px !important;
    }
    
    .e45-text-section li {
        font-size: 1.05rem !important;
        line-height: 1.6 !important;
        margin-bottom: 15px !important;
    }
    
    .e45-video {
        width: 100%;
        height: auto;
        max-height: 350px;
        -o-object-fit: cover;
           object-fit: cover;
        border-radius: 10px 10px 0 0;
    }
    
    .desktop-e45-video {
        display: none;
    }
    
    .mobile-e45-video {
        display: block;
    }
    
    .e45-text-section .booking-cta {
        width: 100%;
        max-width: 100%;
        padding: 18px 30px !important;
        font-size: 1.15rem !important;
        margin-top: 10px;
    }

    /* Spacing mellem kortene på mobil */
    .page-section:not(:last-child) {
        margin-bottom: 60px;
    }

    /* Fjern spacing-bottom på mobil for alle page-section elementer */
    /* da vi allerede har margin-bottom mellem kortene */
    .page-section.spacing-bottom {
        padding-bottom: 0 !important;
    }

}


@media screen and (max-width: 520px) {
	.logo-buttons-wrapper{
	display:none;}
}


/* Story Section */
.story-section {
    background-color: #001F47;
    padding: 60px 20px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.story-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}


.story-content p {
    color: white;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.story-button {
    background-color: #b71928;
    color: white !important;
    padding: 15px 30px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    font-weight: bold !important;
    font-size: 1.1rem !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    transition: background-color 0.3s ease !important;
    cursor: pointer !important;
    position: relative !important;
}

/* Christmas hat decoration */
.story-button::after {
    content: '';
    position: absolute;
    top: -22px;
    right: -14px;
    width: 48px;
    height: 48px;
    background-image: url('/assets/logo/grafics/christmas_hat.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
    transform: rotate(20deg);
    transform-origin: bottom right;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
    z-index: 10;
}

.story-button:hover::after {
    transform: rotate(15deg) scale(1.05);
}

@keyframes wiggle {
    0%, 100% { transform: rotate(15deg) scale(1.05); }
    33% { transform: rotate(18deg) scale(1.05); }
    66% { transform: rotate(12deg) scale(1.05); }
}

.story-button svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.story-button:hover {
    background-color: #8b0f1a !important;
    color: white !important;
    text-decoration: none !important;
}

/* ============================================
   IMAGE CARD SECTION (billede baggrund + kort ovenpå)
   ============================================ */

.image-card-section {
    background-color: white;
    padding: 80px 20px 140px 20px;
    position: relative;
    z-index: 1;
}

.image-card-layout {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    height: 800px;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.background-image-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.content-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 80px;
}

.content-box {
    background-color: #001F47;
    border-radius: 120px 20px 120px 20px;
    padding: 100px 60px;
    text-align: left;
    max-width: 600px;
    min-height: 550px;
}

.content-box h2 {
    color: white;
    font-family: 'CoreRhino', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 30px 0;
}

.content-box p {
    color: white;
    font-family: korolev, sans-serif;
    font-size: 1.2rem;
    line-height: 1.7;
    margin: 0 0 20px 0;
    max-width: 300px;
}

.content-box p:last-of-type {
    margin-bottom: 40px;
    font-weight: 500;
}

.content-box .booking-cta {
    width: fit-content;
    margin: 0;
}

/* Mobile */
@media (max-width: 768px) {
    .image-card-section {
        padding: 60px 20px 80px 20px;
        margin-top: 40px;
    }
    
    .image-card-layout {
        flex-direction: column;
        height: auto;
        min-height: auto;
        max-width: 500px;
        border-radius: 10px !important;
        overflow: hidden !important;
    }
    
    .background-image {
        position: relative;
        width: 100%;
        height: 400px;
    }
    
    .background-image-element {
        border-radius: 0 !important;
    }
    
    .content-overlay {
        position: relative;
        width: 100%;
        justify-content: center;
        padding: 0;
    }
    
    .content-box {
        border-radius: 0 !important;
        padding: 50px 30px;
        width: 100%;
        max-width: 100%;
        min-height: auto;
        margin: 0;
    }
    
    .content-box h2 {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .content-box p {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 18px;
    }
    
    .content-box p:last-of-type {
        margin-bottom: 35px;
    }
    
    .content-box .booking-cta {
        width: 100%;
        padding: 18px 30px;
        font-size: 1.15rem;
    }
}

/* Poll Sektion med Video */
.poll-section {
    background-color: white !important;
    padding: 80px 20px 80px 20px !important;
    position: relative !important;
    z-index: 10 !important;
    clear: both !important;
    width: 100% !important;
    display: block !important;
}

.poll-video-content {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    height: 700px;
}

.poll-header {
    text-align: center;
    margin-bottom: 60px;
}

.poll-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.poll-video-element {
    width: 100%;
    height: 100%;
    max-width: 1600px;
    height: 700px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Poll step animations */
.poll-step-transition {
    transition: all 0.5s ease-in-out;
}

.poll-step-fade-out {
    opacity: 0;
    transition: opacity 0.15s ease-out;
}

.poll-step-fade-in {
    opacity: 0;
    transition: opacity 0.15s ease-in;
}

.poll-step-fade-in.active {
    opacity: 1;
}

.poll-step2 {
    opacity: 0;
    transition: opacity 0.2s ease-in;
}

.poll-step2.visible {
    opacity: 1;
}

.poll-results-in-form {
    animation: fadeInUp 0.4s ease-in-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}







/* Kombardo-sang Section */
.kombardo-section {
    background: white;
    padding: 80px 0;
}

.kombardo-section .kombardo {
    margin: 0;
    padding: 0;
    width: 100%;
}

.kombardo-section .booking-cta.full-width {
    width: 100%;
    display: block;
    text-align: center;
    margin: 0;
    padding: 15px 20px;
    box-sizing: border-box;
}


.poll-content {
    position: absolute;
    top: 65%;
    right: 7%;
    transform: translateY(-50%);
    z-index: 10;
    width: 45%;
    max-width: 500px;
    min-height: 500px;
}

.poll-header h2 {
    color: #132352;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1.2;
}

.poll-subtitle {
    color: #132352;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.poll-form-container {
    margin-top: 0;
}

.poll-form {
    background-color: #001F47;
    border-radius: 120px 20px 120px 20px !important;
    padding: 55px 35px !important;
    width: 100% !important;
    max-width: 450px !important;
    height: fit-content !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.poll-prize {
    text-align: center;
    margin-bottom: 30px;
}

.poll-prize h3 {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.poll-prize p {
    color: #2BF6A5;
    font-size: 1.1rem;
    font-weight: 600;
}

.poll-form-element h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.poll-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 25px;
}

.poll-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #2BF6A5;
    border-radius: 50px;
    padding: 12px 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.poll-option:hover {
    background-color: #25d494;
    transform: translateY(-2px);
}

.poll-option input[type="radio"] {
    display: none;
}

.poll-option input[type="radio"]:checked + .option-text {
    font-weight: bold;
}

.poll-option:has(input[type="radio"]:checked) {
    transform: scale(1.02);
    border-color: #132352;
}

/* Checkmark indicator */
.poll-option::after {
    content: '✓';
    font-size: 1.2rem;
    font-weight: bold;
    color: #132352;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
    margin-left: 10px;
}

.poll-option:has(input[type="radio"]:checked)::after {
    opacity: 1;
    transform: scale(1);
}

/* Special styling for "Udfyld selv" section */
.custom-answer-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#customRadio {
    display: none !important;
}

.poll-option.custom-option {
    background-color: white !important;
    padding: 12px 18px;
    min-height: auto;
    margin-bottom: 0;
    border-radius: 50px;
    border: 2px solid #e0e0e0;
}

.poll-option.custom-option .option-text {
    color: #132352 !important;
    font-weight: 700;
    font-size: 1rem;
    margin-right: 0;
}

.poll-option.custom-option:hover {
    background-color: #f8f9fa !important;
    border-color: #25d494;
}

.poll-option.custom-option:has(input[type="radio"]:checked) {
    transform: scale(1.02);
    border-color: #132352 !important;
}

/* Checkmark for custom option */
.poll-option.custom-option::after {
    color: #2BF6A5;
}

.custom-input-container {
    display: none;
}

.custom-input-container.show {
    display: block;
}

.custom-text-input {
    width: 100%;
    padding: 12px 18px;
    border: 2px solid #2BF6A5;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    background: white;
    color: #132352;
    text-align: left;
    outline: none;
}

.custom-text-input:focus {
    border-color: #25d494;
    background: #f8f9fa;
}


.custom-text-input::placeholder {
    color: #132352;
    opacity: 0.7;
}



.option-text {
    color: #132352;
    font-size: 1rem;
    font-weight: 700;
    flex: 1;
}

.custom-input {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 8px 12px;
    margin-left: 0;
    flex: 1;
    font-size: 0.9rem;
    color: #333;
    transition: border-color 0.2s ease;
}

.custom-input:focus {
    outline: none;
    border-color: #2BF6A5;
    background-color: white;
}

.custom-input::placeholder {
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .poll-section:not(.santa-ferry-section) {
        padding: 0 !important;
    }
    
    .poll-header {
        display: none !important;
    }
    
    .poll-video-content {
        flex-direction: column !important;
        position: relative !important;
        min-height: auto !important;
        height: auto !important;
        margin: 0 !important;
        gap: 0 !important;
    }
    
    .poll-video {
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        margin-bottom: -5px !important;
    }
    
    .poll-video-element {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        border: none !important;
    }
    
    .poll-content {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 40px 20px !important;
    }
    
    .poll-form {
        background-color: #132352 !important;
        border-radius: 0 !important;
        padding: 20px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-shadow: none !important;
        margin: 0 !important;
    }

    .poll-option {
        padding: 10px 15px !important;
    }
    
    .poll-options {
        gap: 20px !important;
    }

    .story-section {
        padding: 40px 20px;
    }
    
    
}

/* GDPR Checkbox Styling */
.gdpr-checkbox {
    margin: 20px 0;
    text-align: left;
}

.gdpr-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
    color: white;
}

.gdpr-label input[type="checkbox"] {
    margin: 0;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.gdpr-text {
    color: white;
    font-size: 0.85rem;
    line-height: 1.3;
}

.poll-submit {
    text-align: center;
}

.poll-submit-btn {
    /* Inherits from .cta base styling */
    /* Make it bigger than default .cta */
    padding: 18px 40px !important;
    font-size: 1.2rem !important;
}

/* Ensure scroll down icon has highest z-index */
.scroll-down-icon {
    z-index: 9999 !important;
}

.scroll-icon_wrapper {
    z-index: 9999 !important;
}

/* Poll Step 2 styling */
.poll-input-field {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    background: white !important;
    color: #132352 !important;
    font-family: inherit;
}

.poll-input-field::placeholder {
    color: #6c757d !important;
}

.poll-input-field:focus {
    outline: none;
    border-color: #132352 !important;
    background: white !important;
    color: #132352 !important;
    box-shadow: 0 0 0 2px rgba(19, 35, 82, 0.1);
}



/* Clean Poll Results - minimal and elegant */
.poll-results-clean {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
    max-height: 400px;
}

.result-item-clean {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 16px 24px;
    transition: all 0.2s ease;
    cursor: default;
    min-height: 60px;
    font-size: 14px;
}


.result-text-clean {
    color: white;
    font-weight: 500;
    font-size: 0.85rem;
    white-space: nowrap;
    flex: 1;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 12px;
    line-height: 1.3;
}

.result-percentage-clean {
    color: #2BF6A5;
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 40px;
    text-align: right;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .story-content {
        padding: 0;
        text-align: center;
    }
    
    .story-content p {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    
    .story-section {
        padding: 80px 20px;
    }
    
    .story-content p {
        font-size: 1.15rem !important;
        line-height: 1.7 !important;
        margin-bottom: 35px !important;
    }
    
    .story-button {
        display: inline-flex;
        margin: 0 auto;
        width: fit-content !important;
        padding: 18px 35px !important;
        font-size: 1.15rem !important;
        text-align: center !important;
        justify-content: center !important;
    }
    
    .story-button::after {
        top: -20px;
        right: -8px;
        width: 46px;
        height: 46px;
    }
    
    .poll-header h2 {
        font-size: 2rem;
    }
    
    .poll-subtitle {
        font-size: 1.1rem;
    }

    .page-section {
        padding-top: 0;
        padding-bottom: 40px;
    }

    .poll-content {
        padding: 0 !important;
    }
}

/* E45 eller færgen modul */
.e45-or-ferry-module {
    position: relative;
    width: 100%;
    max-width: 1600px;
    margin: 0 20px 80px 20px;
    margin-left: auto;
    margin-right: auto;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
}

.e45-or-ferry-image-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.e45-or-ferry-image-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.e45-or-ferry-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    object-position: center 40%;
}

.e45-or-ferry-text-section {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 60px 40px;
    text-align: center;
}

.e45-or-ferry-text-section h2 {
    color: white;
    margin-top: 0;
    font-family: korolev, sans-serif;
    font-size: 3.5rem;
    margin-bottom: 0;
    line-height: 1.2;
    font-weight: 700;
}

.e45-or-ferry-text-section p {
    color: white;
    line-height: 1.6;
    font-family: korolev, sans-serif;
    margin: 0;
    font-size: 1.1rem;
}

/* Mobile responsive for E45 modul */
@media (max-width: 768px) {
    .e45-or-ferry-module {
        min-height: 400px;
        margin-bottom: 60px;
        border-radius: 0;
    }
    
    .e45-or-ferry-image {
        min-height: 400px;
    }
    
    .e45-or-ferry-text-section {
        padding: 120px 30px;
    }
    
    .e45-or-ferry-text-section h2 {
        font-size: 2.8rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .e45-or-ferry-text-section p {
        font-size: 1.15rem;
        line-height: 1.7;
    }


}

/* Santa Ferry Module - now uses generic .image-module classes */

/* Mød The Santas Section */
.santas-section {
    background-color: #001F47;
    padding: 120px 20px 80px 20px;
    width: 100%;
    position: relative;
    overflow: visible;
    margin-top: -1px;
    margin-bottom: -1px;
}

.santas-section::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    width: 100%;
    height: 50px;
    background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='50' viewBox='0 0 1440 50' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,25 C180,5 200,45 360,20 C520,8 540,38 720,28 C900,18 920,42 1080,25 C1240,12 1260,40 1440,28 L1440,50 L0,50 Z' fill='%23001F47'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 10;
}

.santas-section::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    width: 100%;
    height: 50px;
    background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='50' viewBox='0 0 1440 50' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,28 C180,45 200,8 360,22 C520,42 540,10 720,25 C900,40 920,12 1080,28 C1240,42 1260,10 1440,25 L1440,0 L0,0 Z' fill='%23001F47'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 0;
}

.santas-container {
    max-width: 1600px;
    margin: 0 20px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 10;
}


.santas-title {
    font-family: 'CoreRhino', sans-serif;
    font-weight: 700;
    position: relative;
    z-index: 10;
    font-size: 4rem;
    color: #fff;
    text-align: center;
    margin-bottom: 80px;
    line-height: 1.2;
}

.santas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6rem;
    margin-bottom: 60px;
}

.santa-card {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.santa-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.santa-content {
    color: #fff;
    max-width: 550px;
}

.santa-name {
    font-family: 'CoreRhino', sans-serif;
    font-weight: 500;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 20px;
    margin-top: 0;
}

.santa-role,
.santa-description,
.santa-trait {
    font-family: korolev, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 12px;
    color: #fff;
    font-weight: 100;
}

.santa-role {
    margin-bottom: 12px;
}

.santa-description {
    margin-bottom: 12px;
}

.santa-role .label,
.santa-description .label,
.santa-trait .label {
    color: #bf4a54;
    font-weight: 700;
}

.santas-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
}

.santas-cta-button {
    background-color: #b71928;
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-family: korolev, sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    text-align: center;
}

.santas-cta-button svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.santas-cta-button:hover {
    background-color: #8b0f1a;
    color: #fff;
    text-decoration: none;
}

.moon-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

.moon-icon {
    width: 40px;
    height: 40px;
    fill: none;
    stroke: #fff;
}

/* ============================================
   SNOWFLAKES ANIMATION
   ============================================ */

.snowflakes {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: calc(100% + 100px);
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.snowflake {
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation-name: snowfall;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes snowfall {
    0% {
        top: -30%;
        opacity: 0;
    }
    15% {
        opacity: var(--target-opacity, 1);
    }
    85% {
        opacity: var(--target-opacity, 1);
    }
    100% {
        top: 110%;
        opacity: 0;
    }
}

/* Create many variations for natural movement and depth */
.snowflake:nth-child(4n) {
    width: 6px;
    height: 6px;
}

.snowflake:nth-child(5n) {
    width: 10px;
    height: 10px;
}

.snowflake:nth-child(7n) {
    width: 7px;
    height: 7px;
}

.snowflake:nth-child(9n) {
    width: 5px;
    height: 5px;
}

.snowflake:nth-child(11n) {
    width: 12px;
    height: 12px;
}

.snowflake:nth-child(13n) {
    width: 4px;
    height: 4px;
}

/* Ensure santas content is above snow */
.santas-container {
    position: relative;
    z-index: 2;
}

/* Mobile responsive for Santas section */
@media (max-width: 768px) {
    .santas-section {
        padding: 80px 20px 60px 20px;
    }
    
    .santas-section::before {
        background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='50' viewBox='0 0 1440 50' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,25 C480,5 480,45 720,30 C960,15 960,42 1440,28 L1440,50 L0,50 Z' fill='%23001F47'/%3E%3C/svg%3E");
    }
    
    .santas-section::after {
        background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='50' viewBox='0 0 1440 50' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,28 C480,45 480,8 720,25 C960,42 960,10 1440,25 L1440,0 L0,0 Z' fill='%23001F47'/%3E%3C/svg%3E");
    }
    
    .santas-title {
        font-size: 2.8rem;
        margin-bottom: 50px;
        line-height: 1.2;
    }
    
    .santas-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        margin-bottom: 50px;
    }
    
    .santa-card {
        gap: 2rem;
    }
    
    .santa-image {
        aspect-ratio: 4 / 3;
        object-fit: cover;
        border-top-left-radius: 60px;
        border-bottom-right-radius: 60px;
        border-top-right-radius: 15px;
        border-bottom-left-radius: 15px;
    }
    
    .santa-content {
        max-width: 100%;
    }
    
    .santa-name {
        font-size: 1.8rem;
        margin-bottom: 18px;
        line-height: 1.2;
    }
    
    .santa-role,
    .santa-description,
    .santa-trait {
        font-size: 1.05rem;
        line-height: 1.6;
        margin-bottom: 14px;
    }
    
    .santas-cta-wrapper {
        flex-direction: column;
        gap: 18px;
        margin-bottom: 60px;
    }
    
    .santas-cta-button {
        text-align: center;
        padding: 18px 35px;
        font-size: 1.15rem;
    }
}

/* Newsletter Signup Section */
.newsletter-section {
    background-color: #022655;
    padding: 100px 0;
    position: relative;
    width: 100%;
    overflow: visible;
}

.newsletter-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0 0 40px;
    position: relative;
}

.newsletter-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
}

.newsletter-form-wrapper {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    position: relative;
}

.newsletter-heading {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 30px;
}

.newsletter-form {
    width: 100%;
}

.newsletter-input-group {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.newsletter-input {
    flex: 1;
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background-color: #ffffff;
    color: #00204a;
    outline: none;
    transition: box-shadow 0.3s ease;
}

.newsletter-input:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-input::placeholder {
    color: #666;
}

.newsletter-submit {
    padding: 14px 40px;
    background-color: #e30613;
    color: #ffffff;
    border: none;
    border-radius: 6.25rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.newsletter-submit:hover {
    background-color: #c1050f;
    transform: translateY(-2px);
}

.newsletter-submit:active {
    transform: translateY(0);
}

.newsletter-disclaimer {
    color: #ffffff;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-top: 15px;
}

.newsletter-disclaimer p {
    margin: 5px 0;
}

.newsletter-link {
    color: #ffffff;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.newsletter-link:hover {
    opacity: 0.8;
}

.newsletter-success {
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid #ffffff;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    color: #ffffff;
    text-align: center;
}

.newsletter-success p {
    margin: 8px 0;
    font-size: 1rem;
    line-height: 1.5;
}

.newsletter-success strong {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 10px;
}

/* Newsletter success animation */
@keyframes newsletterSuccessSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    70% {
        opacity: 0.8;
        transform: translateY(2px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.newsletter-success.animate {
    animation: newsletterSuccessSlideIn 0.7s ease-out;
}

.newsletter-error {
    background-color: rgba(227, 6, 19, 0.2);
    border: 2px solid #e30613;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
    color: #ffffff;
    text-align: center;
    font-size: 0.9rem;
}

.newsletter-hand-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    position: relative;
    z-index: 1;
    min-width: 0;
    padding-top: 0;
    margin-top: -100px;
}

@media (min-width: 1201px) {
    .newsletter-hand-image {
        margin-right: calc((100vw - 1200px) / 2 * -1);
    }
}

@media (max-width: 1200px) and (min-width: 969px) {
    .newsletter-hand-image {
        margin-right: -100px;
    }
}

.newsletter-hand-image img {
    max-width: none;
    width: auto;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    position: relative;
    right: 0;
    margin-right: -100px;
    margin-top: 0;
    transform: rotate(-5deg);
    transform-origin: right center;
}

@media (max-width: 968px) {
    .newsletter-section {
        padding: 80px 0;
        overflow: hidden;
    }
    
    .newsletter-content {
        flex-direction: column;
        gap: 0px;
    }


    .newsletter-container {
        padding: 0;
    }
    
    .newsletter-form-wrapper {
        max-width: 100%;
        padding: 0 20px;
        order: 2;
    }
    
    .newsletter-heading {
        font-size: 1.6rem;
        text-align: left;
    }
    
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .newsletter-submit {
        width: 100%;
    }
    
    .newsletter-hand-image {
        justify-content: flex-end;
        max-width: none;
        width: 100%;
        margin: 0 !important;
        padding-top: 0;
        align-items: flex-start;
        position: relative;
        margin-top: -40px;
        order: 1;
    }
    
    .newsletter-hand-image img {
        max-height: 200px;
        position: relative;
        right: 78px;
        top: -145px;
        margin-right: 0 !important;
        margin-top: 0;
        transform: rotate(-52deg);
        transform-origin: right top;
    }
}

@media (max-width: 568px) {

    
    .newsletter-heading {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }
    
    .newsletter-input,
    .newsletter-submit {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .newsletter-disclaimer {
        font-size: 0.8rem;
        text-align: left;
    }
}
