/* -------------------------------------------------- *\
|
|  MOBILE CSS (Default)
|
\* -------------------------------------------------- */

/* ------------------------- *\
|  Variables
\* ------------------------- */

:root {
    --content-width: 1264px;
    --content-small-width: 800px;

    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 32px;
    --space-lg: 64px;
    --space-xl: 128px;

    --color-main: #92a171;
    --color-main-dark: #6b7a56;
    --color-text: #4b4b4b;
    --color-text-light: #fefaf5;

    --color-bg-light: #fefaf5;
    --color-bg-dark: #f9f3e9;
}

/* ------------------------- *\
|  Init
\* ------------------------- */

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}

body {
    background: #fefaf5;
    font-family: "Outfit", sans-serif;
    font-size: 20px;
    color: var(--color-text);
}

img {
    display: block;
}

h1,
h2,
h3,
h4 {
    font-family: "Tiro Telugu", serif;
    font-weight: normal;
    line-height: 1.3;
    color: var(--color-text);
}

h1 {
    font-size: 48px;
}
h2 {
    font-size: 38px;
    margin-bottom: var(--space-md);
}

h2 {
    font-size: 28px;
    margin-bottom: var(--space-sm);
}

h4 {
    font-size: 24px;
}

p {
    font-size: 20px;
    font-weight: 300;
    margin-block: var(--space-sm);
    color: var(--color-text);
    line-height: 1.5;
}

a {
    text-decoration: none;
    font-weight: 300;
    color: var(--color-text);
}

p a {
    color: var(--color-main);
}

hr {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--color-main);
}

svg.wave {
    display: block;
    width: 100%;
    height: 40px;
    margin-bottom: -1px;
}

.breadcrumb {
    display: block;
    font-size: 16px;
    color: var(--color-main);
    margin-bottom: var(--space-sm);
}

/* ------------------------- *\
|  Tools
\* ------------------------- */

.hide-mobile {
    display: none !important;
}
.hide-desktop {
    display: block;
}

.menu-no-scroll {
    overflow: hidden;
    max-height: 100vh;
}

/* ------------------------- *\
|  Page content
\* ------------------------- */

.page-content {
    display: flex;
    flex-direction: column;
    background-color: var(--color-bg-dark);
}

.page-content.pad-block {
    padding-block: var(--space-lg);
}
.page-content.pad-top {
    padding-top: var(--space-lg);
}
.page-content.pad-bot {
    padding-bottom: var(--space-lg);
}

.page-content ul {
    font-size: 20px;
    margin-block: var(--space-sm);
}

.page-content ul li {
    position: relative;
    padding-left: 24px;
    font-weight: 300;
}

.page-content ul li::before {
    content: "";
    display: block;
    position: absolute;
    width: 8px;
    height: 8px;
    top: 10px;
    left: 0;
    background-color: var(--color-main);
    border-radius: 50%;
}

.page-content ol {
    list-style: none;
    counter-reset: item;
    font-size: 20px;
    margin-top: var(--space-sm);
}

.page-content ol li {
    counter-increment: item;
    position: relative;
    padding-left: 24px;
    font-weight: 300;
}

.page-content li:before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 16px;
    font-weight: bold;
    color: var(--color-main);
    display: inline-block;
    text-align: center;
}

/* ------------------------- *\
|  Wrapper
\* ------------------------- */

.wrap-content {
    width: 100%;
    max-width: var(--content-width);
    padding-inline: var(--space-md);
    margin-inline: auto;
}

/* ------------------------- *\
|  Components — Button
\* ------------------------- */

.btn {
    display: inline-block;
    width: fit-content;
    font-family: "Outfit", sans-serif;
    font-size: 20px;
    padding: 10px var(--space-sm);
    border-radius: 8px;
    border: 2px solid var(--color-main);
    color: #fff;
    background-color: var(--color-main);
    transition: 0.3s;
}

.btn:hover {
    background-color: var(--color-main-dark);
    border-color: var(--color-main-dark);
}

.btn:active {
    transform: scale(0.95);
}

.btn.outline {
    background-color: transparent;
    color: var(--color-main);
    box-sizing: border-box;
}

.btn.outline:hover {
    background-color: var(--color-main);
    color: #fff;
}

input[type="submit"].btn,
button.btn {
    border: none;
    cursor: pointer;
    margin-top: var(--space-md);
}

button.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

/* ------------------------- *\
|  Components — Radio
\* ------------------------- */

.radio-group {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.radio-option {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    cursor: pointer;
}

.radio-option input {
    appearance: none;
    width: 24px;
    height: 24px;
    border: 2px solid var(--color-main);
    border-radius: 50%;
    position: relative;
}

.radio-option input:checked::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 2px;
    left: 2px;
    background: var(--color-main);
    border-radius: 50%;
}

.radio-label {
    font-size: 20px;
}

/* ------------------------- *\
|  Components — Checkbox
\* ------------------------- */

.checkbox-container {
    display: flex;
    position: relative;
    height: fit-content;
    font-size: 20px;
    gap: var(--space-sm);
}

.checkbox-container input[type="checkbox"] {
    appearance: none;
    width: 24px;
    min-width: 24px;
    height: 24px;
    border: 2px solid var(--color-main);
    cursor: pointer;
    margin-top: 3px;
}

.checkbox-container input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    width: 5px;
    height: 11px;
    top: 6px;
    left: 8px;
    border: solid var(--color-main);
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.checkbox-container label {
    cursor: pointer;
}

/* ------------------------- *\
|  Components — Messages
\* ------------------------- */

.error-message {
    color: red;
}
.success-message {
    color: green;
}

/* ------------------------- *\
|  Header
\* ------------------------- */

.menu-mobile .menu-open-button {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    width: 80px;
    height: 80px;
    padding: 12px 12px 0 0;
    align-items: start;
    justify-content: end;
    border-radius: 0 0 0 40px;
    background-color: var(--color-bg-light);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.menu-mobile.opened .menu-open-button {
    box-shadow: none;
}

.menu-mobile .menu-open-button .toggle-button {
    width: 48px;
    height: 48px;
}

.menu-mobile .menu-mobile-content {
    display: none;
    position: fixed;
}

.menu-mobile.opened .menu-mobile-content {
    display: flex;
    flex-direction: column;
    z-index: 999;
    overflow-y: auto;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1));
}

.menu-mobile .menu-mobile-content .menu-header {
    display: flex;
    align-items: center;
    gap: 16px;
    height: 100px;
    padding-inline: 32px 72px;
    background-color: var(--color-bg-light);
}

.menu-mobile .menu-mobile-content .menu-header .logo {
    height: 64px;
}

.menu-mobile .menu-mobile-content .menu-header .menu-title {
    font-family: "Tiro Telugu", serif;
    font-size: 24px;
    line-height: 28px;
    color: #f19ba4;
}

.menu-mobile .menu-mobile-content .wave {
    height: 21px;
    margin-top: -1px;
}

.menu-mobile .menu-mobile-content .menu {
    padding: 32px;
    padding-top: 16px;
    background-color: var(--color-bg-light);
}

.menu-mobile .menu-mobile-content .menu li {
    font-size: 24px;
    line-height: 48px;
}

/* ------------------------- *\
|  Footer
\* ------------------------- */

footer {
    background-color: var(--color-bg-light);
}

footer .wave-box {
    background-color: var(--color-bg-dark);
}

footer .footer-box {
    border-radius: 16px;
    padding-block: var(--space-md);
    color: var(--color-main);
}

footer .footer-box .content {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

footer .footer-box .content .footer-col {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

footer .footer-box .content .footer-col .footer-col-title {
    font-size: 32px;
    color: var(--color-main);
}

footer .footer-box .content .footer-col ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

footer .footer-box .content .footer-col ul li a {
    font-family: "Outfit", sans-serif;
    font-size: 20px;
    color: var(--color-main);
}

footer .footer-box .content .footer-col .info {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

footer .footer-box .content .footer-col .info p {
    margin: 0;
    color: var(--color-main);
}

footer .footer-box .content .footer-col a {
    color: var(--color-main);
}

footer .footer-bottom {
    text-align: center;
    margin-block: var(--space-sm);
    font-size: 18px;
    font-weight: 300;
    color: #b8b8b7;
}

footer .contact-socials {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

footer .contact-socials .social-icon{
    width: 32px;
    height: 32px;
}

/* ------------------------- *\
|  Home — Hero
\* ------------------------- */

.home section.hero {
    position: relative;
}

.home section.hero .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    inset: 0;
    background-color: var(--color-bg-dark);
}

.home section.hero .content .hero-infos {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding: var(--space-md);
}

.home section.hero .content .hero-infos .logo-hero {
    width: 60%;
}

.home section.hero .content .hero-infos h1 .hero-top-text {
    font-size: 40px;
    color: var(--color-main);
}

.home section.hero .content .hero-infos .buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.home section.hero .content .hero-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50% 50% 0 5% / 40% 40% 0 0;
}

.home section.hero .wave-box {
    position: absolute;
    bottom: 0;
}

/* ------------------------- *\
|  Home — Four seasons
\* ------------------------- */

section.four-seasons {
    padding-block: var(--space-md);
    background-color: var(--color-bg-light);
}

section.four-seasons .content {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

section.four-seasons .content h2 {
    text-align: center;
}

section.four-seasons .content .season-container {
    display: flex;
    flex-direction: column;
    align-items: start;
    flex-grow: 1;
    flex-basis: 0;
    gap: 0;
}

section.four-seasons .content .season-container .wave {
    width: 90%;
    height: 55px;
}

section.four-seasons .content .season-container .season-content {
    width: 100%;
    border-radius: 0 16px 16px 16px;
    padding: 32px;
    padding-top: 0;
    margin-top: -1px;
}

section.four-seasons .content .season-container .season-content .season-image {
    height: 70px;
    margin: -30px 0 16px 16px;
}

section.four-seasons .content .season-container .season-content h3 {
    font-size: 28px;
    line-height: 57px;
}

section.four-seasons .content .season-container .season-content .season-text {
    font-size: 20px;
}

/* ------------------------- *\
|  Text image
\* ------------------------- */

section.simple-text-image {
    background-color: var(--color-bg-light);
}

section.simple-text-image.dark-bg {
    background-color: var(--color-bg-dark);
}

section.simple-text-image .layout {
    display: flex;
    flex-direction: column;
    padding-block: var(--space-lg);
}

section.simple-text-image .layout.right {
    flex-direction: column-reverse;
}

section.simple-text-image .layout .simple-image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

section.simple-text-image .layout .content {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-inline: auto;
    margin-top: var(--space-md);
    padding-inline: var(--space-md);
}

section.simple-text-image .layout .content h2 {
    margin-bottom: 0;
}

section.simple-text-image .layout .content .btn {
    margin-top: var(--space-md);
}

/* ------------------------- *\
|  Page Header
\* ------------------------- */

section.page-header {
    background-repeat: no-repeat;
    background-size: cover;
}

section.page-header h1 {
    color: var(--color-text-light);
}

section.page-header .overlay {
    background-color: #0000005f;
}

section.page-header .wrap-content {
    padding-block: var(--space-xl);
    font-size: 24px;
}

/* ------------------------- *\
|  Events — Item
\* ------------------------- */

.event-link:hover .event-item {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
}

.event-item {
    overflow: hidden;
    border-radius: var(--space-sm);
    background-color: var(--color-bg-light);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.event-item .event-image img {
    width: 100%;
    aspect-ratio: 1.6;
    object-fit: cover;
}

.event-item .event-content {
    z-index: 100;
    padding: var(--space-md);
    padding-bottom: var(--space-sm);
}

.event-item .event-content h3 {
    font-size: 28px;
    line-height: 50px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.event-item .event-content .event-category,
.event-item .event-content .event-datetime {
    font-size: 18px;
    color: #b8b8b7;
}

.event-item .event-content .event-datetime {
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 24px;
}

.event-item .event-content .event-cta {
    width: 100%;
    font-size: 20px;
    line-height: 25px;
    color: #92a171;
    text-align: right;
    margin-top: 24px;
    transition: 0.3s;
}

.event-link:hover .event-item .event-content .event-cta {
    padding-right: 16px;
}

.season-pill {
    display: block;
    width: fit-content;
    padding: 5px 15px;
    border-radius: 200px;
    font-size: 18px;
}

.season-pill.printemps {
    background-color: #fac9c9;
}

.season-pill.ete {
    background-color: #9ebf7d;
    color: #ffffff;
}

.season-pill.automne {
    background-color: #fbd470;
}

.season-pill.hiver {
    background-color: #bcdae5;
    color: #193568;
}

.event-item .event-content .season-pill {
    position: relative;
    margin-top: -48px;
    margin-bottom: 18px;
}

/* ------------------------- *\
|  Events — Section
\* ------------------------- */

.coming-events {
    background-color: var(--color-bg-dark);
    padding-block: var(--space-md);
}

.coming-events .coming-events-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.coming-events .coming-events-intro {
    margin: 0;
}

.coming-events .all-events {
    width: 100%;
    text-align: center;
}

.coming-events .events-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

/* ------------------------- *\
|  EVENT LIST
\* ------------------------- */

section.events-list {
    background-color: var(--color-bg-dark);
    padding-block: var(--space-sm) var(--space-lg);
}

section.events-list .content {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

section.events-list .content h2 {
    font-size: 40px;
    margin-bottom: 0;
}

section.events-list .content .category-description {
    margin-top: 0;
    color: #756f60;
}

section.events-list .content .events-grid {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
    gap: 32px;
}

/* ------------------------- *\
|  Event Details
\* ------------------------- */

section.event-details {
    background-color: var(--color-bg-dark);
}

section.event-details .event-details-layout {
    display: flex;
    flex-direction: column;
}

section.event-details .event-details-image img {
    width: 100%;
    aspect-ratio: 1.4;
    object-fit: cover;
}

section.event-details .event-details-body {
    display: flex;
    flex-direction: column;
    padding: var(--space-md);
}

section.event-details .event-details-wrap {
    display: flex;
    flex-direction: column;
}

section.event-details .event-category-label {
    font-size: 20px;
    font-weight: 300;
    color: #756f60;
}

section.event-details h1 {
    font-size: 40px;
    margin: 0;
}

section.event-details .event-details-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
}

section.event-details .event-details-time {
    font-size: 18px;
    color: #756f60;
    text-align: right;
}

/* ------------------------- *\
|  Next Events
\* ------------------------- */

section.next-events {
    background-color: var(--color-bg-dark);
    padding-block: var(--space-lg);
}

section.next-events .events-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

/* ------------------------- *\
|  Event Registration
\* ------------------------- */

section.event-registration {
    background-color: var(--color-bg-light);
}

section.event-registration .event-registration-body {
    display: flex;
    flex-direction: column;
    padding-block: var(--space-md);
}

section.event-registration .event-registration-wrap {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

section.event-registration h2 {
    margin-bottom: 0;
}

section.event-registration .registration-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

section.event-registration .form-row {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

section.event-registration .form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

section.event-registration .form-field label {
    font-size: 16px;
    color: #756f60;
}

section.event-registration .form-field input,
section.event-registration .form-field textarea {
    width: 100%;
    font-family: inherit;
    font-size: 18px;
    color: var(--color-text);
    background-color: #fff;
    border: 1.5px solid #d9d0c3;
    border-radius: 8px;
    padding: 12px var(--space-sm);
    outline: none;
    transition: border-color 0.2s;
}

section.event-registration .form-field input:focus,
section.event-registration .form-field textarea:focus {
    border-color: var(--color-main);
}

section.event-registration .form-field textarea {
    resize: vertical;
}

section.event-registration .form-submit {
    margin-top: var(--space-sm);
}

section.event-registration .form-submit .btn {
    margin-top: 0;
}

section.event-registration .bottom-section {
    display: flex;
    flex-direction: column-reverse;
    font-weight: 300;
}

section.event-registration .bottom-section .bank-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--color-main-dark);
}


/* ------------------------- *\
|  Contact
\* ------------------------- */

section.contact {
    background-color: var(--color-bg-dark);
    padding-top: var(--space-lg);
}

section.contact .contact-info-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

section.contact .contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

section.contact .contact-info h2 {
    margin-bottom: 0;
}

section.contact .contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: 32px;
}

section.contact .contact-form .form-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

section.contact .contact-form input[type="text"],
section.contact .contact-form input[type="email"],
section.contact .contact-form input[type="tel"],
section.contact .contact-form textarea {
    width: 100%;
    font-family: inherit;
    font-size: 18px;
    color: var(--color-text);
    background-color: #fff;
    border: 1.5px solid #d9d0c3;
    border-radius: 8px;
    padding: 12px var(--space-sm);
    outline: none;
    transition: border-color 0.2s;
}

section.contact .contact-form input[type="text"]:focus,
section.contact .contact-form input[type="email"]:focus,
section.contact .contact-form input[type="tel"]:focus,
section.contact .contact-form textarea:focus {
    border-color: var(--color-main);
}

section.contact .contact-form textarea {
    resize: vertical;
}

section.contact .button-container {
    margin-top: var(--space-sm);
}

section.contact #message {
    margin-top: var(--space-sm);
    font-size: 18px;
}

/* ------------------------- *\
|  Section Map
\* ------------------------- */

section.map {
    padding-top: 64px;
}

section.map .map-container {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}
section.map .map-container iframe {
    width: 100%;
    height: 400px;
}

/* ------------------------- *\
|  Section Full IMage Box
\* ------------------------- */

section.full-image-box {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

section.full-image-box .overlay {
    background-color: rgba(0, 0, 0, 0.3);
}

section.full-image-box .wave-top {
    transform: scaleY(-1);
}

section.full-image-box .wrap-content {
    min-height: 256px;
    padding-block: 64px;
}

section.full-image-box .content {
    display: flex;
    justify-content: end;
}

section.full-image-box .content .box-content {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    background-color: var(--color-bg-light);
    color: var(--color-dark);
    padding: var(--space-md);
    box-shadow: 0px 0px 15px 5px #0000001a;
    align-items: center;
    border-radius: 16px;
}

section.full-image-box .content h2 {
    color: var(--color-main);
    margin-bottom: 0;
}

section.full-image-box .content .text-content {
    width: 100%;
}

section.full-image-box .content .text-content p:first-child {
    margin-top: 0;
}

/* ------------------------- *\
|  Season Filters
\* ------------------------- */

.season-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.season-filter-pill {
    padding: 8px 20px;
    border-radius: 200px;
    border: 2px solid transparent;
    font-size: 18px;
    cursor: pointer;
    background-color: transparent;
    transition: 0.2s;
    font-family: inherit;
}

.season-filter-pill.printemps {
    border-color: #fac9c9;
    color: #a06060;
}
.season-filter-pill.printemps.active,
.season-filter-pill.printemps:hover {
    background-color: #fac9c9;
    color: inherit;
}

.season-filter-pill.ete {
    border-color: #9ebf7d;
    color: #9ebf7d;
}
.season-filter-pill.ete.active,
.season-filter-pill.ete:hover {
    background-color: #9ebf7d;
    color: #ffffff;
}

.season-filter-pill.automne {
    border-color: #fbd470;
    color: #a07a00;
}
.season-filter-pill.automne.active,
.season-filter-pill.automne:hover {
    background-color: #fbd470;
    color: inherit;
}

.season-filter-pill.hiver {
    border-color: #bcdae5;
    color: #193568;
}
.season-filter-pill.hiver.active,
.season-filter-pill.hiver:hover {
    background-color: #bcdae5;
    color: #193568;
}

/* ------------------------- *\
|  Partners
\* ------------------------- */

section.partners {
    padding-block: var(--space-lg);
}

section.partners h2 {
    text-align: center;
}

.partners-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.partner-item .partner-logo {
    width: 100%;
    aspect-ratio: 4 / 3;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: var(--space-sm);
    background-color: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    padding: 16px;
}

.partner-item .partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.partner-item .partner-content {
    padding-top: var(--space-sm);
    width: 100%;
}

.partner-item .partner-content h3 {
    font-size: 22px;
}

.partner-item .partner-content .partner-text {
    font-size: 18px;
    color: #756f60;
}

section.simple-text.not-found {
    padding-top : 64px;
}

section.simple-content h2 {
    margin-top: var(--space-md);
}

section.simple-content table {
    width: 100%;
    border-collapse: collapse;
}

section.simple-content table th {
    font-weight: bold;
    text-align: left;
    padding-block: 8px;
}
section.simple-content table td {
    padding: 4px;
    font-weight: 300;
    /*border: 1px solid #c9b9a0;*/
    min-width: 120px;
}

section.simple-content table tbody tr:nth-child(odd) {
    background-color: var(--color-bg-light);
}