/*root*/
:root {
    font-size: 16px;
    line-height: 1.6rem;
    font-family: "Inter", sans-serif;
    font-feature-settings: "liga" 1, "calt" 1; /* fix for Chrome */
    --black: #rgb(88, 81, 64);
    --black-50: rgba(88, 81, 64, 0.5);
    --black-80: rgba(88, 81, 64, 0.8);
    --black-90: rgba(88, 81, 64, 0.9);
    --orange: #ef8235;
    --citrine: rgb(251, 242, 222, 0.2);
    --blue-cloud: rgba(205, 224, 216, 255);
    --green: rgba(187, 196, 112, 255);
    --pink: rgba(248, 161, 125, 255);
    --red: rgba(174, 32, 18, 255);
    --yellow: rgba(228, 222, 160, 255);
    --white: rgba(255, 255, 255, 255);
    --petrol: #080357;
    --DodgerBlue: #3a86ff;
    --orange-dark: #dd6e42;
}
@supports (font-variation-settings: normal) {
    :root {
        font-family: InterVariable, sans-serif;
    }
}
@media screen and (min-width: 960px) {
    :root {
        font-size: 18px;
    }
}

body {
    font-family: "Inter", "Roboto", sans-serif;
}

/*reset*/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    color: var(--black);
}

ul,
ol {
    list-style: none;
}

a:link,
a:visited {
    text-decoration: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
}

select:hover {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}


/** utility classes **/
.btn {
    display: inline-block;
    width: fit-content;
    color: var(--black);
    background-color: var(--white);
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, color 0.2s ease;
}

.btn:hover {
    color: var(--orange);
    transform: translateY(-2px);
}

.delete-action {
    display: flex;
    justify-content: flex-end;
}

.btn--delete {
    border: 1px solid var(--orange);
    direction: rtl;
}

.active {
    color: var(--white);
    background-color: var(--orange);
    text-decoration: underline;
}
.center {
    display: flex;
    flex-direction: column;
}

.center--2 {
    gap: 2.5rem;
}
.center--1 {
    gap: 1.5rem;
}
.txt-special {
    font-size: 1rem;
    color: var(--black--90);
    margin-bottom: 1rem;
}
.txt-special a{
    color: var(--DodgerBlue);
    font-weight: bold;
    text-decoration: underline;
}
.hidden {
    display: none;
}

/** Global Styles **/

.body {
    background-color: var(--citrine);
    color: var(--black);
    padding: 2rem 1rem;
}
.container {
    max-width: 75rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.main {
    /* background-color: var(--white); */
}

/** Site Header **/
.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
}

.title {
    font-size: 2rem;
    text-align: center;
    font-weight: bold;
    color: var(--orange);
    font-family: "Irish Grover", sans-serif;
    margin: 2rem 0;
    padding: 1rem;
    border-top: 1px solid var(--black-50);
    border-bottom: 1px solid var(--black-50);
}

.sub-title {
    font-size: 1.5rem;
    color: var(--orange);
    text-align: center;
    margin-bottom: 1rem;
}

.sub-heading {
    width: fit-content;
    display: inline-block;
    padding: 0.5rem 1rem;
    /* white-space: normal; */
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--white);
    background-color: var(--orange);
}
/** menu **/
.nav-links {
  border: 1px solid var(--black-50);
}
/** calendrier **/
.calendrier {
    display: inline-block;
    width: fit-content;
    max-width: 100%;
    align-self: center;
    background: var(--orange);
    padding: 1rem;
    line-height: 2rem;
    color: var(--black);
    text-align: center;
    border-radius: 2rem;
}

/**map**/
.map {
    width: 100%;
    height: 22rem;
    border: 1px solid #ccc;
}

.banner-bg {
    width: 100%;
    height: 80vh;
    display: block;
    object-fit: cover;
}

.site-footer {
    background-color: var(--blue-cloud);
    color: var(--black);
    font-family: "Inter", sans-serif;
    padding: 2rem 1rem;
    margin-top: 3rem;
}
/** partenaires **/
.partenaire-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 1rem;
    border: 1px solid var(--orange);
}
.partenaire-img {
    max-height: 5rem;
    object-fit: contain;
}

/** Footer Styles **/
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin: 0 auto;
}

.site-footer h4,
.site-footer h5 {
    margin-bottom: 0.5rem;
    color: var(--black);
}

.footer-links ul,
.footer-hours ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li,
.footer-hours ul li {
    margin: 0.25rem 0;
}

.footer-links a {
    text-decoration: none;
    color: var(--black);
}

.footer-links a:hover {
    color: var(--orange);
}

.footer-contact a {
    color: var(--black);
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    color: var(--black-50);
    margin-top: 2rem;
}

/*** Shop calender **/

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: auto auto;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 2rem auto;
}

.calendar-day {
    background: var(--orange);
    color: var(--black);
    text-align: center;
    padding: 1rem;
    border-radius: 2rem;
    font-weight: bold;
    line-height: 1.6;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}


/* Responsive stacking for small screens */
@media (max-width: 600px) {
    .calendar-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .calendar-day {
        grid-column: auto !important;
        grid-row: auto !important;
    }
}

/*** action news ***/
.actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
}

.actions-element {
    display: inline-block;
}
