/* ===== POLICES LOCALES ===== */

/* Owners Regular - 400 */
@font-face {
  font-family: 'Owners';
  src: url('../fonts/owners-font-family/OwnersTRIAL-Regular-BF64361ef86ac54.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

/* Owners Medium - 500 */
@font-face {
  font-family: 'Owners';
  src: url('../fonts/owners-font-family/OwnersTRIAL-Medium-BF64361ef81f92b.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

/* ===== VARIABLES TYPOGRAPHIQUES ===== */

:root {
  /* Police de base */
  --font-family: 'Owners', sans-serif;
  
  /* Menu Item - 20px 400 Regular 10% #FFFFFF */
  --lf-menu-item-font-size: 20px;
  --lf-menu-item-font-weight: 400;
  --lf-menu-item-letter-spacing: 2px;
  --lf-menu-item-color: #4d4d4d;
  
  /* Titre principal - 64px 500 Medium 10% #000000 */
  --lf-page-title-font-size: 64px;
  --lf-page-title-font-weight: 500;
  --lf-page-title-letter-spacing: 6.4px;
  --lf-page-title-color: #000000;
  --lf-page-title-text-transform: uppercase;
  
  /* Title single project footer - 64px 500 Medium 10% #000 */
  --lf-single-project-footer-title-font-size: 64px;
  --lf-single-project-footer-title-font-weight: 500;
  --lf-single-project-footer-title-letter-spacing: 6.4px;
  --lf-single-project-footer-title-color: #000;
  --lf-single-project-footer-title-text-transform: uppercase;
  
  /* Titre de bloc - 23px 400 Regular 10% #000000 50% */
  --lf-bloc-title-font-size: 23px;
  --lf-bloc-title-font-weight: 400;
  --lf-bloc-title-letter-spacing: 2.3px;
  --lf-bloc-title-color: rgba(0, 0, 0, 0.5);
  --lf-bloc-title-text-transform: uppercase;
  
  /* Titre de publication - 23px 400 Regular 10% #000000 */
  --lf-publication-title-font-size: 23px;
  --lf-publication-title-font-weight: 400;
  --lf-publication-title-letter-spacing: 2.3px;
  --lf-publication-title-color: #000000;
  --lf-publication-title-text-transform: uppercase;
  
  /* Want to see more ? - 23px 400 Regular 10% #FFFFFF */
  --lf-want-to-see-more-font-size: 23px;
  --lf-want-to-see-more-font-weight: 400;
  --lf-want-to-see-more-letter-spacing: 2.3px;
  --lf-want-to-see-more-color: #FFFFFF;
  
  /* Input filtres - 20px 400 Regular 10% #000000 50% */
  --lf-filter-input-font-size: 20px;
  --lf-filter-input-font-weight: 400;
  --lf-filter-input-letter-spacing: 2px;
  --lf-filter-input-color: rgba(0, 0, 0, 0.5);
  
  /* Texte - 15px 400 Regular 5% #000000 */
  --lf-text-font-size: 15px;
  --lf-text-font-weight: 400;
  --lf-text-letter-spacing: 0.9px;
  --lf-text-color: #000000;
  
  /* Titre caractéristique - 12px 500 Medium 5% #00000080 */
  --lf-characteristic-title-font-size: 12px;
  --lf-characteristic-title-font-weight: 500;
  --lf-characteristic-title-letter-spacing: 0.75px;
  --lf-characteristic-title-color: #00000080;
  --lf-characteristic-title-text-transform: uppercase;
  
  /* Texte overlay projects grid items - 12px 500 Medium 5% #ffffff */
  --lf-overlay-text-font-size: 12px;
  --lf-overlay-text-font-weight: 500;
  --lf-overlay-text-letter-spacing: 0.75px;
  --lf-overlay-text-color: #ffffff;
  --lf-overlay-text-transform: uppercase;
}

/* ===== CLASSES STRUCTURELLES ===== */

.lf-page{
    margin-left: 40px;
    margin-right: 40px;
}

.lf-sections{
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.lf-section-row{
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 40px;
}

.lf-section-3-2 > div:first-child{
    flex: 3;
}

.lf-section-3-2 > div:last-child{
    flex: 2;
}

.lf-bloc{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 24px 0;
}

.lf-bloc:first-child{
    padding-top: 0 !important;
}

.lf-bloc-text{
    display: flex;
    flex-direction: column;
    gap: 5px;
}


/* ===== CLASSES TYPOGRAPHIQUES ===== */

b{
    font-weight: 500;
}

.lf-header-nav ul.menu li a,
.lf-footer a,
.lf-footer span {
    font-family: var(--font-family);
    font-size: var(--lf-menu-item-font-size);
    font-weight: var(--lf-menu-item-font-weight);
    letter-spacing: var(--lf-menu-item-letter-spacing);
    color: var(--lf-menu-item-color);
    text-decoration: none;
}

.lf-page-title {
    font-family: var(--font-family);
    font-size: var(--lf-page-title-font-size);
    font-weight: var(--lf-page-title-font-weight);
    letter-spacing: var(--lf-page-title-letter-spacing);
    color: var(--lf-page-title-color);
    text-transform: var(--lf-page-title-text-transform);
    margin-top: 0;
    margin-bottom: 40px;
    line-height: 1;
}

.lf-bloc-title {
    font-family: var(--font-family);
    font-size: var(--lf-bloc-title-font-size);
    font-weight: var(--lf-bloc-title-font-weight);
    letter-spacing: var(--lf-bloc-title-letter-spacing);
    color: var(--lf-bloc-title-color);
    text-transform: var(--lf-bloc-title-text-transform);
    margin: 0;
}

.lf-publication-title {
    font-family: var(--font-family);
    font-size: var(--lf-publication-title-font-size);
    font-weight: var(--lf-publication-title-font-weight);
    letter-spacing: var(--lf-publication-title-letter-spacing);
    color: var(--lf-publication-title-color);
    text-transform: var(--lf-publication-title-text-transform);
    margin: 0;
}

.lf-want-to-see-more {
    font-family: var(--font-family);
    font-size: var(--lf-want-to-see-more-font-size);
    font-weight: var(--lf-want-to-see-more-font-weight);
    letter-spacing: var(--lf-want-to-see-more-letter-spacing);
    color: var(--lf-want-to-see-more-color);
    margin: 0;
}

.lf-filter-input {
    font-family: var(--font-family);
    font-size: var(--lf-filter-input-font-size);
    font-weight: var(--lf-filter-input-font-weight);
    letter-spacing: var(--lf-filter-input-letter-spacing);
    color: var(--lf-filter-input-color);
    margin: 0;
}

.lf-text {
    font-family: var(--font-family);
    font-size: var(--lf-text-font-size);
    font-weight: var(--lf-text-font-weight);
    letter-spacing: var(--lf-text-letter-spacing);
    color: var(--lf-text-color);
    margin: 0;
    text-decoration: none;
    width: fit-content;
}

.lf-characteristic-title {
    font-family: var(--font-family);
    font-size: var(--lf-characteristic-title-font-size);
    font-weight: var(--lf-characteristic-title-font-weight);
    letter-spacing: var(--lf-characteristic-title-letter-spacing);
    color: var(--lf-characteristic-title-color);
    text-transform: var(--lf-characteristic-title-text-transform);
    margin: 0;
}

.lf-overlay-text {
    font-family: var(--font-family);
    font-size: var(--lf-overlay-text-font-size);
    font-weight: var(--lf-overlay-text-font-weight);
    letter-spacing: var(--lf-overlay-text-letter-spacing);
    color: var(--lf-overlay-text-color);
    text-transform: var(--lf-overlay-text-transform);
    margin: 0;
}

.lf-section-title{
    margin-bottom: 40px;
}

.lf-single-project-footer-title{
    font-family: var(--font-family);
    font-size: var(--lf-single-project-footer-title-font-size) !important;
    font-weight: var(--lf-single-project-footer-title-font-weight) !important;
    letter-spacing: var(--lf-single-project-footer-title-letter-spacing);
    color: var(--lf-single-project-footer-title-color);
    text-transform: var(--lf-single-project-footer-title-text-transform);
    line-height: 1;
}

body{
    background-color: #FFFFFF;
    margin: 0;
    font-family: var(--font-family);
}

/* ===== LOADER ===== */

#lf-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

#lf-loader.lf-loader--hidden {
    opacity: 0;
    pointer-events: none;
}

#lf-lottie {
    width: 900px;
    height: 900px;
}



/* ===== RESPONSIVE MOBILE ===== */

@media (max-width: 768px){

    /* ===== VARIABLES TYPOGRAPHIQUES ===== */
    :root {

        /* Titre principal - 64px 500 Medium 10% #000000 */
        --lf-page-title-font-size: 30px;
        --lf-page-title-letter-spacing: 2.4px;

        /* Titre de bloc - 23px 400 Regular 10% #000000 50% */
        --lf-bloc-title-font-size: 21px;
        --lf-bloc-title-letter-spacing: 2px;

        /* Texte - 15px 400 Regular 5% #000000 */
        --lf-text-font-size: 14.5px;
        --lf-text-letter-spacing: 0.8px;

        /* Input filtres - 20px 400 Regular 10% #000000 50% */
        --lf-filter-input-font-size: 18px;
        --lf-filter-input-letter-spacing: 1.5px;

        /* Menu Item - 20px 400 Regular 10% #FFFFFF */
        --lf-menu-item-font-size: 23px;
        --lf-menu-item-letter-spacing: 2.3px;

        /* Want to see more ? - 23px 400 Regular 10% #FFFFFF */
        --lf-want-to-see-more-font-size: 19px;
        --lf-want-to-see-more-letter-spacing: 2px;

    }


    /* ===== CLASSES STRUCTURELLES ===== */

    .lf-page{
        margin-left: 20px;
        margin-right: 20px;
        margin-top: 20px;
    }

    .lf-section-3-2{
        flex-direction: column;
        gap: 0;
    }


    /* ===== CLASSES TYPOGRAPHIQUES ===== */

    .lf-page-title {
        margin-bottom: 20px;
    }

}