/* Custom styles go here */
* {
    font-family: "Mona Sans", sans-serif;
}

body,
html {
    overflow-x: hidden !important;
    padding-right: 0 !important;
    max-width: 100vw !important;
}

/* Global text selection highlight */
::selection {
    background: #54d325;
    color: #ffffff;
}

::-moz-selection {
    background: #54d325;
    color: #ffffff;
}

/* Navigation Wrapper */
.nav-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
    z-index: 1000;
}

.custom-container {
    padding: 0 40px;
}

.custom-container-2 {
    padding: 0 60px;
    max-width: 100% !important;
}

.sections .custom-container,
.sections .custom-container-2 {
    max-width: 1400px !important;
    margin: auto;
}

/* Top Navigation */
#top-nav {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

#top-nav a {
    color: white;
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
}

#top-nav a:hover {
    opacity: 0.8;
}

#top-nav i {
    margin-right: 4px;
}

#top-nav .top-nav-left a,
#top-nav .top-nav-right a {
    margin-right: 16px;
}

#top-nav .top-nav-left a:last-child,
#top-nav .top-nav-right a:last-child {
    margin-right: 0;
}

/* Main Navigation */
#main-nav {
    padding: 10px 0;
    position: relative;
}

#main-nav a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    margin: 0 15px;
}

#main-nav a:hover {
    opacity: 0.8;
}

#main-nav .home-icon,
#main-nav .accessibility-icon {
    margin: 0 10px;
}

#main-nav .main-nav-center {
    position: absolute;
    left: 50%;
    top: -25px;
    transform: translateX(-50%);
    z-index: 10;
}

#main-nav .logo {
    height: 112px;
    width: 112px;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Floating burger shown when nav is out of view */
#floatingBurger {
    position: fixed;
    top: 16px;
    left: 16px;
    width: 48px;
    height: 48px;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px 0;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    z-index: 2000;
    border: none;
    cursor: pointer;
    flex-direction: column;
}

#floatingBurger span {
    display: block;
    width: 20px;
    height: 2px;
    background: #111;
    border-radius: 2px;
    transition: all 0.25s ease;
}

#floatingBurger span+span {
    margin-top: 5px;
}

#floatingBurger:active {
    transform: scale(0.98);
}

#floatingBurger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

#floatingBurger.active span:nth-child(2) {
    opacity: 0;
}

#floatingBurger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-nav-wrapper {
    display: contents;
}

/* Offscreen menu visual: full-screen overlay with a left white panel and a
   right image panel to match the provided design. The wrapper children
   are rendered above the decorative panels via z-index. */
.mobile-nav-wrapper.active {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: transparent;
    z-index: 10000;
    overflow: hidden;
    padding: 0;
}

.mobile-nav-wrapper.active::before {
    /* left white panel */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 48%;
    height: 100%;
    background: #ffffff;
    border-radius: 0 28px 28px 0;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    z-index: 10001;
}

.mobile-nav-wrapper.active::after {
    /* right image panel */
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 52%;
    height: 100%;
    background-image: url('../img/banner.png');
    background-size: cover;
    background-position: center center;
    border-radius: 0 28px 28px 0;
    filter: saturate(0.95) contrast(0.98);
    z-index: 10000;
}

/* Ensure menu content sits above the decorative panels and is readable */
.mobile-nav-wrapper.active>* {
    position: relative;
    z-index: 10002;
}

/* On mobile, when main mobile nav is open, push everything else behind (z-index:1) */
@media (max-width: 1020px) {
    body.mobile-nav-open *:not(.mobile-nav-wrapper):not(.mobile-nav-wrapper *) {
        position: relative;
        z-index: 1;
    }
}

/* Layout spacing for left panel content */
.mobile-nav-wrapper.active {
    padding: 40px 24px 40px 40px;
}

.mobile-nav-wrapper.active .mobile-top-nav,
.mobile-nav-wrapper.active .mobile-icon-nav,
.mobile-nav-wrapper.active .main-nav-left,
.mobile-nav-wrapper.active .main-nav-right {
    color: #111;
}

.mobile-top-nav a,
.mobile-nav-wrapper.active a {
    color: inherit;
}

.mobile-top-nav {
    display: none;
}

/* Offscreen menu (opened by floating burger) */
.offscreen-menu {
    position: fixed;
    inset: 0;
    z-index: 999999999999999;
    pointer-events: auto;
    width: 50%;
}

.offscreen-menu::after {
    /* decorative right image panel */
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 52%;
    height: 100%;
    background-image: url('../img/banner.png');
    background-size: cover;
    background-position: center center;
    border-radius: 0 28px 28px 0;
    filter: saturate(0.95) contrast(0.98);
    z-index: 10051;
}

.offscreen-overlay {
    position: absolute;
    top: 0;
    left: 48%;
    right: 0;
    bottom: 0;
    cursor: pointer;
    z-index: 10050;
}

.offscreen-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: #ffffff;
    border-radius: 0 28px 28px 0;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    padding: 40px 28px;
    overflow-y: auto;
    z-index: 10052;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.offscreen-close {
    background: #000;
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    font-size: 26px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.offscreen-links {
    list-style: none;
    padding: 24px 0 0 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.offscreen-links li a {
    color: #111;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    display: inline-block;
    transition: transform 160ms ease, opacity 160ms ease;
    will-change: transform, opacity;
}

.offscreen-links li a:hover,
.offscreen-links li a:focus {
    transform: translateX(6px) scale(1.02);
    opacity: 0.95;
}

@media (prefers-reduced-motion: reduce) {
    .offscreen-links li a {
        transition: none !important;
        transform: none !important;
    }
}

.offscreen-contact {
    margin-top: 16px;
    color: #111;
}

.offscreen-sep {
    border: none;
    height: 1px;
    background: rgba(0, 0, 0, 0.06);
    margin: 18px 0;
}

.offscreen-social {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.offscreen-social a {
    color: inherit;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.offscreen-social .social-icon {
    font-size: 18px;
    margin-top: -2px;
    transition: transform 160ms ease, opacity 160ms ease;
    will-change: transform, opacity;
}

.offscreen-social a:hover .social-icon,
.offscreen-social a:focus .social-icon,
.offscreen-social .social-icon:hover,
.offscreen-social .social-icon:focus {
    transform: translateX(6px) scale(1.08);
    opacity: 0.95;
}

.offscreen-contact a {
    display: inline-block;
    transition: transform 160ms ease, opacity 160ms ease;
    will-change: transform, opacity;
    color: inherit;
    text-decoration: none;
}

.offscreen-contact a:hover,
.offscreen-contact a:focus {
    transform: translateX(6px) scale(1.02);
    opacity: 0.95;
}

@media (prefers-reduced-motion: reduce) {

    .offscreen-social .social-icon,
    .offscreen-contact a {
        transition: none !important;
        transform: none !important;
    }
}

.offscreen-social .social-links a {
    display: block;
    color: #111;
    text-decoration: none;
    font-weight: 700;
    margin-bottom: 6px;
}

.offscreen-phones .phone-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.offscreen-phones .off-icon {
    width: 16px;
    height: auto;
}

.offscreen-phones .phone-lines a {
    display: block;
    color: #111;
    text-decoration: none;
    font-weight: 700;
}

.offscreen-phones .phone-email {
    font-weight: 400;
    color: #111;
}

.offscreen-address {
    margin-top: 6px;
    font-weight: 700;
}

.offscreen-map-link a {
    display: inline-block;
    margin-top: 6px;
    font-weight: 700;
    text-decoration: underline;
    color: #111;
}

.offscreen-logo {
    margin-top: 30px;
}

.offscreen-logo img,
.offscreen-logo-img {
    width: 64px;
    height: auto;
    display: block;
}

@media (max-width: 1020px) {

    /* On mobile we keep the original mobile panel; hide the desktop offscreen menu */
    .offscreen-menu {
        display: none !important;
    }

    button#floatingBurger {
        display: none !important;
    }

    .offscreen-menu::after {
        display: none;
    }

    .offscreen-overlay {
        left: 60%;
    }

    .offscreen-panel {
        width: 100%;
        border-radius: 0;
    }
}

/* Hero Banner */
/* Background Wrapper */
#hero-bg {
    height: 100vh;
    width: 100vw;
    background-image: url('../img/banner.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    /* Let JS drive the transform/background-position to avoid abrupt jumps between stages */
    transition: none;
    /* transform-origin: center center; */
    transform-origin: left top;
}

#hero-bg.stage-4,
#hero-bg.stage-5 {
    transform-origin: center center !important;
}

#hero-bg.scroll-complete {
    position: absolute;
    top: 0;
}


/* #hero-bg.stage-2,
#hero-bg.stage-3 {
    transform-origin: left top !important;
}
#hero-bg.stage-4,
#hero-bg.stage-5 {
    transform-origin: right bottom !important;
} */

/* Hero Banner */
#hero {
    /* Increased to give Stage 5 more scroll space so the umbrella card remains readable */
    height: 350vh;
    position: relative;
}

#hero.scroll-complete {
    position: relative;
}

/* Infrastructure Content inside Hero */
.infrastructure-content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    opacity: 0;
    z-index: 5;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.infrastructure-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.infrastructure-content.scroll-complete {
    position: absolute;
    top: 0;
}

/* Umbrella Content */
.umbrella-content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    opacity: 0;
    z-index: 5;
    transform: translateY(50px);
    /* Longer transition so the umbrella card settles and is more readable */
    transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.umbrella-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.umbrella-content.scroll-complete {
    position: absolute;
    top: 0;
}

.infrastructure-content.scroll-complete {
    position: absolute;
    top: 0;
}

.umbrella-content.scroll-complete {
    position: absolute;
    top: 0;
}

.infrastructure-content.scroll-complete {
    position: absolute;
    top: 0;
}

/* Fishing Section */
#fishing-section {
    min-height: 100vh;
    background-image: url('../img/bg-2.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 80px 0;
    position: relative;
    z-index: 9999;
}

.sections {
    position: relative;
    z-index: 99999999999;
}

/* About Section */
#about-section {
    background-color: #faf6ed;
    padding: 150px 0;
}

.section-headline {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 60px;
    line-height: 1.4;
}

.section-headline .inline-icon {
    width: 48px;
    height: 48px;
    vertical-align: middle;
    margin: 0 8px;
}

.wide-image-wrapper {
    width: 100%;
    margin-top: 40px;
}

.wide-image-wrapper img {
    display: block;
    width: 100%;
    height: auto;
}

/* Fishing Feature Section */
#fishing-feature-section {
    padding: 80px 0 120px;
    background-color: #faf6ed;
}

.feature-header-title {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
}

.feature-header-subtitle {
    font-size: 30px;
    font-weight: 700;
    color: #000;
    margin-bottom: 28px;
}

.image-card {
    position: relative;
    overflow: hidden;
}

.image-card {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0 30px 0 30px;
}

.award-card {
    position: absolute;
    right: 24px;
    bottom: 24px;
    /* background: rgba(0,0,0,0.2); */
    color: #fff;
    padding: 20px;
    border-radius: 0 30px 0 30px;
    /* top-left, top-right, bottom-right, bottom-left */
    max-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    border: 2px solid rgba(255, 255, 255, 0.9);
}

.award-icon {
    width: 24px !important;
    border-radius: unset !important;
}

.award-text {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

/* Features Section */
#features-section {
    background-color: #faf6ed;
    padding-bottom: 80px;
}

.features-list {
    display: grid !important;
    grid-template-columns: repeat(7, 1fr);
    /* gap: 18px; */
    align-items: start;
    text-align: center;
}

.feature-item {
    padding: 12px 8px;
    text-align: center;
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: block;
    margin: 0 auto 12px;
}

.feature-title {
    font-size: 16px;
    font-weight: 700;
}

div#fishingModal {
    z-index: 999999999999;
}

/* Feature buttons (interactive icons) */
.feature-btn {
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    border: none;
    padding: 12px 8px;
    display: block;
    color: inherit;
    text-align: center;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 240ms cubic-bezier(.2, .9, .25, 1), box-shadow 240ms ease;
}

.feature-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(34, 164, 90, 0.12);
}

.feature-btn .feature-icon {
    transition: transform 260ms cubic-bezier(.2, .9, .25, 1), filter 200ms ease;
}

/* .feature-btn:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(20, 40, 60, 0.08);
} */
/* 
.feature-btn:hover .feature-icon {
    transform: translateY(-6px) scale(1.06);
} */

@media (prefers-reduced-motion: reduce) {
    .feature-btn {
        transition: none !important;
        transform: none !important;
        box-shadow: none !important;
    }

    .feature-btn .feature-icon {
        transition: none !important;
    }
}

@media (max-width: 768px) {
    .features-list {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Maps / Directions Section */
#maps-section {
    background-color: #faf6ed;
    padding: 120px 0 120px 0;
}

.infrastructure-content.visible {
    z-index: 999999999999999999;
}

.maps-intro {
    font-size: 18px;
    font-weight: 400;
    color: #000;
    max-width: 860px;
    margin: 12px auto 0;
}

.map-card {
    background: #fff;
    border-radius: 0 30px;
    overflow: hidden;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06); */
    margin-bottom: 20px;
    position: relative;
    display: block;
    min-height: 500px;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left bottom;
    display: block;
}

.map-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(180deg, rgba(255,255,255,0.0) 0%, rgba(255,255,255,0.95) 100%); */
    padding: 25px;
    border-radius: 12px;
}

.map-title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin: 0 0 6px;
}

.map-body {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    margin: 0 0 8px;
}

.map-link {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    text-decoration: underline;
    transition: opacity 180ms ease, color 180ms ease;
}

.map-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 8px;
}

.map-stats {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 8px;
}

.map-stat-item {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    /* font-weight: 700; */
    color: #000;
}

/* Map card hover effects */
.map-card {
    transition: transform 260ms cubic-bezier(.2, .9, .25, 1), box-shadow 260ms cubic-bezier(.2, .9, .25, 1);
    will-change: transform;
}

.map-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 18px 40px rgba(8, 20, 40, 0.12);
}

.map-image {
    transition: transform 360ms cubic-bezier(.2, .9, .25, 1);
}

.map-card:hover .map-image {
    transform: scale(1.04);
}

.map-overlay {
    transition: transform 260ms cubic-bezier(.2, .9, .25, 1), opacity 260ms ease, background 260ms ease;
    transform: translateY(0);
}

.map-card:hover .map-overlay {
    transform: translateY(-10px);
    opacity: 0.98;
    /* subtle lift to reveal the content more */
}

.map-card:hover .map-link,
.map-card:focus .map-link {
    opacity: 0.85;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {

    .map-card,
    .map-image,
    .map-overlay {
        transition: none !important;
        transform: none !important;
        box-shadow: none !important;
    }
}

/* Disable scale lift on small screens for stability */
@media (max-width: 768px) {
    .map-card:hover {
        transform: none;
        box-shadow: none;
    }

    .map-card:hover .map-image {
        transform: none;
    }
}

div#fishingModal {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
}

div#modalParkLinowy,
div#modalGastronomia,
div#modalSauna,
div#modalSprzet,
div#modalRowery {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    z-index: 9999999999999999;
}

@media (max-width: 991px) {
    .map-overlay {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 12px;
    }

    .map-title {
        font-size: 20px;
    }

    .map-body,
    .map-link {
        font-size: 14px;
    }
}

/* Fishing modal styles */
.fishing-modal .modal-dialog {
    max-width: 980px;
}

.fishing-modal .modal-content {
    border-radius: 20px;
    overflow: hidden;
}

.fishing-modal .modal-body {
    background: #fff;
}

.fishing-modal .modal-hero-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.fishing-modal h2 {
    font-size: 28px;
    margin-bottom: 12px;
    font-weight: 800;
}

.fishing-modal .lead {
    font-size: 16px;
    color: #222;
    margin-bottom: 12px;
}

.modal-close-square {
    position: absolute;
    top: 18px;
    right: 24px;
    width: 48px;
    height: 48px;
    border: none;
    background: #fff;
    color: #111;
    font-size: 28px;
    line-height: 1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    z-index: 1060;
}

@media (max-width: 767px) {
    .fishing-modal .modal-hero-img {
        height: 220px;
    }

    .fishing-modal h2 {
        font-size: 22px;
    }
}

/* Darken default Bootstrap modal backdrop for stronger focus */
.modal-backdrop.show {
    background-color: rgba(0, 0, 0, 0.72) !important;
}

.fishing-modal .modal-content {
    z-index: 1051;
    /* ensure modal content is above the backdrop and close square sits visually on top */
}

/* Modal inner white panel that overlaps the hero image */
.modal-inner {
    background: #fff;
    border-radius: 20px;
    margin: -64px 40px 28px;
    /* pull up to overlap hero */
    position: relative;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.10);
    padding: 36px 48px;
    overflow: visible;
}

/* Specific overrides for attraction modal (higher specificity to beat Bootstrap) */

.attraction-modal .modal-hero-img {
    height: 320px;
    object-fit: cover;
    object-position: center 30%;
    border-radius: 0;
}

.attraction-modal .modal-inner {
    margin: -60px 40px 28px;
    padding: 40px 48px 32px 48px;
    border-radius: 20px !important;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    background: #fff;
}

.attraction-modal h2 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 18px;
    margin-top: 0;
    line-height: 1.08;
}

.attraction-modal .lead {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #222;
    line-height: 1.32;
}

.attraction-modal .modal-body {
    padding: 0;
}

.attraction-modal .modal-content {
    border-radius: 20px;
    overflow: hidden;
}

.attraction-modal .modal-close-square {
    top: 24px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: #fff;
    color: #1bbf28;
    font-size: 32px;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    border: none;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.attraction-modal-badge {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: #1bbf28;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 40px;
    top: -28px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    z-index: 2;
}

.attraction-modal-badge img {
    width: 60%;
    height: auto;
    display: block
}

.attraction-separator {
    border-top: 1px solid #000;
    margin-top: 36px;
    margin-bottom: 18px;
}

.attraction-modal-icons {
    gap: 12px;
    margin-bottom: 0;
    margin-top: 0;
    padding-top: 0;
    border: none;
}

.attraction-modal-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #eee;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
}

.attraction-modal-icon.active {
    background: #1bbf28;
    opacity: 1;
}

.attraction-phone-number {
    font-weight: 800;
    font-size: 22px;
    color: #222;
    margin-left: 0;
}

/* Phone link styling inside attraction modals */
.attraction-phone-number a,
.attraction-phone-number a:visited {
    color: #111;
    text-decoration: none;
    font-weight: 800;
}

.attraction-phone-number a:hover,
.attraction-phone-number a:focus {
    color: #111;
    text-decoration: none;
}

.attraction-modal-phone {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0 0 0;
    margin-top: 18px;
    border: none;
}

.attraction-phone-bubble {
    width: 48px;
    height: 48px;
    background: #f1f1f1;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.attraction-modal-icons {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 18px;
    padding-top: 12px;
    border-top: 1px solid #f3f3f3;
}

.attraction-modal-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #eee;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    cursor: pointer;
    transition: transform 200ms cubic-bezier(.2, .9, .25, 1), box-shadow 160ms ease, background 160ms ease;
    border: none;
}

.attraction-modal-icon img {
    max-width: 60%;
    max-height: 60%;
}

.attraction-modal-icon:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(12, 18, 26, 0.06);
}

.attraction-modal-icon.active {
    background: #1bbf28;
    /* green */
    opacity: 1;
}


/* Fullscreen Image Section */
#fullscreen-section {
    background-image: url('../img/fullscreen.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 120px 0;
    position: relative;
    color: #fff;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* #fullscreen-section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0,0,0,0.28);
    pointer-events: none;
} */

.fullscreen-content {
    position: relative;
    z-index: 2;
}

.fullscreen-icon {
    width: 48px;
    height: 48px;
    display: inline-block;
}

.fullscreen-heading {
    font-size: 66px;
    font-weight: 700;
    color: #fff;
    margin: 12px 0 8px;
    line-height: 1.05;
}

.fullscreen-cursive {
    display: block;
    max-width: 720px;
    width: 80%;
    height: auto;
    margin: 12px auto 0;
}

/* Facebook Posts Section */
#facebook-section {
    background-color: #ffffff;
    padding: 120px 0 80px;
}

.fb-icon {
    width: 36px;
    height: 36px;
    display: inline-block;
}

.fb-heading {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.fb-grid {
    display: flex;
    gap: 18px;
}

.fb-card {
    background: #fff;
    border-radius: 12px;
    /* box-shadow: 0 8px 24px rgba(0,0,0,0.06); */
    overflow: hidden;
}

.fb-post-img {
    display: block;
    width: 100%;
    height: auto;
}

.btn-fb {
    background-color: #1D75E0 !important;
    color: #fff !important;
    border: none;
    padding: 14px 28px;
    font-weight: 700;
    border-radius: 10px 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-fb:hover {
    background-color: #1669c1 !important;
    color: #fff !important;
    text-decoration: none;
}

.btn-f-img {
    width: 18px;
    height: 18px;
    display: inline-block;
}

/* FAQ / Q&A Section */
#faq-section {
    background-color: #ffffff;
    padding: 60px 0 80px;
}

.faq-icon {
    width: 36px;
    height: 36px;
}

.faq-heading {
    font-size: 30px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.faq-body {
    margin-top: 12px;
}

.faq-body ol {
    padding-left: 20px;
    margin: 0;
}

.faq-body li {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.faq-image {
    max-width: 100%;
    height: auto;
}

/* Accordion styles */
.faq-body .accordion {
    border: none;
}

.faq-body .accordion-item {
    border: none;
}

.faq-body .accordion-button {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    background-color: transparent;
    border: none;
    box-shadow: none;
    padding: 12px 0;
}

.faq-body .accordion-button::after {
    display: none;
}

.faq-body .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.faq-body .accordion-button:not(.collapsed) {
    background-color: transparent;
    color: #000;
}

.faq-body .accordion-body {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    padding: 12px 0;
}



/* Footer styles */
#site-footer {
    background-color: #ffffff;
    padding: 0px 0 40px;
}

.footer-logo {
    width: 270px;
    height: auto;
}

.footer-title {
    font-size: 30px;
    font-weight: 700;
    color: #000;
    margin: 0 0 4px 0;
    text-decoration: underline;
}

/* Footer link hover: subtle opacity */
.footer-title a {
    color: inherit;
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

.footer-title a:hover {
    opacity: 0.6;
}

/* Footer partner/logo hover: subtle scale + shadow */
a[aria-label="klaj.pl"] img,
.sugarfree {
    display: inline-block;
    transition: transform 220ms cubic-bezier(.2, .9, .25, 1), box-shadow 220ms ease, opacity 160ms ease;
    will-change: transform, opacity;
}

a[aria-label="klaj.pl"]:hover img,
a[aria-label="klaj.pl"]:focus img,
.sugarfree:hover,
.sugarfree:focus {
    transform: scale(1.06);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.14);
    opacity: 0.98;
}

@media (prefers-reduced-motion: reduce) {

    a[aria-label="klaj.pl"] img,
    .sugarfree {
        transition: none !important;
        transform: none !important;
        box-shadow: none !important;
    }
}

.footer-subtitle {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.contact-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-icon-box {
    width: 42px;
    height: 42px;
    background: #f2efe8;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.contact-text {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    transition: opacity 0.2s ease;
}

.contact-text:hover {
    opacity: 0.6;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav ul li {
    margin-bottom: 6px;
}

.footer-nav ul li a {
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
}

.footer-pdfs ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-pdfs li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.footer-pdfs li a {
    color: #000;
    font-weight: 400;
    text-decoration: none;
    font-size: 14px;
}

.pdf-icon {
    width: 20px;
    height: auto;
    flex-shrink: 0;
    margin-left: 8px;
}

.footer-frame {
    max-width: 100%;
    border-radius: 12px;
}

.footer-bottom {
    padding-top: 18px;
    /* border-top: 1px solid rgba(0,0,0,0.08); */
}

.footer-copyright {
    font-size: 14px;
    color: #000;
    display: flex;
    align-items: center;
}

.footer-legal {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.sugarfree {
    height: 24px;
    display: inline-block;
    vertical-align: middle;
}

/* Attractions Section */
#attractions-section {
    background-color: #faf6ed;
    padding: 80px 0 50px;
}

.section-top-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 30px;
}

.attractions-grid {
    margin-top: 60px;
    margin-bottom: 60px;
}

.attraction-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    height: 280px;
    cursor: pointer;
}

.hero-content {
    z-index: 909999999999999999999;
}

.attraction-item:hover {
    /* keep the card size stable on hover; only the image inside will scale */
    transform: none;
}

.attraction-item-tall {
    height: 580px;
}

.attraction-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform;
}

.attraction-item:hover .attraction-image {
    transform: scale(1.06);
}

.attraction-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.overlay-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
}

.overlay-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    line-height: 1.2;
}

.overlay-text {
    font-size: 16px;
    font-weight: 400;
    color: white;
    margin: 0;
}

.attractions-note {
    font-size: 24px;
    font-weight: 400;
    color: #000;
    line-height: 1.5;
    margin-bottom: 20px;
}

.pomozemy-image {
    max-width: 300px;
    height: auto;
    display: inline-block;
}

.mobile-nav-wrapper {
    display: contents;
}

.mobile-top-nav {
    display: none;
}

#main-nav .main-nav-left,
#main-nav .main-nav-right {
    display: flex;
    align-items: center;
}

.info-card {
    background-color: white;
    padding: 40px;
    border-radius: 20px 0 20px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: #54D300;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

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

.info-card h2 {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.3;
}

button#floatingBurger {
    z-index: 999999999999999999999999;
}

.link-underline {
    color: #000;
    font-size: 16px;
    font-weight: 700;
    text-decoration: underline;
    margin-top: 24px;
    display: inline-block;
    transition: all 0.3s ease;
}

.link-underline:hover {
    color: #54D300;
    border-bottom-color: #54D300;
}

/* Hero Content */
.hero-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content h1 {
    font-size: 124px;
    font-weight: 700;
    color: white;
    line-height: 110px;
    /* margin-bottom: 20px; */
}

.hero-content .cursive-text {
    max-width: 300px;
    margin-bottom: 40px;
    display: block;
}

.btn-discover {
    background-color: #54D300;
    border: none;
    color: white;
    font-size: 18px;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 10px 0 10px 0;
}

.btn-discover:hover {
    background-color: #48b800;
}

.btn-discover i {
    margin-left: 8px;
}

/* More button under fishing card */
.btn-more {
    margin-top: 24px;
    background-color: #F48600;
    border-color: #F48600;
}

.btn-more img.btn-plus {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-left: 8px;
}

/* Hero Bottom Left */
.hero-bottom-left {
    position: fixed;
    bottom: 40px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: white;
    font-size: 14px;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.hero-content.w-100 {
    z-index: 9999999;
}

.hero-bottom-left img {
    width: 24px;
    height: 24px;
}

/* Hero Bottom Right Card */
.hero-bottom-right {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: transparent;
    border: 2px solid white;
    padding: 20px;
    border-radius: 20px 0 20px 0;
    color: white;
    text-align: center;
    height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.hero-bottom-right p {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    /* padding-bottom: 15px; */
    /* border-bottom: 2px solid white; */
    width: 100%;
}

/* Hero-bottom 'do Raby' link: white underline and subtle hover */
.hero-bottom-right .hero-link {
    color: #ffffff;
    text-decoration: underline;
    text-decoration-color: #ffffff;
    text-underline-offset: 3px;
    transition: opacity 0.18s ease;
}

.hero-bottom-right .hero-link:hover {
    opacity: 0.8;
}

.hero-bottom-right {
    z-index: 9999;
}

button.mobile-close {
    display: none;
}

.down-arrow {
    margin-top: -2px;
}

.mobile-icon-nav {
    display: none;
}

@media (max-width: 1368px) {
    #main-nav a {
        font-size: 16px;
        margin: 0 12px;
    }

    #top-nav a {
        font-size: 11px;
    }

    #main-nav .logo {
        height: 96px;
        width: 96px;
    }

    #main-nav .main-nav-center {
        top: -20px;
    }

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

    .section-headline {
        font-size: 38px;
    }
}

@media (max-width: 1200px) {
    #main-nav a {
        font-size: 14px;
        margin: 0 8px;
    }

    #main-nav .logo {
        height: 80px;
        width: 80px;
    }

    #main-nav .main-nav-center {
        top: -18px;
    }

    #main-nav .home-icon img,
    #main-nav .accessibility-icon img {
        width: 32px;
        height: 32px;
    }

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

    .section-headline {
        font-size: 36px;
    }

    .features-list {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Mobile Navigation - under 1020px */
@media (max-width: 1020px) {
    .hamburger-menu {
        display: flex;
    }

    .mobile-icon-nav {
        display: flex;
    }

    .mobile-icon-nav a {
        margin: 0 !important;
    }

    #main-nav .custom-container>div {
        justify-content: space-between;
    }

    #main-nav .main-nav-center {
        position: static;
        transform: none;
        order: 1;
    }

    .hamburger-menu {
        order: 3;
    }

    .mobile-nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        padding: 80px 30px 30px;
        transition: left 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        order: 2;
        display: block;
    }

    .mobile-nav-wrapper.active {
        left: 0;
        /* ensure the mobile panel looks like the original mobile menu (override desktop decorative panels) */
        background: rgba(0, 0, 0, 0.95);
        padding: 80px 30px 30px;
    }

    /* Hide desktop decorative panels on mobile so the menu content is unobstructed */
    .mobile-nav-wrapper.active::before,
    .mobile-nav-wrapper.active::after {
        display: none !important;
        content: none !important;
    }

    .mobile-top-nav {
        display: flex;
        flex-direction: column;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    /* Mobile explicit close button inside the mobile panel */
    .mobile-close {
        display: none;
    }

    .mobile-top-nav {
        display: flex;
        gap: 15px;
        margin-bottom: 25px;
    }

    .mobile-top-nav a {
        color: white;
        text-decoration: none;
        font-size: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-top-nav i {
        font-size: 20px;
    }

    .mobile-icon-nav {
        display: flex;
        gap: 15px;
        margin-bottom: 25px;
    }

    .mobile-icon-nav a {
        display: flex;
        align-items: center;
    }

    #main-nav .main-nav-left,
    #main-nav .main-nav-right {
        position: static;
        width: 100%;
        height: auto;
        background: transparent;
        flex-direction: column;
        padding: 0;
        transition: none;
        z-index: auto;
        overflow-y: visible;
        left: auto;
        display: flex;
        align-items: flex-start !important;
    }

    #main-nav .main-nav-left a,
    #main-nav .main-nav-right a {
        margin: 12px 0;
        font-size: 18px;
        display: block;
        text-align: left;
    }

    #main-nav .main-nav-left .home-icon,
    #main-nav .main-nav-right .accessibility-icon {
        display: none;
    }

    #main-nav .logo {
        height: 70px;
        width: 70px;
    }

    .mobile-top-nav {
        display: flex;
        flex-direction: row;
    }

    img.footer-frame.img-fluid {
        display: none;
    }

    /* Show mobile close button inside the nav panel when it's active */
    .mobile-nav-wrapper.active .mobile-close {
        display: inline-flex;
        position: fixed;
        top: 18px;
        right: 18px;
        width: 44px;
        height: 44px;
        border-radius: 8px;
        background: #fff;
        color: #111;
        border: none;
        font-size: 26px;
        align-items: center;
        justify-content: center;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
        z-index: 1100;
        cursor: pointer;
    }
}


div#custom-mobile-header {
    display: none;
}



@media (max-width: 768px) {
    div#custom-mobile-header {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 99999999999999;
        background: black;
        width: 100%;
        min-height: 50px;
        padding: 10px;
        /* box-shadow: 0 0 11px rgba(0,0,0,0.4); */
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.4);
    }

    button#mobile-menu-button {
        color: white;
    }

    .attraction-modal .modal-inner {
        margin: 0;
        padding: 40px 48px 32px 48px;
        border-radius: 20px !important;
        box-shadow: unset;
        position: relative;
        background: #fff;
    }

    .attraction-modal .modal-hero-img {
        height: 150px;
        object-fit: cover;
        object-position: center 30%;
        border-radius: 0;
    }

    .modal-content {
        max-height: 500px;
        overflow-y: scroll !important;
    }

    .mobile-nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        padding: 80px 30px 30px;
        transition: left 0.3s ease;
        z-index: 9999999999999999;
        overflow-y: auto;
        order: 2;
        display: block;
    }

    .mobile-nav-wrapper.active {
        left: 0;
        background: rgba(0, 0, 0, 0.95);
        padding: 80px 30px 30px;
        z-index: 999999999999999;
    }

    #custom-mobile-menu a.home-icon.ms-0,
    #custom-mobile-menu .main-nav-right .accessibility-icon {
        display: none;
    }

    #custom-mobile-menu .main-nav-left.d-flex.align-items-center,
    #custom-mobile-menu .main-nav-right.d-flex.align-items-center {
        display: flex;
        flex-direction: column;
        justify-content: flex-start !important;
        align-items: flex-start !important;
        text-align: left;
        width: 100%;
        gap: 12px;
        font-size: 20px;
        text-decoration: none;
        margin-bottom: 12px;
    }

    #custom-mobile-menu .mobile-top-nav {
        gap: 25px;
    }

    #custom-mobile-menu button.mobile-close {
        color: black;
    }

    button#custom-menu-close {
        background: white;
        border: unset;
        width: 40px;
        height: 40px;
        border-radius: 5px;
        position: absolute;
        top: 25px;
        right: 25px;
        color: black;
        font-size: 30px;
        line-height: 30px;
    }

    #custom-mobile-menu a {
        text-decoration: none;
    }

    #custom-mobile-menu * {
        color: white;
    }

    div#custom-mobile-header.visible {
        display: block;
    }

    img.mobile-logo-img {
        height: 45px;
    }

    button#mobile-menu-button {
        font-size: 28px;
    }

    .footer-copyright {
        font-size: 14px;
        color: #000;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    img.sugarfree.ms-3 {
        margin-left: 0 !important;
    }

    div#maps-section .row {
        gap: 30px;
    }

    .modal-inner {
        padding: 50px 20px !important;
    }

    .modal .d-flex.align-items-center.justify-content-between.mt-3 {
        flex-direction: column;
    }

    .modal .d-flex.align-items-center.gap-3.attraction-modal-icons {
        flex-wrap: wrap;
        border: unset;
    }

    .features-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .fb-grid {
        flex-wrap: wrap;
    }

    .fb-grid .col-md-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .faq-heading {
        font-size: 24px;
    }

    .faq-body li {
        font-size: 16px;
    }

    .footer-frame {
        max-width: 260px;
    }

    nav#top-nav {
        display: none;
    }

    .hero-content.w-100 {
        text-align: center;
    }

    .hero-bottom-left {
        position: fixed;
        bottom: 10px;
        left: 0;
        display: flex;
        align-items: center;
        gap: 16px;
        color: white;
        font-size: 14px;
        transition: transform 0.3s ease-out, opacity 0.3s ease-out;
        justify-content: center;
        width: 100%;
    }

    .hero-bottom-right {
        display: none;
    }

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

    .info-card h2 {
        font-size: 26px;
        font-weight: 700;
        color: #000;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .section-headline .inline-icon {
        width: 32px;
        height: 32px;
        vertical-align: middle;
        margin: 0 8px;
    }

    .hero-content .cursive-text {
        max-width: 200px;
        margin-bottom: 30px;
        display: block;
    }

    .custom-container-2 {
        padding: 0 20px;
        max-width: 100% !important;
    }

    .section-headline {
        font-size: 30px;
    }

    #about-section {
        background-color: #faf6ed;
        padding: 50px 0;
    }

    .section-headline {
        margin-bottom: 20px;
        line-height: 1.4;
    }

    .attractions-grid {
        margin-top: 0;
        margin-bottom: 0;
    }

    .attractions-note {
        font-size: 18px;
        font-weight: 400;
        color: #000;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .pomozemy-image {
        max-width: 200px;
        height: auto;
        display: inline-block;
    }

    .feature-header-title {
        font-size: 30px;
        font-weight: 700;
        color: #000;
        margin-bottom: 12px;
    }

    .feature-header-subtitle {
        font-size: 20px;
        font-weight: 700;
        color: #000;
        margin-bottom: 28px;
    }

    .image-card {
        display: block;
        width: 100%;
        height: 500px;
        border-radius: 0 30px 0 30px;
    }

    .image-card img {
        height: 100%;
        object-fit: cover;
    }

    .fullscreen-heading {
        font-size: 35px;
        font-weight: 700;
        color: #fff;
        margin: 12px 0 8px;
        line-height: 1.05;
    }

    footer .contact-item.d-flex.align-items-center.mx-4 {
        margin-left: 0 !important;
    }
}

@media (max-width: 480px) {
    .fb-grid .col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .features-list {
        grid-template-columns: 1fr;
    }
}