:root {
    --background-color: #faf7f2; /* var(--background-color) */
    --button-color: #673a3d; /* var(--button-color) */
    --accent-color: #673a3d; /* var(--accent-color) */
    --accent-color-2: #673a3d; /* var(--accent-color-2) */
}
#date-selection, #apartment-selection, #apartment-dropdown, #guest-selection {
    color: var(--background-color) !important;
    font-weight: 500 !important;
}
.plus,
.minus {
    width: 64px;         /* bigger button area */
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
}

.plus i,
.minus i {
    font-size: 20px !important;  /* force icon size override */
    line-height: 1;
}

.frosted {
    background: rgba(255, 255, 255, 0.18); /* subtle white tint */
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%); /* Safari */
    border-radius: 14px;
    border: 0px solid rgba(255, 255, 255, 0.35);
}

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




.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #000;
}

p {
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.78;
    letter-spacing: -.2px;
    text-align: justify;
    color: #000
}

p + p {
    margin-top: -12px
}

p a, span a {
    color: #000;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, .5)
}

p a:hover, span a:hover {
    color: rgba(0, 0, 0, .7);
    text-decoration: none
}

.lead {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.78;
    letter-spacing: -.2px;
    color: #000;
    text-align: justify;
}

@media (min-width: 992px) {
    .lead {
        font-size: 18px
    }

    .contact {
        margin-top: -2px
    }
}

.btn {
    display: inline-flex;
    color: var(--background-color);
    background-color: var(--button-color) !important;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    border-radius: 0;
    white-space: normal;
    line-height: 1;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 15px
}

.btn-primary {
    position: relative;
    color: var(--button-color);
    background-color: var(--button-color);
    border-color: var(--button-color);
    will-change: border-color, color, background-color;
    -webkit-transition: border-color, color, background-color;
    transition: border-color, color, background-color;
    -webkit-transition-duration: .35s;
    transition-duration: .35s;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease
}

.btn-primary:hover {
    background-color: var(--button-color);
    background-color: transparent;
    background-color: var(--button-color);
}

.btn-primary.disabled, .btn-primary.focus, .btn-primary:disabled, .btn-primary:focus, .btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: var(--button-color);
    background-color: var(--button-color);
}


input[type=text], input[type=email], textarea {
    padding: 10px 0;
    width: 100%;
    font-size: 16px;
    font-weight: 300;
    line-height: 2;
    color: #333;
    border: none;
    border-bottom: 1px solid #dbe0e4
}


input[type=text]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder {
    color: #333
}

input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder {
    color: #333
}

input[type=text]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder {
    color: #333
}

input[type=text]::placeholder, input[type=email]::placeholder {
    color: #333
}

.form-control {
    background: transparent;
}

.form-check-input {
    appearance: none; /* Remove default styles */
    -webkit-appearance: none; /* Safari fix */
    -moz-appearance: none; /* Firefox fix */

    width: 30px;
    height: 30px;

    background-color: white;
    border: 2px solid black;
    border-radius: 4px;

    display: inline-block;
    cursor: pointer;

    /* Remove extra spacing issues */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Checked state */
.form-check-input:checked {
    background-color: black;
    border-color: black;
}

/* Checkmark */
.form-check-input:checked::before {
    content: "✔";
    font-size: 20px;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}



html, html body {
    min-height: 100%;
}

@media (min-width: 768px) {
    .about__profile-picture {
        margin-top: 0;
        -webkit-box-flex: 0;
        flex: 0 0 50%;
        max-width: 50%;
        width: 50%;
        margin-left: 0;
        margin-right: 0
    }
}

/* Testimonial Slideshow Styles */
.testimonial-slider {
    position: relative;
    margin: 0 auto;
    overflow: visible;
}

/* Update the testimonial styles to reduce height */
.testimonial-track {
    position: relative;
    display: flex;
    min-height: 200px;
    min-height: 200px;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
}

.testimonial-slide {
    transition: opacity 0.5s ease;
    width: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%; /* Force full height */
    visibility: hidden; /* Hide by default */
    display: flex; /* Add flexbox */
    align-items: center; /* Vertically center content */
    user-select: none; /* Prevent text selection */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.testimonial-slide:first-child {
    opacity: 1;
    position: relative;
    visibility: visible; /* Show first slide */
    height: auto;
}

.testimonial-card {
    width: 100%;
    height: 100%; /* Make cards fill the slide height */
    display: flex;
    flex-direction: column;
    background-color: var(--background-color);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-stars {
    margin-bottom: 1rem;
}

.testimonial-content {
    flex-grow: 1; /* This makes content take available space */
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-style: italic;
    line-height: 1.6;
}

.testimonial__author {
    margin-top: auto; /* Push author info to bottom */
    display: flex;
    align-items: center;
}

.testimonial__author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;  /* Position relative to the slider */
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 10px; /* Add padding inside the nav container */
    pointer-events: none;
    z-index: 10;
}

.testimonial-button {
    pointer-events: auto;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--button-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    margin: 0 -20px; /* Negative margin to position outside */
}

.testimonial-button:hover {
    background-color: var(--accent-color);
    transform: scale(1.1);
}

html {
    height: 100%;
}

html body {
    background: transparent !important;
    overflow: visible;
}

html body ::-moz-selection {
    background-color: var(--accent-color);
    color: #fff;
}

html body ::selection {
    background-color: var(--accent-color);
    color: #fff;
}

input[type=text]:focus, input[type=email]:focus, input[type=password]:focus, textarea:focus {
    outline: 0
}

.section {
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px
}

.section--border-bottom::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 100%;
    height: 1px;
    max-width: 1170px;
    background-color: #dbe0e4;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: -10;
}

.section .row.row--padded {
    margin-top: 32px;
    margin-bottom: 60px
}

@media (min-width: 1200px) {
    .section div[class*=col-].rad-col-text:first-child {
        max-width: 500px;
        margin-right: auto
    }

    .section div[class*=col-].rad-col-text:not(:first-child) {
        max-width: 500px;
        margin-left: auto
    }
}

.section div[class*=col-].rad-col-text h2 {
    text-align: center
}

@media (min-width: 992px) {
    .section {
        padding-top: 50px;
        padding-bottom: 50px
    }

    .section .row.row--padded {
        margin-top: 50px;
        margin-bottom: 50px
    }

    .section div[class*=col-].rad-col-text h2 {
        text-align: left
    }
}

.section div[class*=col-].rad-col-text p {
    text-align: center
}

.section div[class*=col-] img {
    max-width: 100%
}

.section div[class*=col-] img.image-left-overflow {
    margin-left: 0
}

.section--contact {
    padding-bottom: 0;
    background-image: url(../img/contact-bg.png);
    background-repeat: repeat-x;
    background-position: 0 100%
}


.section li {
    display: block;
    position: relative;
    padding-left: 15px;
    font-size: 18px;
    font-weight: 300;
    color: #000;
    line-height: 1.78;
    margin-bottom: 0px;
    text-align: left;
}

.section li::before {
    content: '•';
    position: absolute;
    display: flex;
    left: 0;
}

.header.collapse.show::before, .header.collapsing::before {
    background-color: #fff;
    opacity: 1
}

.header + .section {
    margin-top: 120px
}

.header {
    padding-top: 20px;
    -webkit-transition-property: height, padding, background-color, box-shadow;
    transition-property: height, padding, background-color, box-shadow;
    -webkit-transition-duration: .35s;
    transition-duration: .35s;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
}

.header::before {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    content: '';
    width: 100%;
    height: 100%;
    background-image: none;
    background-size: 100% 100%;
    background-position: 50% 100%;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: .35s;
    transition-duration: .35s;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease
}


@media (min-width: 992px) {
    .header .navbar .nav-item {
        width: auto;
        border-bottom: none
    }

    .header .navbar .nav-item:first-child {
        border-top: none
    }

    .header .navbar .nav-item .nav-link {
        font-size: 14px;
        padding-top: 0;
        padding-bottom: 0
    }
}

@media (min-width: 1200px) {
    .section div[class*=col-] img.image-left-overflow {
        margin-left: -120px
    }

    .header .navbar .nav-item .nav-link {
        padding-left: 20px;
        padding-right: 20px
    }
}

.header .navbar .nav-item .nav-link::after {
    content: '';
    position: absolute;
    left: 20px;
    bottom: 5px;
    height: 1px;
    width: calc(100% - 40px);
    background-color: rgba(0, 0, 0, .6);
    will-change: transform;
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: .4s;
    transition-duration: .4s;
    -webkit-transition-timing-function: cubic-bezier(.645, .045, .355, 1);
    transition-timing-function: cubic-bezier(.645, .045, .355, 1)
}

.header .navbar-text {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px
}



.header--sticky-triggered .navbar-light .navbar-nav .nav-link {
    color: #000000 !important;
}

.header--sticky-triggered #logo {
    fill: #000000 !important;
}

.header--sticky-triggered .navbar-brand span:first-child {
    color: #000000 !important;
}

.header--sticky-triggered .navbar-brand span:nth-child(2) {
    color: #000000 !important;
}

.header--sticky-triggered .navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
!important;
}

.footer {
    left: 0;
    bottom: 0;
    width: 100%;
    padding-top: 50px; /* Adjust as needed */
    padding-bottom: 50px; /* Adjust as needed */
    background-color: #000000;
}

.footer .container {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    align-items: center
}

@media (min-width: 992px) {
    .footer .container {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        flex-direction: row
    }
}


.unselectable {
    -webkit-user-select: none; /* Chrome all / Safari all */
    -moz-user-select: none; /* Firefox all */
    -ms-user-select: none; /* IE 10+ */
    /* No support for these yet, use at own risk */
    -o-user-select: none;
    user-select: none;
}

div {
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    word-break: break-word;
}

.container_bg {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    grid-gap: 10px;
    place-items: center;
}

.container_bg img {
    max-width: 100%;
    height: auto
}

@media (max-width: 768px) {
    .container_bg {
        grid-template-columns: 1fr; /* Single column for mobile devices */
    }
}


.div--border-bottom {
    padding-top: 50px;
    padding-bottom: 50px;
}

.div--border-bottom::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 100%;
    height: 1px;
    max-width: 1170px;
    background-color: var(--background-color);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    margin-bottom: 50px;
}

.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; /* remove the gap so it doesn't close */
}

.box-text {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -.2px;
}

.box-text-small {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -.2px;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1260px
    }
}


/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
/* .active, .accordion:hover {
    background-color: var(--accent-color-2);
}*/

/* Style the accordion panel. Note: hidden by default */
.videoPanel {
    padding: 0 18px;
    background-color: var(--background-color);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.postCats {
    margin-bottom: 40px;
    position: relative;
    transition: opacity .25s;
}

.pile-button {
    position: relative;
    padding: 10px 20px;
    margin-right: 10px;
    margin-bottom: 10px;
    background: white;
    border: 2px solid #EFEFEF;
    border-radius: 20px;
    cursor: pointer;
    transition: transform 0.15s;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.78;
    letter-spacing: -.2px;
    text-align: justify;
    color: var(--button-color);
}

.pile-button:hover {
    border: 2px solid #000;
}

.pile-button.active {
    background: var(--button-color) !important;
    border: 2px solid #000;
    color: var(--background-color);
}

[data-star] {
    font-style: normal;
    font-size: 1.5em;
    display: inline-block;
    position: relative;
    unicode-bidi: bidi-override;
}

[data-star]::before {
    display: block;
    content: '★★★★★';
    color: #ddd;
}

[data-star]::after {
    white-space: nowrap;
    position: absolute;
    top: 0;
    left: 0;
    content: '★★★★★';
    width: var(--width);
    color: var(--accent-color);
    overflow: hidden;
    height: 100%;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
}

.overlay.active {
    display: flex;
}

.overlay-image-container {
    max-width: 100%;
    max-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#overlayPicture {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

#overlayImage {
    max-width: 100%;
    max-height: 100vh;
    object-fit: contain;
}

.overlay-close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 5px 10px;
    font-size: 14px;
    cursor: pointer;
    z-index: 10;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.overlay-close-button:hover {
    opacity: 1;
}
.apartment-dropdown {
    appearance: none; /* Removes default styling */
    background-color: transparent;
    border: none !important;
    color: var(--button-color);
    border-radius: 5px;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
}


.calendar-container {
    background: var(--background-color);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 500px;
}

.booking-search {
    margin: 20px auto;
    padding: 20px;
}

.booking-search label {
    display: block;
    margin-bottom: 5px;
}

.booking-search select,
.booking-search input[type="text"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.booking-search button {
    width: 100%;
    padding: 10px;
    background-color: var(--button-color);
    color: var(--background-color);
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.next-button {
    background-color: var(--button-color);
    font-size: 12px;
    padding: 10px;
    color: var(--background-color);
    border: none;
}

#calendar {
    width: 100%;
    border-collapse: collapse;
}

#calendar th, #calendar td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
    cursor: pointer;
}

#calendar .past-day {
    background-color: #ddd !important;
    color: var(--button-color);
    pointer-events: none;
    text-decoration: none !important;
}

/* Calendar cell availability styles to match legend */
td[data-date].available-checkin {
    background-color: #d4edda ;
}

td[data-date].available-checkout {
    background-color: #d1ecf1 ;
}

td[data-date].checkout-only {
    background-color: #fff3cd !important;
}

td[data-date].unavailable {
    background-color: #ffdddd ;
    color: #999 !important;
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}


/* Error message styling */
#calendar-availability-error {
    border-radius: 4px;
    font-size: 0.9rem;
}


td[data-date].selected {
    background-color: var(--button-color) !important;
    color: var(--background-color) !important;;
    font-weight: bold;
}

td[data-date].in-range {
    background-color: var(--accent-color);
}

#date-range-display {
    margin-bottom: 10px;
    font-weight: bold;
}

.counter-container {
    background: var(--background-color);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 500px;
}

.counter-controls {
    display: flex;
    max-width: 150px;
    align-items: center;
}

.counter-controls button {
    font-size: 24px; /* Adjusted font size to fit icons */
    background: none;
    cursor: pointer;
    color: var(--button-color);
    border: none;
    display: flex;
    justify-content: center; /* Horizontally center the content */
    align-items: center; /* Vertically center the content */
}

.counter-controls button:focus {
    outline: none; /* Removes the dotted focus outline */
}

.counter-controls i {
    font-size: 10px; /* Adjust the icon size */
}

.counter-controls span {
    font-size: 18px;
    width: 30px;
    text-align: center;
}

/* Style the range input (slider) */
input[type="range"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 8px; /* Slider height */
    background: var(--accent-color); /* Background color of the slider */
    border-radius: 5px; /* Rounded corners */
    outline: none;
    transition: background 0.3s;
}

/* Style the thumb (slider handle) */
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 30px; /* Thumb size */
    height: 30px;
    border-radius: 50%; /* Round thumb */
    background: var(--button-color); /* Green thumb color */
    cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--button-color);
    cursor: pointer;
}

input[type="range"]:hover {
}

input[type="range"]:focus {
    outline: none;
}

.section-heading {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-heading::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: var(--accent-color);
    bottom: -10px;
    left: 25%;
}

.section-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}


.about-content {
    font-size: 1.1rem;
    line-height: 1.6;
}

.img-fluid {
    transition: transform 0.3s ease;
}

.img-fluid:hover {
    transform: scale(1.02);
}

.hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.testimonial-card {
    border-radius: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--background-color);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.testimonial-content {
    font-style: italic;
    line-height: 1.6;
}

.star-icon {
    color: var(--accent-color);
}

.testimonial__author {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.testimonial__author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.location-card {
    transition: transform 0.3s ease;
    padding: 1rem 0;
}

.location-content {
    padding: 1.5rem;
}

.hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.hero-section {
    height: 40vh; /* Adjust height as needed */
    min-height: 250px;
    max-height: 500px;
    margin-bottom: 2rem;
    overflow: hidden;
    user-select: none;
}

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

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    z-index: 2;
    color: #fff;
}

.content-overlay h1, .content-overlay h2 {
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.location-badge {
    color: #666;
    font-size: 1rem;
}

.amenities-title {
    font-weight: 600;
}

.amenities-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.5rem;
}

.amenity-item {
    font-size: 0.9rem;
}

img.lazyload {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    /* Optional: add a placeholder background */
    background-color: #f0f0f0;
}

img.loaded {
    opacity: 1;
}

.cta-container {
    background-color: var(--background-color);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.25rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.cta-content h4 {
    margin-top: 0;
    color: #303030;
    font-weight: 600;
}

.cta-content p {
    color: #505050;
    margin-bottom: 1.25rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background-color:  var(--button-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--button-color); /* Fallback color if variable not defined */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    color: white;
    text-decoration: none;
}


.cta-button span {
    margin-right: 0.5rem;
}

.cta-button i {
    transition: transform 0.2s ease;
}

.cta-button:hover i {
    transform: translateX(4px);
}