/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *



 */

.reverse-string {
  direction: rtl;
  unicode-bidi: bidi-override;
}

 #submit-loading {
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  text-align: center;
  background: rgba(0, 0, 0, .4);
  margin: 0;
  padding: 0;
  z-index: 9999;    
}

#submit-loading div {
  opacity: 25%;
}

.exclude-sold-checkbox {
  width: 1.5rem !important;
  height: 1.5rem !important;
}

p:empty {
  height: 0 !important;
  width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}
/* @import url("https://use.typekit.net/tid6fpj.css"); */

/* ------------------- */
/*        setup        */
/* ------------------- */
:root {
    --primary: #32ADA8;
    --feldgrau: #506058;
    --beige: #F5F8E0;
    --dark: #231F20;
    --red: #A30000;
    --orange: #FF7700;
    --txt-color: #4F4F4F;
    --link-color: #A30000;
    --link-color-alpha-0: rgba(163, 0, 0, 0);
    --link-color-alpha-1: rgba(163, 0, 0, 1);
    --light-grey: #F9FAFB;
    --ivysoft: "ivysoft-variable", sans-serif;

}
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: var(--beige);
}
.main {
    flex: 1;
}
body * {
    font-family: var(--ivysoft);
    /* font-variation-settings: "slnt" 0, "wght" 100; */
}
body a {
    text-decoration: none;
}
::selection {
    background-color: var(--orange);
    color: #101010;
}
::-moz-selection {
    background-color: var(--orange);
    color: #101010;
}
/* width sizes */
.mw-280 {
    max-width: 280px;
}

.mw-md-280 {
    width: 100%;
}

.mw-480 {
    max-width: 480px;
}

.mw-576 {
    max-width: 576px;
}

.mw-lg-576 {
    width: 100%;
}

.mw-768 {
    max-width: 768px;
}

.mw-lg-768 {
    width: 100%;
}

.mw-991 {
    width: 100%;
    max-width: 991px;
}

.mw-1024 {
    width: 100%;
    max-width: 1024px;
}

.bg-rreprimary {
    background-color: var(--primary);
}

.bg-rrebeige {
    background-color: var(--beige);
}
.bg-feldgrau{
    background-color: var(--feldgrau);
}

.fc-beige {
    color: var(--beige);
}

.br-16 {
    border-radius: 16px;
    overflow: hidden;
}

/* row gap */
.row-gap-64 {
    row-gap: 64px;
}

/* headings */
h1,
h2,
h3,
h4,
h5 {
    margin-bottom: 0;
}

/* section settings */
.section-p {
    padding-top: 64px;
    padding-bottom: 64px;
}

.single-p {
    padding-bottom: 64px;
}

.section-title h2 {
    color: var(--feldgrau);
    font-size: 30px;
    font-weight: 700;
    line-height: 38px;
    margin-bottom: 24px;
}
.section-title h3 {
    color: var(--feldgrau);
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 16px;
}

.rich-text-section h2 {
    color: var(--feldgrau);
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 24px;
}

.rich-text-section h3 {
    color: var(--feldgrau);
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 16px;
}

.section-title p,
.section-title ul,
.section-content p,
.section-content ul,
.rich-text-section p {
    color: var(--txt-color);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

.section-link,
.section-title .section-link,
.section-content .section-link,
.rich-text-section a,
.rich-text-section .section-link {
    color: var(--link-color);
    text-decoration: underline 2px var(--link-color-alpha-0);
    transition: text-decoration-color 0.2s ease;
}

.section-link:hover,
.section-title .section-link:hover,
.section-content .section-link:hover,
.rich-text-section a:hover,
.rich-text-section .section-link:hover {
    text-decoration: underline 2px var(--link-color-alpha-1);
}

/* --------------------- */
/* large image container */
/* --------------------- */
.large-img-container {
    width: 100%;
    max-width: 576px;
    height: 240px;
    margin-left: auto;
    margin-right: auto;
    /* background-color: var(--feldgrau); */
    position: relative;
}

.large-img-container img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    object-fit: cover;
    position: relative;
}

/* .large-img-container .img-png {
    width: 100%;
    height: 100%;
    padding: 24px;
    object-fit: contain;
    background-color: var(--feldgrau);
} */
.img-png {
    width: 100%;
    height: 100%;
    /* padding: 24px; */
    object-fit: contain;
    background-color: var(--feldgrau);
}

.image-border::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    box-shadow: inset 0px 0px 0px 5px var(--primary);
    border-radius: 16px;
    left: -8px;
    top: -8px;
}

/* --------------------- */
/* small image container */
/* --------------------- */
.small-img-container {
    width: 100%;
    max-width: 576px;
    height: 240px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 16px;
    /* background-color: var(--feldgrau); */
    position: relative;
}

.small-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

/* .small-img-container .img-png {
    width: 100%;
    height: 100%;
    padding: 24px;
    object-fit: contain;
    background-color: var(--feldgrau);
} */

/* --------------- */
/* rich text image */
/* --------------- */
.rich-text-img {
    margin-top: 32px;
    margin-bottom: 32px;
    width: 100%;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0.3px 0.5px 0.7px hsl(0deg 0% 63% / 0.34),
        0.4px 0.8px 1px -1.2px hsl(0deg 0% 63% / 0.34),
        1px 2px 2.5px -2.5px hsl(0deg 0% 63% / 0.34);
}

.rich-text-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* -------------------- */
/* Skip to main content */
/* -------------------- */
.skip-to-main-content {
    position: absolute;
    left: -9999px;
    z-index: 9999;
    padding: 1em;
    background-color: black;
    color: #fff;
    opacity: 0;
}

.skip-to-main-content:focus {
    left: 50%;
    top: 1%;
    transform: translateX(-50%);
    opacity: 1;
    border: 1px solid red;
}

/* --------------------- */
/*    Section divider    */
/* --------------------- */
.section-divider {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.section-divider div {
    height: 1px;
    width: 100%;
    max-width: 1300px;
    padding: 0px 32px;
    align-self: center;
    background-color: #ABB3A3;
}

/* ------------------- */
/*       buttons       */
/* ------------------- */

/* primary */
.btn.rre-primary-btn {
    background-color: var(--primary);
    border-radius: 8px;
    padding: 12px 18px;
    border: 1px solid var(--primary);
    color: var(--dark);
    font-weight: 600;
    white-space: nowrap;
    transition: background-color 0.2s ease;
}
.btn.rre-primary-btn:hover,
.btn.rre-primary-btn:active,
.btn.rre-primary-btn:focus,
.btn.rre-primary-btn:focus-visible {
    border: 1px solid var(--primary);
    background-color: #E6F6F5;
    color: var(--dark);
}

/* primary inverted */
.btn.rre-primary-btn-inverted {
    background-color: #E6F6F5;
    border-radius: 8px;
    padding: 12px 18px;
    border: 1px solid var(--primary);
    color: var(--dark);
    font-weight: 600;
    white-space: nowrap;
    transition: background-color 0.2s ease;
}

.btn.rre-primary-btn-inverted:hover,
.btn.rre-primary-btn-inverted:active,
.btn.rre-primary-btn-inverted:focus,
.btn.rre-primary-btn-inverted:focus-visible {
    border: 1px solid #E6F6F5;
    background-color: var(--primary);
    color: var(--dark);
}

/* beige */
.btn.rre-beige-btn {
    background-color: var(--beige);
    border-radius: 8px;
    padding: 12px 18px;
    border: 1px solid var(--beige);
    color: var(--feldgrau);
    font-weight: 600;
    white-space: nowrap;
    transition: background-color 0.2s ease;
}

.btn.rre-beige-btn:hover,
.btn.rre-beige-btn:active,
.btn.rre-beige-btn:focus,
.btn.rre-beige-btn:focus-visible {
    border: 1px solid var(--beige);
    background-color: var(--feldgrau);
    color: var(--beige);
}

/* ------------------- */
/*   language switch   */
/* ------------------- */
.lang-toggle {
    background-color: var(--feldgrau);
    border-radius: 8px;
    border: 1px solid var(--beige);
    color: var(--beige);
    display: block;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    height: 42px;
    transition: background-color 0.2s ease;
    width: 42px;
    text-align: center;
    align-content: center;
}

.lang-toggle:hover,
.lang-toggle:focus-visible {
    border: 1px solid var(--feldgrau);
    background-color: var(--beige);
    color: var(--feldgrau);
}

/* ------------------- */
/* Navigation bar/menu */
/* ------------------- */
.rre-nav {
    background-color: var(--feldgrau);
    z-index: 1056;
}
.navbar-brand {
    width: 142px;
    height: 80px;
}
.navbar-brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.navbar-toggler {
    color: var(--feldgrau);
    width: 44px;
    height: 44px;
    background-color: var(--beige);
    font-size: 24px;
    padding: 0;
    text-align: center;
    align-content: center;
    border-color: var(--feldgrau);
}
.navbar-nav {
    column-gap: 8px;
    row-gap: 8px;
}
.navbar-nav .nav-link {
    color: var(--beige);
    font-size: 16px;
    line-height: 24px;
    transition: box-shadow 0.2s ease;
    font-weight: 600;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus-visible {
    color: var(--beige);
    -webkit-box-shadow: inset 0px -4px 0px 0px var(--beige);
    box-shadow: inset 0px -4px 0px 0px var(--beige);
}
.rre-nav .rre-beige-btn,
.rre-nav .btn.rre-primary-btn {
    padding: 8px 12px;
    margin-bottom: 3px;
}
.rre-nav .offcanvas {
    background-color: var(--feldgrau);
}
.offcanvas-body {
    display: flex;
    /* justify-content: space-between; */
    row-gap: 12px;
    flex-direction: column;
}

/* ------------------ */
/*   Footer section   */
/* ------------------ */
footer {
    padding-top: 64px;
    padding-bottom: 48px;
    background-color: var(--feldgrau);
    color: var(--beige);
}
.footer-logo {
    display: block;
    width: 100%;
    max-width: 320px;
    /* height: auto; */
    margin-left: auto;
    margin-right: auto;
}
.footer-logo img {
    width: 100%;
    /* height: 100%; */
    object-fit: contain;
}
.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 32px;
}
.footer-nav li {
    display: flex;
    min-width: 190px;
    max-width: 235px;
}
.footer-nav li a {
    color: var(--beige);
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    align-content: center;
    text-decoration: underline 2px rgba(245, 248, 224, 0);
    transition: text-decoration-color 0.2s ease;
}
.footer-nav li:not(:last-child) a:hover {
    text-decoration-color: rgba(245, 248, 224, 1);
}
footer div p a {
    text-decoration: underline 2px rgba(245, 248, 224, 0);
    transition: text-decoration-color 0.2s ease;
}
footer div p a:hover {
    text-decoration-color: rgba(245, 248, 224, 1);
}
.footer-social {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 12px;
    padding-left: 0;
}
.footer-social a {
    display: block;
    width: 28px;
    font-size: 18px;
    height: 28px;
    text-align: center;
    align-content: center;
    color: var(--beige);
    transition: opacity 0.2s ease;
}
.footer-social a:hover {
    opacity: 0.8;
}

/* ----------------- */
/*   Notice banner   */
/* ----------------- */
.rre-notice {
    background-color: var(--feldgrau);
    position: fixed;
    border-radius: 0;
    border: 1px solid var(--beige);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    left: 50%;
    bottom: 0;
    margin-bottom: 0;
    transform: translateX(-50%);
    color: var(--beige);
}
.rre-notice span {
    white-space: nowrap;
    font-weight: 600;
}
.rre-notice p {
    margin-bottom: 0;
    margin-right: 15px;
}
.alert-dismissible .btn-close {
    top: 26px;
    right: 24px;
    transform: translateY(-50%);
    padding: 0.5rem;
    color: var(--beige);
    background-image: none;
    font-size: 16px;
    text-align: center;
    align-content: center;
}

/* ---------------- */
/*     homepage     */
/* ---------------- */
.home-banner {
    height: 100vh;
}
.home-banner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-map-cta{
    padding-top: 32px;
    padding-bottom: 32px;
}
.home-map-cta h2,
.home-map-cta p{
    color: beige;
}

/* --------------------------- */
/* homepage image grid section */
/* --------------------------- */

/* title */
.marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
}
.marquee-inner {
    display: flex;
    width: max-content;
    animation: scroll 20s linear infinite;
}
.marquee span {
    font-size: 48px;
    font-weight: 900;
    white-space: nowrap;
    padding-right: 2rem;
}
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* homepage grid */
.home-grid {
    display: grid;
    gap: 10px;
    grid-auto-rows: 240px;
    grid-template-columns: 1fr;
}
.home-grid a {
    grid-column: auto;
    grid-row: auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 16px -4px rgba(16, 24, 40, 0.08), 0 4px 6px -2px rgba(16, 24, 40, 0.03);
    transition: transform 0.2s ease;
}
.home-grid a:hover{
    transform: scale(1.03);
}
.home-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.modal.image-modal{
    z-index: 1057;
}
.image-modal .modal-header{
    background-color: var(--beige);
    border-bottom: 0;
}
.image-modal .btn-close{
    background-image: none;
    color: var(--feldgrau);
    background-color: var(--beige);
    padding: 0;
    width: 28px;
    height: 28px;
    opacity: 1;
    border: 1px solid var(--feldgrau);
    transition: background-color 0.2s ease;
}
.image-modal .btn-close:hover{
    background-color: var(--feldgrau);
    color: var(--beige);
}
.image-modal .btn-close i{
    width: 20px;
    height: 20px;
    text-align: center;
    align-content: center;
}
.image-modal button.modal-btn-left,
.image-modal button.modal-btn-right {
    position: absolute;
    width: 28px;
    height: 28px;
    padding: 0;
}
.image-modal button.modal-btn-left {
    left: 1%;
    top: 50%;
}
.image-modal button.modal-btn-right {
    right: 1%;
    top: 50%;
}
.image-modal img {
    width: 100%;
    /* height: 100%; */
    max-height: 900px;
    object-fit: cover;
}
.image-modal .modal-content{
    border-radius: 16px;
    overflow: hidden;
}

/* ------------------ */
/*     RV Camping     */
/* ------------------ */
.subpage-banner {
    padding: 128px 0 32px 0;
    background-color: var(--feldgrau);
}
.subpage-banner h1 {
    font-size: 40px;
    font-weight: 600;
    color: var(--beige);
}
.rv-map-img{
    width: 100%;
    object-fit: cover;
    height: 180px;
    border-radius: 16px;
    box-shadow: 0 12px 16px -4px rgba(16, 24, 40, 0.08), 0 4px 6px -2px rgba(16, 24, 40, 0.03);
}

/* rates */
.rv-rates .bg-feldgrau {
    padding: 64px 0px 140px 0px;
}
.rv-rates .rates-container {
    transform: translateY(-96px);
}
.rv-rates .bg-feldgrau .section-title h2,
.rv-rates .bg-feldgrau .section-title span{
    color: var(--beige);
}

/* tables */
.rates-table{
    border-radius: 16px;
    overflow: hidden;
    background-color: #ffffff;
}
.rates-table .table-head{
    background-color: var(--primary);
    text-align: center;
    color: var(--dark);
    padding: 20px 24px;
}
.rates-table .table-head h3{
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 4px;
}
.rates-table .table-head span{
    display: block;
    font-size: 16px;
    line-height: 24px;
}
.rates-table .table-body {
    display: flex;
    padding: 16px 8px;
    flex-direction: column;
    gap: 16px;
}
.table-body .table-legend{
    background-color: #F3F4F6;
    border-radius: 12px;
    padding: 16px 24px;
    display: none;
}
.table-body .table-legend h4{
    font-size: 16px;
    font-weight: 600;
}
.table-body .table-legend .rate-col h4{
    font-variation-settings: 'wght' 400, 'slnt' -10;
}
.table-body .table-content .table-content-item{
    display: flex;
    flex-direction: column;
    padding: 16px 24px;
    row-gap: 8px;
}
.table-body .rate-type{
    flex: 1 0 0;
}
.table-body .table-content-item .rate-col{
    font-weight: 600;
    padding-top: 4px;
    border-top: 1px solid var(--feldgrau);
}
.table-body .table-content-item .rate-col span{
    font-weight: 400;
}
.table-body .rate-type{
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    display: flex;
    flex-direction: column; 
    gap: 8px;
}
.rate-type-square{
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    flex-shrink: 0;
}
.rate-red{
    background-color: #FF3300;
}
.rate-light-blue{
    background-color: #00B0F0;
}
.rate-yellow{
    background-color: #FFC000;
}
.rate-green{
    background-color: #92D050;
}
.rate-purple{
    background-color: #7030A0;
}
.rate-blue{
    background-color: #0070C0;
}

/* Restigouche river experience CTA */
.rre-cta{
    align-items: center;
    background-color: var(--feldgrau);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 40px 24px;
    text-align: center;
    width: 100%;
}
.rre-cta h2 {
    color: var(--beige);
    font-size: 30px;
    font-weight: 600;
    line-height: 38px;
    margin-bottom: 24px;
}
.rre-cta p{
    color: var(--beige);
    font-size: 18px;
    line-height: 28px;
}

/* --------------------- */
/* Interpretation Centre */
/* --------------------- */
.masonry-container{
    column-count: 1;
    column-gap: 24px;
}
.masonry-container a{
    display: block;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 16px -4px rgba(16, 24, 40, 0.08), 0 4px 6px -2px rgba(16, 24, 40, 0.03);
    transition: transform 0.2s ease;
    margin-bottom: 24px;
    width: 100%;
    height: auto;
}
.masonry-container a:hover{
    transform: scale(1.03);
}
.masonry-container img{
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    object-position: center;
}

/* --------- */
/* news page */
/* --------- */
.event-item{
    display: flex;
    flex-direction: column;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    gap: 20px;
}
.event-item .image-container{
    width: 100%;
    height: 240px;
    border-radius: 16px;
    overflow: hidden;
}
.event-item img:not(.img-png){
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.event-item div h2{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
}
.event-item div p{
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    color: var(--txt-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.event-item div a{
    color: var(--link-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-decoration: underline 2px var(--link-color-alpha-0);
    transition: text-decoration-color 0.2s ease;
}
.event-item div a:hover{
    text-decoration: underline 2px var(--link-color-alpha-1);
}

/* ------------------ */
/* Event details page */
/* ------------------ */
.event-heading .info{
    color: var(--red);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    gap: 16px;
    line-height: 24px;
    margin-bottom: 24px;
}
.event-img-container{
    background-color: #ffffff;
    border-radius: 16px;
    height: 200px;
    margin-bottom: 32px;
    margin-top: 32px;
    overflow: hidden;
    width: 100%;
}
.event-img-container img:not(.img-png){
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.event-whereabouts{
    padding: 16px;
    border: 2px solid var(--feldgrau);
    border-radius: 16px;
    margin-bottom: 32px;
}
.event-whereabouts h3{
    color: var(--feldgrau);
}
.event-whereabouts ul{
    list-style: none;
    padding-left: 0;
}
.event-whereabouts ul li{
    display: flex;
    margin-top: 8px;
}
.event-whereabouts ul a{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-decoration: none;
    font-size: 16px;
    line-height: 24px;
    color: var(--txt-color);
}
.event-whereabouts ul i{
    background-color: var(--feldgrau);
    color: #ffffff;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    text-align: center;
    align-content: center;
    font-size: 14px;
    border-radius: 6px;
    margin-right: 16px;
}
.share-event{
    padding-top: 24px;
}
.share-event span{
    color: var(--txt-color);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}
.share-event a,
.share-event button {
    font-weight: 600;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 1px solid var(--primary);
    background-color: var(--primary);
    color: var(--dark);
    padding: 10px 14px;
    /* Shadows/shadow-xs */
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    transition: background-color 0.2s ease, border-color 0.2s ease;
}
.share-event a i,
.share-event button i {
    font-size: 20px;
}
.share-event a:hover,
.share-event button:hover {
    border-color: var(--primary);
    background-color: #E6F6F5;
}

/* ------------- */
/*    Contact    */
/* ------------- */
.contact-container{
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    justify-content: center;
}
.contact-item{
    display: flex;
    flex-direction: column;
    max-width: 384px;
    flex: 1 0 0;
    align-items: center;
    text-align: center;
    gap: 20px;
    min-width: 240px;
}
.contact-item i{
    align-content: center;
    background-color: var(--feldgrau);
    border-radius: 10px;
    color: #ffffff;
    height: 48px;
    width: 48px;
    font-size: 20px;
}
.contact-container .contact-item h2{
    color: var(--dark);
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
}
.contact-item a{
    color: var(--txt-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-decoration: underline 2px rgba(80, 96, 88, 0);
    transition: text-decoration-color 0.2s ease;
}
.contact-item a:hover{
    text-decoration: underline 2px rgba(80, 96, 88, 1);
}
.contact-map{
    width: 100%;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 16px -4px rgba(16, 24, 40, 0.08), 0 4px 6px -2px rgba(16, 24, 40, 0.03);
}
.contact-map iframe{
    width: 100%;
    height: 100%;
}
.contact-form input{
    padding: 10px 14px;
}
.contact-form .form-control:focus,
.form-select:focus{
    border-color: var(--feldgrau);
    box-shadow: 0 0 0 4px rgba(80, 96, 88, 0.2);
}
.contact-form label{
    color: var(--feldgrau);
    font-weight: 600;
    font-size: 14px;
}
.contact-form .form-select{
    padding: 10px 14px;
}
.contact-form textarea{
    height: 165px;
    resize: none;
}

/* ------------------------------ */
/*    Experience and Adventure    */
/* ------------------------------ */
.experience-card-container{
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}
.experience-card {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background-color: #ffffff;
    box-shadow: 0 12px 16px -4px rgba(10, 13, 18, 0.08),
        0 4px 6px -2px rgba(10, 13, 18, 0.03),
        0 2px 2px -1px rgba(10, 13, 18, 0.04);
    position: relative;
    flex: 1 0 0;
    min-width: 280px;
    max-width: 592px;
    display: flex;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
}

.experience-card h2{
    color: var(--dark);
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
}
.experience-card .card-overlay{
    position: relative;
    width: 100%;
    height: 240px;
    left: 0;
    top: 0;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.experience-card .card-overlay img{
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.experience-card .card-overlay div{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    text-align: center;
    align-content: center;
    padding: 32px;
    backdrop-filter: blur(4px);
}
.primary-overlay{
    background-color: rgba(50, 173, 168, 0.65);
}
.orange-overlay{
    background-color: rgba(255, 119, 0, 0.65);
}
.blue-overlay{
    background-color: rgba(20, 27, 65, 0.65);
    /* background-color: rgba(163, 0, 0, 0.65); */
}
.feldgrau-overlay{
    background-color: rgba(80, 96, 88, 0.8);
}
.blue-overlay h2,
.feldgrau-overlay h2{
    color: var(--beige);
}
.experience-card .card-content{
    display: flex;
    padding: 24px;
    flex-direction: column;
    gap: 24px;
    flex: 1 0 0;
}
.experience-card h3{
    display: none;
    color: var(--feldgrau);
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
}
.experience-card p{
    color: var(--txt-color);
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
}
.card-list{
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}
.card-list li{
    display: flex;
    flex-direction: row;
    column-gap: 8px;
}
.card-list i{
    width: 20px;
    height: 20px;
    text-align: center;
    color: var(--red);
    align-content: center;
    padding-top: 2px;
}
/* birdwatching cards */
.birdwatch-card-container{
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    /* align-items: center; */
}
.birdwatch-card{
    border-radius: 16px;
    border: 1px solid var(--feldgrau);
    background-color: #FAFAFA;
    overflow: hidden;
    box-shadow: 0 12px 16px -4px rgba(10, 13, 18, 0.08),
            0 4px 6px -2px rgba(10, 13, 18, 0.03),
            0 2px 2px -1px rgba(10, 13, 18, 0.04);
    display: flex;
    min-width: 280px;
    /* max-width: 286px; */
    min-height: 480px;
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    /* flex: 1 0 0; */
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}
.birdwatch-card img{
    width: 100%;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
}
.birdwatch-card h3{
    color: var(--feldgrau);
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
}
.birdwatch-card p{
    color: var(--txt-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.birdwatch-card .card-list{
    margin-top: auto;
}

/* Adjustments & Accessibility */
.marquee .marquee-static {
    display: none;
    text-align: center;
    padding: 0 30px;
}
.marquee .marquee-static span {
    white-space: normal;
}
@media (prefers-reduced-motion: reduce) {
    .marquee .marquee-static {
        display: block;
    }
    .marquee .marquee-inner {
        animation: none;
        display: none;
    }
}
.event-item .image-container.no-img {
    background-color: var(--feldgrau);
    padding: 50px 25px;
}
.event-item .image-container.no-img img {
    object-fit: contain;
}

.event-item h2 + span {
    color: var(--feldgrau);
    /* color: var(--red); */
    font-size: 14px;
}

.footer-nav li:last-child {
    max-width: unset;
}


/* --------------- */
/*   Nav updates   */
/* --------------- */
.rre-nav-top{
    background-color: var(--beige);
    padding-top: 6px;
    padding-bottom: 6px;
    color: var(--feldgrau);
    font-weight: 500;
}
.rre-nav{
    margin-top: 42px;
    transition: margin 0.1s ease;
}
.rre-nav.scrolled{
    margin-top: 0;
}
.rre-nav-top .lang-switch {
    display: flex;
    flex-direction: row;
    column-gap: 1px;
    background-color: var(--beige);
    border-radius: 8px;
}
.rre-nav-top .lang-switch a {
    padding: 5px 8px;
    font-weight: 700;
    font-size: 12px;
    transition: background-color 0.2s ease;
    color: var(--feldgrau);
}
.rre-nav-top .lang-switch a:hover,
.rre-nav-top .lang-switch:focus-visible {
    background-color: rgba(80, 96, 88, 0.2);
}
.rre-nav-top .lang-switch a.active {
    background-color: var(--feldgrau);
    color: var(--beige);
}
.rre-nav-top .lang-switch a:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    border-width: 1px 0 1px 1px;
    border-style: solid;
    border-color: var(--feldgrau);
}
.rre-nav-top .lang-switch a:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    border-width: 1px 1px 1px 0;
    border-style: solid;
    border-color: var(--feldgrau);
}
.top-nav-contact{
    color: var(--feldgrau);
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 2px;
    text-decoration-color: rgba(80, 96, 88, 0);
    transition: text-decoration-color 0.2s ease;
    position: relative;
}
.top-nav-contact:hover,
.top-nav-contact:focus-visible{
    text-decoration-color: rgba(80, 96, 88, 1);
}
.top-nav-contact::after{
    content: '';
    width: 2px;
    height: 100%;
    background-color: var(--feldgrau);
    position: absolute;
    right: -13px;
    top: 0;
}
.offcanvas-header .btn-close{
    background-image: none;
    color: var(--feldgrau);
    background-color: var(--beige);
    padding: 0;
    width: 28px;
    height: 28px;
    opacity: 1;
    border: 1px solid var(--feldgrau);
    transition: background-color 0.2s ease;
}
.home-banner{
    height: calc(100dvh - 42px);
}

/* notice hyperlink */
.rre-notice p a{
    color: var(--beige);
    text-decoration: underline;
    text-decoration-thickness: 1px;
}
.rre-notice p a:hover{
    text-decoration-thickness: 3px;
}

.events-pagination button {
    background-color: var(--primary);
    border-radius: 8px;
    padding: 5px 10px;
    border: 1px solid var(--primary);
    color: var(--dark);
    font-weight: 600;
    transition: background-color 0.2s ease;
    width: 40px;
}
.events-pagination button:hover, 
.events-pagination button:focus-visible,
.events-pagination button.active {
    border: 1px solid var(--primary);
    background-color: #E6F6F5;
    color: var(--dark);
}

.events-pagination button:disabled {
    background-color: var(--primary);
    opacity: 0.6;
    cursor: default;
}
@media screen and (min-width: 375px) {}

/* Phablet */
@media screen and (min-width: 425px) {

    /* large image container */
    .large-img-container {
        height: 320px;
    }

    /* small image container */
    .small-img-container {
        height: 320px;
    }

    /* homepage grid */
    .home-grid {
        grid-auto-rows: 200px;
        grid-template-columns: repeat(2, 1fr);
    }

    /* RV camping page */
    .rv-map-img{
        height: 240px;
    }

    /* Event page */
    .event-item .image-container{
        height: 280px;
    }

    /* Event details page */
    .event-img-container{
        height: 280px;
    }

    /* contact page */
    .contact-map{
        height: 280px;
    }
}

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

@media screen and (min-width: 576px) {

    /* small image container */
    .small-img-container {
        height: 400px;
    }

    /* image border */
    .image-border::after {
        left: -12px;
        top: -12px;
    }

    /* RV camping page */
    .rv-map-img{
        height: 320px;
    }

    /* interpretation centre */
    .masonry-container{
        column-count: 2;
    }

    /* Event details page */
    .event-img-container{
        height: 360px;
    }

    /* contact page */
    .contact-map{
        height: 360px;
    }
}

/* Tablet */
@media screen and (min-width: 768px) {

    /* row gap */
    .row-gap-64 {
        row-gap: 96px;
    }

    .section-p {
        padding-top: 96px;
        padding-bottom: 96px;
    }

    .section-p h2 {
        font-size: 36px;
        line-height: 44px;
    }
    .section-title h3 {
        font-size: 30px;
        line-height: 38px;
    }


    .single-p {
        padding-bottom: 96px;
    }

    .section-title h2 {
        font-size: 36px;
        line-height: 44px;
    }

    .section-title p,
    .section-title ul,
    .section-content p,
    .section-content ul,
    .rich-text-section p {
        font-size: 18px;
        line-height: 28px;
    }

    .txt-cta p {
        font-size: 32px;
        line-height: 44px;
    }

    /* footer */
    .footer-nav{
        flex-direction: row;
        gap: 32px;
    }

    /* notice banner */
    .rre-notice{
        max-width: 95%;
        border-radius: 16px;
        bottom: 1%;
        margin-bottom: 1rem;
    }

    /* large image container */
    .large-img-container {
        height: 400px;
    }

    /* subpage banner */
    .subpage-banner h1 {
        font-size: 56px;
    }

    /* homepage grid */
    .marquee span {
        font-size: 72px;
    }
    .home-grid {
        grid-auto-rows: 187px;
        grid-template-columns: repeat(3, 1fr);
    }
    .home-grid a:nth-child(1){
        grid-column: 1;
        grid-row: 1 / 3;
    }
    .home-grid a:nth-child(2){
        grid-column: 2 / 4;
    }
    .home-grid a:nth-child(3){
        grid-column-start: 2;
        grid-row: 2 / 4;
        grid-row-start: 2;
    }
    .home-grid a:nth-child(7){
        grid-column-start: 1;
        grid-row-start: 4;
        grid-column: 1 / 3;
    }
    .home-grid a:nth-child(10){
        grid-column-start: 3;
        grid-row-start: 4;
        grid-row: 4 / 6 ;
    }

    /* rates tables */
    .rates-table .table-body {
        padding: 16px 24px 24px 24px;
    }
    .table-body .table-legend {
        display: flex;
        flex-direction: row;
    }
    .table-body .table-legend  .title-col{
        flex: 1 0 0;
    }
    .table-body .rate-col{
        display: flex;
        flex-direction: row;
    }
    .table-body .rate-col div{
        width: 160px;
        text-align: center;
    }
    .table-body .table-content .table-content-item{
        flex-direction: row;
    }
    .table-body .table-content-item .rate-col{
        border-top: none;
        padding-top: 0;
    }
    .table-body .table-content-item .rate-col span{
        display: none;
    }
    .table-body .rate-type{
        flex-direction: row; 
    }

    /* Restigouche river experience CTA */
    .rre-cta{
        padding: 64px;
    }
    .rre-cta h2 {
        font-size: 36px;
        line-height: 44px;
    }

    /* Event details page */
    .event-img-container{
        height: 400px;
        margin-bottom: 48px;
    }

    /* contact page */
    .contact-map{
        height: 420px;
    }

    /* Experience and adventure */
    .experience-card{
        min-width: 384px;
    }
    .experience-card .card-content{
        padding: 32px;
        gap: 32px;
    }
}


/* Laptop */
@media screen and (min-width: 992px) {
    .mw-lg-576 {
        max-width: 576px;
    }

    .mw-lg-768 {
        max-width: 768px;
    }

    /* notice banner */
    .rre-notice{
        border-radius: 9999px;
    }

    /* large image container */
    .large-img-container {
        height: 654px;
    }

    /* homepage grid */
    .home-grid {
        /* grid-auto-rows: 187px; */
        grid-template-columns: repeat(7, 1fr);
    }
    .home-grid a:nth-child(1){
        grid-column: 1 / 3;
        grid-row: 1 / 3;
    }
    .home-grid a:nth-child(2){
        grid-column-start: 3;
        grid-column: unset;
    }
    .home-grid a:nth-child(3){
        grid-column-start: 4;
        grid-row: unset;
        grid-column: unset;
    }
    .home-grid a:nth-child(4){
        grid-column-start: 5;
        grid-column: 5 / 7;
    }
    .home-grid a:nth-child(5){
        grid-column-start: 7;
    }
    .home-grid a:nth-child(6){
        grid-row-start: 3;
        grid-column: 1 / 3;
    }
    .home-grid a:nth-child(7){
        grid-column: 3 / 5;
        grid-row: 2 / 4;
    }
    .home-grid a:nth-child(8){
        grid-column: 5 / 7;
        grid-row: 2 / 4;
    }
    .home-grid a:nth-child(9){
        grid-column-start: 7;
        grid-row-start: 2;
    }
    .home-grid a:nth-child(10){
        grid-column-start: 7;
        grid-row-start: 3;
        grid-row: unset;
    }

    /* RV camping page */
    .rv-map-img{
        height: 400px;
    }

    /* interpretation centre */
    .masonry-container{
        column-count: 3;
    }

    /* Event details page */
    .event-img-container{
        height: 480px;
    }

    /* Experience and adventure */
    .experience-card{
        margin-left: unset;
        margin-right: unset;
        height: 640px;
    }
    .experience-card h2{
        font-size: 32px;
        line-height: 44px;
    }
    .experience-card .card-overlay{
        position: absolute;
        height: 100%;
    }
    .experience-card:hover .card-overlay,
    .experience-card:focus-within .card-overlay{
        opacity: 0;
        visibility: hidden;
    }
    .experience-card h3{
        display: block;
    }
}

/* Small screen */
@media screen and (min-width: 1200px) {
    .offcanvas-body {
        justify-content: space-between;
        flex-direction: row;
    }

    /* RV camping page */
    .rv-map-img{
        height: 516px;
    }
}

/* Large screen */
@media screen and (min-width: 1400px) {
    /* RV camping page */
    .rv-map-img{
        height: 560px;
    }

    /* Experience and adventure */
    .experience-card{
        max-width: unset;
    }
    .experience-card-container{
        justify-content: flex-start;
    }
    .experience-card:nth-child(even){
        margin-top: 48px;
    }
}

/* ultra large */
@media screen and (min-width:1536px) {
    /* notice banner */
    .rre-notice{
        max-width: 1280px;
    }
}
