body {
    font-family: 'Open Sans', sans-serif;
    color: var(--vp-text-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

:root {
    --vp-pink-dark: #8B008B; /* Dark Magenta */
    --vp-pink-medium: #FF1493; /* Deep Pink */
    --vp-pink-light: #FFB6C1; /* Light Pink */
    --vp-pink-washed: #FFF0F5; /* Lavender Blush */
    --vp-gray-light: #F8F8F8; /* Off-white */
    --vp-text-dark: #333333;
    --vp-text-light: #FFFFFF;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.z-minus-1 {
    z-index: -1;
}

.object-fit-cover {
    object-fit: cover;
}

.overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Custom Tachyons Overrides / New Classes */
.bg-dark-pink {
    background-color: var(--vp-pink-dark);
}

.bg-medium-pink {
    background-color: var(--vp-pink-medium);
}

.bg-washed-pink {
    background-color: var(--vp-pink-washed);
}

.bg-light-gray {
    background-color: var(--vp-gray-light);
}

.dark-pink {
    color: var(--vp-pink-dark);
}

.dark-gray {
    color: var(--vp-text-dark);
}

.white-90 {
    color: rgba(255, 255, 255, 0.9);
}

.white-80 {
    color: rgba(255, 255, 255, 0.8);
}

.white-70 {
    color: rgba(255, 255, 255, 0.7);
}

.white-60 {
    color: rgba(255, 255, 255, 0.6);
}

.transition-shadow {
    transition: box-shadow 0.3s ease-in-out;
}

.hover-shadow-2:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.transition-opacity {
    transition: opacity 0.3s ease-in-out;
}

.hover-o-100:hover {
    opacity: 1 !important;
}

.transition-bg {
    transition: background-color 0.3s ease-in-out;
}

.hover-bg-light-gray:hover {
    background-color: var(--vp-gray-light);
}

.button-reset {
    text-decoration: none;
}

.active-toggle {
    background-color: var(--vp-pink-dark);
    color: var(--vp-text-light);
}

.word-break-all {
    word-break: break-all;
}

/* Responsive Typography for Headings */
.f-headline-ns {
    font-size: 2.5rem; /* Desktop */
}

.f1 {
    font-size: 2.25rem;
}

.f2-ns {
    font-size: 1.8rem; /* Tablet */
}

.f3 {
    font-size: 1.5rem;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .f-headline-ns {
        font-size: 2.2rem; /* Tablet */
    }
    .f2-ns {
        font-size: 1.6rem;
    }
    .f1 {
        font-size: 2rem;
    }
    .f2 {
        font-size: 1.8rem;
    }
    .f3 {
        font-size: 1.4rem;
    }
    .f4-ns {
        font-size: 1.1rem;
    }
    .f5 {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 767px) {
    .f-headline-ns, .f1 {
        font-size: 1.8rem; /* Mobile */
    }
    .f2-ns, .f2 {
        font-size: 1.5rem;
    }
    .f3 {
        font-size: 1.25rem;
    }
    .f4-ns, .f4 {
        font-size: 1rem;
    }
    .f5 {
        font-size: 0.875rem;
    }
    .f6 {
        font-size: 0.75rem;
    }
    .h2, .w2 {
        height: 1.5rem;
        width: 1.5rem;
    }
    .ml2 {
        margin-left: 0.5rem;
    }
    .transform-menu {
        transform: translateX(100%);
        transition: transform 0.3s ease-out;
    }
    .transform-menu.open {
        transform: translateX(0%);
    }
    .pt6 {
        padding-top: 4rem;
    }
    .h4, .w4 {
        height: 3rem;
        width: 3rem;
    }
    .h3, .w3 {
        height: 2.5rem;
        width: 2.5rem;
    }
    .input-reset, .button-reset {
        font-size: 1rem;
        padding: 0.75rem 1rem;
    }
}

/* Mobile Menu */
#mobile-menu {
    display: none;
    transition: transform 0.3s ease-out;
    transform: translateX(100%);
}

#mobile-menu.open {
    display: block;
    transform: translateX(0);
}

@media screen and (min-width: 1100px) {
    .dn-ns {
        display: none !important;
    }
    .db-ns {
        display: block !important;
    }
}

@media screen and (max-width: 1099px) {
    .dn-ns {
        display: block !important;
    }
    .db-ns {
        display: none !important;
    }
}

/*
 * legalDomeBlock: Container styles
 * Provides internal padding and top margin for separation from preceding content.
 */
.legalDomeBlock {
    padding: 20px; /* Top/bottom padding 2rem, left/right padding 2.5rem */
    /*
     * You might want to add a max-width and margin: 3rem auto; here
     * if you want the block to be centered and have a readable width, e'g.:
     * max-width: 800px;
     * margin: 3rem auto;
     */
}

/*
 * Headings (h1-h5) within legalDomeBlock
 * Moderate font sizes, appropriate line heights, and vertical margins.
 */
.legalDomeBlock h1 {
    font-size: 2.2rem;       /* Relatively large, but not excessive */
    line-height: 1.2;        /* Tighter line-height for headings */
    margin-top: 1.8em;       /* Space above heading */
    margin-bottom: 0.8em;    /* Space below heading */
    font-weight: 700;        /* Bold for emphasis */
}

.legalDomeBlock h2 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-top: 1.6em;
    margin-bottom: 0.7em;
    font-weight: 600;
}

.legalDomeBlock h3 {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-top: 1.4em;
    margin-bottom: 0.6em;
    font-weight: 500;
}

.legalDomeBlock h4 {
    font-size: 1.25rem;
    line-height: 1.5;
    margin-top: 1.2em;
    margin-bottom: 0.5em;
    font-weight: 500;
}

.legalDomeBlock h5 {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 1em;
    margin-bottom: 0.4em;
    font-weight: 400;
}

/*
 * Paragraphs (p) within legalDomeBlock
 * Standard font size, good line height for readability, and bottom margin.
 */
.legalDomeBlock p {
    font-size: 1rem;         /* Base font size, typically 16px */
    line-height: 1.6;        /* Good line-height for body text readability */
    margin-bottom: 1em;      /* Space between paragraphs */
}

/*
 * Unordered Lists (ul) within legalDomeBlock
 * Adds left padding for bullet points and vertical margins.
 */
.legalDomeBlock ul {
    list-style-type: disc;   /* Default bullet style */
    margin-top: 1em;         /* Space above the list */
    margin-bottom: 1em;      /* Space below the list */
    padding-left: 1.5em;     /* Indent for bullet points */
}

/*
 * List Items (li) within legalDomeBlock
 * Adds vertical spacing between list items.
 */
.legalDomeBlock li {
    font-size: 1rem;         /* Consistent font size with paragraphs */
    line-height: 1.6;        /* Consistent line-height */
    margin-bottom: 0.5em;    /* Space between list items */
}

#accueil{
    height: 600px;
    padding-top: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#contact-message{
    width: 100%;
}

.wr{
    display: flex;
    flex-direction: column;
    min-height: 100vh;

    main{
        flex: 1;
    }
}