
		body{
		font-family: "Roboto", sans-serif;
		font-weight: 400;
		font-style: normal;
		}

        /* NAVBAR */
        .header {
            transition: background-color 0.3s ease, box-shadow 0.3s ease;
        }

        header.transparent {
            background-color: transparent;
        }

        header.scrolled {
            background-color: #fff !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

		 header.scrolled .nav-link {
		  color: #042f4a !important; 
		}

		header.scrolled .btn-outline-light {
		  --bs-btn-color: #042f4a;
		 --bs-btn-border-color: #042f4a;
		}
	
		
		/* ONE BORDER FOR CENTER + RIGHT */
		.nav-section {
			position: relative;
			padding-bottom: 12px;
		}

		.nav-section::after {
			content: "";
			position: absolute;
			left: 120px;           /* starts after logo */
			right: 0;
			bottom: 0;
			height: 2px;
			background-color: rgba(255,255,255,0.7);
			transition: background-color 0.3s ease;
		}

		/* NAVBAR AFTER SCROLL */
		.navbar.scrolled .nav-section::after {
			background-color: #000;
		}

		/* ACTIVE MENU ITEM */
		.navbar .nav-link {
			position: relative;
			padding-bottom: 12px;
		}

		.navbar .nav-link.active::after {
			content: "";
			position: absolute;
			left: 0;
			bottom: -2px; /* sits on top of section border */
			width: 100%;
			height: 3px;
			background-color: #ca2e27;
		}

		/* SECTION BORDER (DESKTOP ONLY) */
@media (min-width: 992px) {
    .nav-section {
        position: relative;
        padding-bottom: 12px;
    }

    .nav-section::after {
        content: "";
        position: absolute;
        left: 120px; /* after logo */
        right: 0;
        bottom: 0;
        height: 2px;
        background-color: rgba(255,255,255,0.7);
        transition: background-color 0.3s ease;
    }

    .navbar.scrolled .nav-section::after {
        background-color: #000;
    }

    /* ACTIVE MENU ITEM */
    .navbar .nav-link {
        position: relative;
        padding-bottom: 12px;
    }

    .navbar .nav-link.active::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 100%;
        height: 3px;
        background-color: #ca2e27;
    }
}

/* MOBILE MENU CLEANUP */
@media (max-width: 991px) {
    .navbar {
        background-color: #fff;
    }

    .nav-link {
        padding: 12px 0;
    }
}

/*-------------------------------------
  - Dropdown Toggle (Link) Styling -
-------------------------------------*/

.nav-link.dropdown-toggle {
    transition: all 0.2s ease;
}

    .nav-link.dropdown-toggle[aria-expanded="true"] {
        color: #007bff;
    }

.dropdown-divider {
    margin: 8px 0;
    border-top-color: #e9ecef;
}

.dropdown-toggle::after {
    display: none;
}

/* Add custom Bootstrap icon */
.dropdown-toggle {
    position: relative;
}

.dropdown-toggle .bi-chevron-down {
    margin-left: 0.5rem;
    font-size: 0.875em;
    transition: transform 0.3s ease;
}

/* Optional: Rotate arrow when dropdown is open */
.dropdown-toggle[aria-expanded="true"] .bi-chevron-down {
    transform: rotate(180deg);
}
/* Mobile dropdown behavior inside offcanvas */
.offcanvas .dropdown-menu {
    position: static !important; /* stack below the toggle item */
    float: none; /* reset Bootstrap float */
    margin-top: 0.25rem; /* small gap under toggle */
    margin-bottom: 0.25rem !important; /* small gap under toggle */
    box-shadow: none; /* remove desktop shadow */
    padding: 0; /* align items with menu */
    transition: none; /* no animation for mobile */
    visibility: visible; /* always visible when 'show' is added */
    opacity: 1;
    transform: none !important;
    background-color: #fff;
}

.offcanvas .dropdown-item:hover {
    background-color:#fff !important;
    color:#000 !important;
    border-radius:8px;
}

 .offcanvas .dropdown-item {
    padding: 10px 15px;
    border-radius: 0; /* flush look */
}

.offcanvas .offcanvas-end{
    border:0px solid black;
}

.offcanvas .dropdown-item::after {
    float: right;
    content: "\f138";
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1.6;
    vertical-align: -.125em;
}

.logo {
	transition: transform 1s ease;
	width:auto;
	height:120px;
}

.scrolled .logo{		
	height:75px !important;
}

.nav {
    --bs-nav-link-padding-x: 0.6rem !important;
    --bs-nav-link-padding-y: 0.5rem !important;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #042f4a;
}

.nav-tabs .nav-link.active {
    background-color: #000 !important;
    color: #fff !important;
}
/* Remove default pill styles */
.nav-pills .nav-link {
    border-radius: 0;
    border-bottom: 1px solid transparent;
    color: #fff !important;
    font-size: 1rem;
	letter-spacing:0.1rem;
    font-weight: 500;
}

/* Add active state */
.nav-pills .nav-link.active {
    border-bottom-color: #042f4a;
    background-color: transparent;
    color: #fff !important;
}


/* Change hover color */
.dropdown-item:hover {
    background-color: #042f4a !important; /* Your desired hover background color */
    color: white !important; /* Optional: text color on hover */
}

/* Change active (click) color */
.dropdown-item:active {
    background-color: #000 !important; /* Your desired active background color */
    color: white; /* Optional: text color when clicked */
}

/* Custom CSS for a smooth, modern Bootstrap dropdown */

/* Hide the dropdown menu initially without using display: none */
.dropdown-menu {
    /* Use visibility and opacity for smooth transitions */
    visibility: hidden;
    opacity: 0;
    /* Start the menu slightly above its final position */
    transform: translateY(-10px);
    /* Add a smooth transition for all animated properties */
    transition: opacity 0.3s ease-out, transform 0.3s ease-out, visibility 0.3s ease-out;
    /* Box-shadow, border, and padding from before */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    border: none;
    padding: 8px;
    background-color: #ffffff;
}

    /* When the dropdown is open (has the 'show' class), make it visible */
    .dropdown-menu.show {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

/*-------------------------------------
  - Dropdown Item Styling -
-------------------------------------*/

/* Target the individual dropdown items */
.dropdown-item {
    /* The rest of your original styling remains here */
    padding: 10px 15px;    
    color: #333;
    transition: background-color 0.2s ease, color 0.2s ease;
    border-radius: 6px;
}

    /* Style the dropdown item on hover */
    .dropdown-item:hover,
    .dropdown-item:focus {
        background-color: #042f4a;
        color: #000;
    }

    /* Remove the default hover background from the active item */
    .dropdown-item.active,
    .dropdown-item:active {
        background-color: #007bff;
        color: #fff;
    }

/*-------------------------------------
  - Dropdown Toggle (Link) Styling -
-------------------------------------*/

.nav-link.dropdown-toggle {
    transition: all 0.2s ease;
}

    .nav-link.dropdown-toggle[aria-expanded="true"] {
        color: #007bff;
    }

.dropdown-divider {
    margin: 8px 0;
    border-top-color: #e9ecef;
}

.dropdown-toggle::after {
    display: none;
}

/* Add custom Bootstrap icon */
.dropdown-toggle {
    position: relative;
}

.dropdown-toggle .bi-chevron-down {
    margin-left: 0.5rem;
    font-size: 0.875em;
    transition: transform 0.3s ease;
}

/* Optional: Rotate arrow when dropdown is open */
.dropdown-toggle[aria-expanded="true"] .bi-chevron-down {
    transform: rotate(180deg);
}

.offcanvas .dropdown-item:hover {
    background-color:#fff !important;
    color:#000 !important;
    border-radius:8px;
}

 .offcanvas .dropdown-item {
    padding: 10px 15px;
    border-radius: 0; /* flush look */
}

.offcanvas .offcanvas-end{
    border:0px solid black;
}

.offcanvas .dropdown-item::after {
    float: right;
    content: "\f138";
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1.6;
    vertical-align: -.125em;
}

.news-item {
    height: 500px; /* same height for all */
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

/* DARK OVERLAY */
.news-item::before {
    content: "";
    position: absolute;
    inset: 0; /* top:0; bottom:0; left:0; right:0; */
    background-color: rgba(0, 0, 0, 0.2); /* 70% dark */
    z-index: 1;
}

/* CONTENT ABOVE OVERLAY */
.news-item > * {
    position: relative;
    z-index: 2;
}

.nieuws-text{
   font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.agenda-item {
    height: 200px; /* same height for all */
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
	box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.agenda-item:hover {
    transform: scale(1.03);
}


.agenda-date span{
    font-weight: 400;
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 15px;
}

/* Bottom area */
.agenda-bottom {
    /* already flex container */
}

.agenda-title {
    font-weight: bold;
    font-size: 1.5rem;
}

.nieuws-title{
    font-weight: bold;
    font-size: 1.7rem;
	line-height:1.7rem;
}

.agenda-location {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
}


/* Right-bottom circular arrow */
.agenda-arrow {
    display: flex;               /* flex to center the icon */
    justify-content: center;
    align-items: center;
    width: 40px;                 /* fixed width */
    height: 40px;                /* fixed height */
    border-radius: 50%;          /* makes it circular */
    background-color: #000;      /* example */
    color: #fff;
    text-decoration: none;
    flex-shrink: 0;              /* prevents shrinking when container is small */
}
.agenda-arrow i {
    font-size: 1.2rem;           /* adjust size of the arrow */
}
.agenda-arrow:hover {
    background-color: #ca2e27;
    transform: scale(1.1);
}

.bg-danger{
background-color:#ca2e27 !important;
}

.btn-primary{
background-color:#042f4a;
border:0px solid #042f4a;
}


.btn-primary:hover{
background-color:#ca2e27;
border:0px solid #ca2e27;
}

.text a{
color: #ca2e27;
    text-decoration: underline;
}


.bg-blue1{
background-color:#ebf6fc;
}

.bg-blue {
 background: linear-gradient(to bottom, #ebf6fc 0px, white 800px);
}

.bg-blue-2 {
background: linear-gradient(to bottom, #ebf6fc 0%, white 100%);
}

.fs-4{
font-weight: 300;

}
.dark-blue-text,
.dark-blue,
h1{
color:#042f4a;
}

.bg-dark-blue{
background-color:#042f4a;
}

.dark-blue{
font-size:1.6rem;
}

h2 span,
h1 span{
color:#ca2e27;
}

.btn-light{
background-color:#fff;
}

.hero-vervolg h1,
.hero h1{
color:#fff !important;
}

.logocontainer {
    position: relative;
    overflow: hidden;
	padding:8rem 0rem 6rem 0rem;
}

@media (max-width: 992px) {
	.logocontainer {
		position: relative;
		overflow: hidden;
		padding:4rem 0rem 4rem 0rem;
	}
}

.logocontainer2 {
    position: relative;
    overflow: hidden;
	padding:8rem 0rem 0rem 0rem;
}

.logocontainer3 {
    position: relative;
    overflow: hidden;
	padding:4rem 0rem 4rem 0rem;
}

.logocontainer4 {
    position: relative;
    overflow: hidden;
	padding:0rem;
}

.logocontainer5 {
    position: relative;
}

.logocontainer6 {
    position: relative;
	padding:4rem 0rem 4rem 0rem;
}

.logocontainer2::before,
.logocontainer3::before,
.logocontainer6::before,
.logocontainer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../images/alfa-romeo-white.svg') left center no-repeat;
    background-size: 600px auto;
    opacity: 0.45; /* 50% transparency */
    pointer-events: none;
}

.logocontainer4::before,
.logocontainer6::before,
.logocontainer5::before{
    content: "";
    position: absolute;
    inset: 0;
    background: url('../images/alfa-romeo-white.svg') left 20px no-repeat;
    background-size: 600px auto;
    opacity: 0.45; /* 50% transparency */
    pointer-events: none;
}

.logocontainer6 > *,
.logocontainer5 > *,
.logocontainer4 > *,
.logocontainer3 > *,
.logocontainer2 > *,
.logocontainer > * {
    position: relative;
    z-index: 1;
}

.btn{
font-family: "Roboto", sans-serif;
}

.nieuwslabel{
	border:1px solid #fff;
	font-size:1.0rem !important;
font-weight: 400;
	font-style: normal;
}

.usp{
font-weight: 300;
font-size:1.2rem;
}

.bg-dark{
background-color:#292b35;
}

.link-footer{
color:#fff;
display:block;
font-size:1rem;
text-decoration:none;
padding:5px 0px;
}
.agenda-card {
border: none;
border-radius: 1rem;
box-shadow: 0 10px 25px rgba(0,0,0,0.08);
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.agenda-card:hover {
transform: translateY(-4px);
box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}
.agenda-date2 {
background: linear-gradient(135deg, #ca2e27, red);
color: #fff;
border-radius: 1rem 0 0 1rem;

}
.agenda-date2 .day {
font-size: 2rem;
font-weight: 700;
line-height: 1;
}

.agenda-meta span {
display: flex;
align-items: center;
gap: 0.25rem;
font-size: 0.9rem;
}

/* STATIC HERO (non-carousel pages) */
.hero-vervolg {
    height: 40vh;
    position: relative;
    color: white;
}


/* Hero carousel slides */
.hero-slide {
    height: 100vh; /* full viewport */
    display: flex;
    flex-direction: column;
    justify-content: center; /* vertical center of content */
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Overlay for darkening background */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(39,92,115,0.5);
    z-index: 1;
}

.hero-vervolg .hero-content {
    position: relative;
    z-index: 2 !important;
    height: 100% !important;
}

/* Hero content (text) */
.hero-content {
    position: relative;
    z-index: 2;
    max-height: calc(100vh - 200px); /* prevents overlapping the agenda */
}

/* Agenda pinned to bottom */
.agenda-wrapper {
    z-index: 2;
    padding-bottom: 70px; /* optional spacing */
}

/* Fade text */
.fade-text {
    opacity: 0;
    transform: translateY(20px); /* optional slide up */
    transition: opacity 1s ease, transform 1s ease;
}

/* When the slide becomes active */
.carousel-item.active .fade-text {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s; /* small delay before text appears */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 50px 50px; /* bigger arrows */
     
}

#agenda {
  scroll-margin-top: 80px; /* adjust to your header height */
}

/* Circular Swiper Buttons */
.swiper-button-prev,
.swiper-button-next {
  width: 50px;              /* Circle width */
  height: 50px;             /* Circle height */
  border-radius: 50%;       /* Make it circular */
  background-color: #ffffff; /* White background */
  color: #333;              /* Arrow color */
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.3); /* Shadow-lg equivalent */
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  transform: translateY(-50%);
}

/* Make the default Swiper arrows bigger and fit inside the circle */
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 1.5rem; /* Bigger arrow */
  font-weight: bold;
}

/* Optional hover effect */
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: #f8f9fa; /* Bootstrap light hover */
}

.swiper-pagination-bullet {
  width: 8px;           /* Default bullet size */
  height: 8px;
  background-color: #ccc; /* Non-active bullets */
  opacity: 1;             /* Ensure full opacity */
  margin: 10px 4px;          /* Spacing between bullets */
}

.swiper-pagination-bullet-active {
  background-color: #ca2e27 !important;  /* Active bullet is red */
}

/*css v1*/
.breadcrumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding:0;
    margin-bottom: 1rem;
    list-style: none;
    background-color: transparent;
    border-radius: .1875rem;
}

.breadcrumb a{
color:#ccc;
text-decoration:none;
}

.breadcrumb-item .breadcrumb-item::before {
    display: inline-block;
    padding-right: .5rem;
    padding-left: .5rem;
    color: #788487 !important;
    content: "/";
}

.breadcrumb-item .breadcrumb-item:hover::before {
    text-decoration: underline;
}

.breadcrumb-item .breadcrumb-item:hover::before {
    text-decoration: none;
}

.breadcrumb-item .active {
    color: #fff !important;
}

.post-wrapper a{
color:#ca2e27;
text-decoration:underline;
}

.post-header .post-title {
    font-weight: 500;
    font-size: 2rem;
    margin-bottom: 8px;
}

.row-post-masonry .post-header .post-title {
    font-size: 1rem;
    margin-bottom: 14px;
}

.row-post-thumbnail .post-header .post-title {
    font-size: 1.125rem;
    margin-bottom: 6px;
}


.post-content blockquote {
    border-left: 2px solid #eaeaea;
    padding: 10px 0 10px 40px;
    margin: 40px 0;
    transition: all .3s ease-in-out;
}

.post-content blockquote:hover {
    border-color: red;
}

.post-content ul,
.post-content ol {
    margin-left: 40px;
}

.post-content ul {
    list-style-type: disc;
}

.post-content ol {
    list-style-type: decimal;
}


.clickable-card:hover {
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
  transform: translateY(-2px);
  transition: all 0.2s ease-in-out;
}

.cursor-pointer {
  cursor: pointer;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}


hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid #ccc;
}


/* Hover effect for all cards */
.hover-shadow {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-shadow:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Force all card images to same height */
.card-img-top-wrapper {
    height: 250px; /* choose desired uniform height */
    overflow: hidden;
}

.card-img-top-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* crop image without stretching */
}

/* Container overrides */
.custom-pagination .page-item .page-link {
    border-radius: 50% !important;   /* fully round buttons */
    width: 45px;                     /* uniform width */
    height: 45px;                    /* uniform height */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #042f4a !important; /* custom background */
    color: #ffffff !important;            /* custom text color */
    border: none !important;              /* remove default border */
    margin: 0 5px;                        /* spacing between buttons */
    transition: all 0.3s ease;
    font-weight: 600;
}

/* Hover effect */
.custom-pagination .page-item .page-link:hover {
    background-color: #026fa1 !important; /* hover color */
    color: #fff !important;
    transform: translateY(-2px);
}

/* Active page */
.custom-pagination .page-item.active .page-link {
    background-color: #ca2e27  !important; /* active color */
    color: #fff !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Disabled buttons */
.custom-pagination .page-item.disabled .page-link {
    background-color: #d1d5db !important; /* light gray */
    color: #9ca3af !important;            /* darker gray */
    cursor: not-allowed;
}

/* Adjust icon size for arrows */
.custom-pagination .page-item .page-link i {
    font-size: 1.2rem;
}

/* Uniform image size for gallery */
.gallery-img-wrapper {
    width: 100%;         /* full width of column */
    height: 220px;       /* fixed height */
    overflow: hidden;    /* crop overflow */
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* crop image without stretching */
    transition: transform 0.3s ease;
}

/* Optional: hover zoom effect */
.gallery-img-wrapper:hover img {
    transform: scale(1.05);
}

#prevImg, #nextImg {
    cursor: pointer;
    z-index: 1050;
    transition: transform 0.2s;
}
#prevImg:hover, #nextImg:hover {
    transform: scale(1.1);
}
/* Make whole card clickable without blue link styling */
.news-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.shadow-sm{
    box-shadow: 0 10px 25px rgba(0,0,0,0.06) !important;
}

/* Card styling */
.news-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}


.news-card-link:hover .news-card {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}

/* Image */
.news-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

/* Image */
.shop-img-wrapper {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.shop-img-wrapper img,
.news-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.shop-img-wrapper:hover .news-img-wrapper img,
.news-card-link:hover .news-img-wrapper img {
    transform: scale(1.05);
}

/* Body */
.news-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Date */
.news-date {
    font-size: 0.85rem;
    color: #042f4a;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Title */
.news-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    min-height: 60px;
}

/* Excerpt */
.news-excerpt {
    flex-grow: 1;
    color: #555;
    margin-bottom: 1rem;
}

/* Button look */
.btn-brand {
    background-color: #042f4a;
    color: #ffffff;
    border-radius: 50px;
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.news-card-link:hover .btn-brand {
    background-color: #021f32;
}


.ulmenu{
	list-style-type:none;
	padding:0;
	margin:0;
}

.ulmenu a{
	color:#ca2e27;
	text-decoration:none;
	display:block;
    transition: padding 0.3s ease;  /* animation setup */
}

.ulmenu a:hover{
padding-left:10px;
}


.info-list > li {
    table-layout: fixed;
    padding: 1px 0;
    display: table;
}

.info-list > li .info-list-title {
    min-width: 108px;
    display: table-cell;
    font-weight: 600;
    color: #222;
}

.info-list a {
    color: #788487;
}

.info-list a:hover,
.info-list a:focus {
    color: red;
}


/* Rotate arrow when collapse is open */
.collapse-btn[aria-expanded="true"] .bi {
    transform: rotate(180deg);
}

/* Transition effect */
.bi {
    transition: transform 0.3s ease-in-out;
}


.cart-table {
    border: 1px solid #f0f0f0;
	border-radius:50px;
}

.cart-table th {
    font-weight: 400;
}

.cart-table p {
    margin: 0;
}

.cart-thumbnail {
    max-width: 80px;
}

.cart-table > thead > tr > th,
.cart-table > tbody > tr > th,
.cart-table > tfoot > tr > th,
.cart-table > thead > tr > td,
.cart-table > tbody > tr > td,
.cart-table > tfoot > tr > td {
    border: 0;
    border-top: 1px solid #f0f0f0;
    padding: 20px;
    vertical-align: middle;
}

.cart-table .cart-remove {
    text-align: center;
}

.btn-info{
background-color:#ebf6fc;
border:1px solid #ebf6fc;
color:#000;
}

.btn-info:hover,
.btn-info:active,
.btn-info:focus{
background-color:#042f4a !important;
border:1px solid #042f4a !important;
color:#fff !important;
  outline: none  !important;
  box-shadow: none  !important;
}

.btn{
  outline: none  !important;
  box-shadow: none  !important;
}

.nopadding{
padding:0px !important;
}

.show {
    display: block
}

.hide {
    display: none!important
}

input.parsley-success,
select.parsley-success,
textarea.parsley-success {
  color: #008f3a;
  background-color: #fff;
  border: 1px solid #008f3a !important;;
}

input.parsley-error,
select.parsley-error,
textarea.parsley-error {
  color: red;
  border: 1px solid red !important;
}

input.parsley-error::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: red;
}

}
input.parsley-error::-moz-placeholder { /* Firefox 19+ */
  color: red;
}
input.parsley-error:-ms-input-placeholder { /* IE 10+ */
  color: red;
}
input.parsley-error:-moz-placeholder { /* Firefox 18- */
  color: red;
}

p.parsley-error{
	border: 1px solid red;
    padding: 5px;
}

.parsley-errors-list::before{
	content: "*";
	color:red;
	float: left;
    margin-right: 5px;
}

.parsley-errors-list {
  margin: 10px 0 0px;
  padding: 0;
  list-style-type: none;
  text-align: left;
  font-size: 13px;
  color: red;
  line-height: 0.9em;
  opacity: 0;
  transition: all .3s ease-in;
  -o-transition: all .3s ease-in;
  -moz-transition: all .3s ease-in;
  -webkit-transition: all .3s ease-in;
}

.parsley-errors-list.filled {
  opacity: 1;
}


.offcanvas-body .nav-item,
.offcanvas-body .nav-link {
    font-weight:300;
    font-size:1.5rem;
    width: 100% !important;    
    color: #042f4a !important;
    display: block !important;
    text-align: center !important;   
}

.offcanvas-body .nav-link {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

/* Add active state */
.offcanvas-body .nav-pills .nav-link.active {
    border-bottom-color: #00868e; /* Change color as needed */
    background-color: transparent;
    color: #042f4a !important;
}

.offcanvas-body .dropdown-item{
    color:#042f4a !important;
}

.offcanvas {
    height: 100vh; /* full viewport height */
}

.offcanvas-body {
    overflow-y: auto !important;
    max-height: calc(100vh - 56px); /* subtract header height */
    padding-right: 1rem; /* optional for scrollbar spacing */
}


@media (max-width: 992px) {

	.agenda-wrapper {
		margin-top:50px;
		margin-bottom:50px;
		position:relative !important;
		padding-bottom: 0px; /* optional spacing */
	}

	.agenda-wrapper .btn{
		background-color:red !important;
		color:#fff;
	}
	
	.hero-vervolg {
		height: 60vh !important;
		position: relative;
		color: white;
	}

	.lead{
		margin:20px 0px 0px 0px !important;
	}

	.logo {
		transition: transform 1s ease;
		width:auto;
	    height:120px;
	}

	.scrolled .logo{		
	    height:75px !important;
	}
	
}


@media (max-width: 767.98px) {
	  .hero-text{
		max-width: 75%;
		display: flex;
		flex-direction: column;
		justify-content: center;   /* vertical alignment */
		text-align: center;        /* optional, usually nicer on mobile */
		margin-left: auto;
		margin-right: auto;
	  }

	.hero-content {
		position: relative;
		z-index: 2;
		max-height: calc(100vh); /* prevents overlapping the agenda */
	}

	.agenda-item {
		height: 275px; /* same height for all */
		background-size: cover;
		background-position: center;
		color: #fff;
		padding: 15px;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		border-radius: 12px;
		position: relative;
		overflow: hidden;
		transition: transform 0.3s ease;
		box-shadow: 0 2px 10px rgba(0,0,0,0);
	}
}

.hero-lidmaatschap{
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
}


.bg-blue-lidmaatschap{
    background:#0d6efd; /* or your blue */
    position: relative;
}

.white-overlap-card{
    background:#fff;
    border-radius:20px;
    margin-top:-200px; /* controls how far it overlaps hero */
    position:relative;
    z-index:2;
}

.lidmaatschap{
padding-bottom:50px;
}

.green{
color:#61cd8a;
}



.ul-lidmaatschap li{
	padding:0px;
	margin:5px 0px;
	list-style-type:none;
	font-size:1.2rem !important;
	color:#042f4a;
}

@media (max-width: 767.98px) {
.ul-lidmaatschap{padding:0px;margin:0px;}
	.ul-lidmaatschap li{
		padding:0px;
		margin:0px 0px;
		list-style-type:none;
		font-size:0.9rem !important;
		color:#042f4a;
	}
}