:root {
    --blanc: #ffffff;
    --marron: #534a3d;
    --tonique-light: #eee0c5;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a1a1a1;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;

    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    --text-7xl: 4.5rem;

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--marron);
    background-color: var(--tonique-light);
    max-width: 390px;
    margin: 0 auto;
}

.header {
    background-color: var(--tonique-light);
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 4px solid var(--marron);
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

.header__logo-text {
    color: var(--marron);
    font-weight: bold;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.header__menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.header__menu-icon {
    width: 24px;
    height: 24px;
}

.menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--tonique-light);
    z-index: 1000;
    transition: top 0.3s ease-in-out;
    overflow-y: auto;
}

.menu--active {
    top: 0;
}

.menu__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 3px solid var(--marron);
}

.menu__title {
    color: var(--marron);
    font-weight: bold;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.menu__close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu__close-icon {
    width: 24px;
    height: 24px;
}

.menu__nav {
    list-style: none;
    padding: 2rem 1rem;
}

.menu__nav-item {
    margin-bottom: 1.5rem;
}

.menu__nav-link {
    color: var(--marron);
    text-decoration: none;
    font-size: var(--text-2xl);
    font-weight: 500;
    transition: opacity 0.3s;
}

.menu__nav-link:hover {
    opacity: 0.7;
}

.menu__social {
    padding: 2rem 1rem;
    display: flex;
    gap: 2rem;
}

.menu__social-link {
    color: var(--marron);
    text-decoration: none;
    font-size: var(--text-base);
    transition: opacity 0.3s;
}

.menu__social-link:hover {
    opacity: 0.7;
}

.hero {
    position: relative;
    min-height: 100vh;
}

.hero__image {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.hero__content {
    padding: 2rem 2rem 2rem 0;
    color: var(--tonique-light);
    position: relative;
}

.hero__title {
    font-size: var(--text-6xl);
    font-weight: bold;
    line-height: 1.2;
}

.hero__date {
    font-size: var(--text-3xl);
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--tonique-light);
}

.hero__description {
    font-size: var(--text-base);
    margin-bottom: 1.5rem;
    line-height: 1.4;
    background-color: rgba(83, 74, 61, 0.7);
    border-radius: 4px;
    text-align: left;
}

.hero__list {
    list-style: none;
    margin-bottom: 2rem;
    background-color: rgba(83, 74, 61, 0.7);
    border-radius: 4px;
    text-align: left;
}

.hero__list-item {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    font-size: var(--text-sm);
}

.hero__list-item::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--tonique-light);
    font-size: 1.2rem;
}

.btn {
    background-color: var(--marron);
    color: var(--tonique-light);
    border: none;
    padding: 0.875rem 1.75rem;
    font-size: var(--text-base);
    cursor: pointer;
    border-radius: 4px;
    font-weight: 500;
    display: block;
    margin: 0 auto;
    width: fit-content;
    text-decoration: none;
}

.btn:hover {
    background-color: #3d352d;
}

.btn--small {
    padding: 0.75rem 1.5rem;
    font-size: var(--text-sm);
}

.activities {
    padding: 3rem 2rem 2rem;
    background-color: var(--tonique-light);
}

.activities__title {
    font-size: var(--text-4xl);
    font-weight: bold;
    line-height: 1.3;
    color: var(--marron);
}

.activity {
    padding: 3rem 2rem;
    text-align: center;
}

.activity--beige {
    background-color: var(--tonique-light);
}

.activity__icon {
    margin-bottom: 1.5rem;
}

.activity__icon img {
    width: 48px;
    height: 48px;
}

.activity__title {
    font-size: var(--text-2xl);
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--marron);
}

.activity__description {
    margin: 0 auto 1.5rem;
    color: var(--gray-600);
    line-height: 1.6;
    font-size: var(--text-base);
}

.partners {
    padding: 3rem 2rem;
    background-color: var(--tonique-light);
}

.partners__title {
    font-size: var(--text-4xl);
    font-weight: bold;
    line-height: 1.3;
    color: var(--marron);
    text-align: center;
    margin-bottom: 2rem;
}

.partners__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 0 auto;
    align-items: center;
}

.partners__item {
    background-color: var(--tonique-light);
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.partners__logo {
    max-width: 100%;
    height: auto;
    max-height: 60px;
}

.footer {
    position: relative;
    color: var(--tonique-light);
    min-height: 600px;
}

.footer__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.footer__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer__content {
    position: relative;
    z-index: 1;
    padding: 2rem;
}

.footer__tagline {
    font-size: var(--text-base);
    margin-bottom: 2rem;
    color: var(--tonique-light);
}

.footer__nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.footer__nav-link {
    color: var(--tonique-light);
    text-decoration: none;
    font-size: var(--text-2xl);
    transition: color 0.3s;
}

.footer__nav-link:hover {
    color: var(--tonique-light);
}

.footer__social {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    font-size: var(--text-base);
    color: var(--tonique-light);
}

.footer__contact {
    font-size: var(--text-sm);
    font-style: normal;
    color: var(--tonique-light);
}

.footer__contact-phone {
    margin-bottom: 0.5rem;
    color: var(--tonique-light);
}

.footer__contact-email {
    font-weight: 500;
    margin-bottom: 1rem !important;
    font-size: var(--text-3xl);
    color: var(--tonique-light);
}

.footer__contact-address {
    font-style: normal;
    color: var(--tonique-light);
    line-height: 1.6;
}