@font-face {
    font-family: 'Raleway';
    src: url('./fonts/Raleway-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'Raleway';
    src: url('./fonts/Raleway-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
}

@font-face {
    font-family: 'TeXGyreAdventor';
    src: url('./fonts/texgyreadventor-regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'TeXGyreAdventor';
    src: url('./fonts/texgyreadventor-bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'TeXGyreAdventor';
    src: url('./fonts/texgyreadventor-italic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'TeXGyreAdventor';
    src: url('./fonts/texgyreadventor-bolditalic.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
}

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

.background-image{
    overflow: hidden;
    height: 100%;
}

.background img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media screen and (max-width: 1919px) {
    .background-image{
    width: 1920px
}
}

html {
    scroll-behavior: smooth;
}

body{
    padding: 0;
    margin: 0;
}

section{
    margin: 30px;
    background-color: white;
    position: relative;
}

.container{
    max-width: 1440px;
    margin-right: auto;
    margin-left: auto;
    width: calc(100% - 40px);
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    height: calc(100vh - 60px);
    padding: 0 20px;
    z-index: 2;
    position: relative;
}

.content-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.content{
    display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.actuality {
    position: relative;
    background-color: #f0f1f5;
}

.actuality .container{
    flex-direction: row;
    align-items: center;
}

.actuality .content{
    width: 50%;

}

.actuality .content .content-container *{
    color: #000000;
}

.actuality .separator img{
    filter: brightness(0%);
}

.actuality .buttons a{
    border-color: #000000;
}

.actuality .image{
    width: 50%;
    height: 100%;
    display: flex;
    align-content: center;
    align-items: center;
    position: relative;
}

.actuality .image::before,
.actuality .image::after{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 15%;
    pointer-events: none;
    z-index: 1;
}

.actuality .image::before{
    left: 0;
    background: linear-gradient(to right, #f0f1f5, transparent);
}

.actuality .image::after{
    right: 0;
    background: linear-gradient(to left, #f0f1f5, transparent);
}

.actuality .image img{
    width: 100%;
    height: calc(100% - 10vh);
    object-fit: cover;
    object-position: center;
    display: block;
    max-height: 800px;
    position: relative;
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}


@media (max-width: 1023px) {
    @media (max-width: 1023px) {

        .actuality .container{
            flex-direction: column;
            gap: 20px;
        }
        .actuality .content {
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .actuality .content .content-container {
            order: 2;
        }

        .actuality .image {
            order: 1;
            width: 100%;
            height: 100%;
            display: flex;
            align-content: flex-end;
            align-items: flex-end;
            position: relative;
            max-width: 600px;
        }

        .actuality .image img{
            max-height: 500px;
        }
    }
}


.logo{
    position: fixed;
    top: 30px;
    left: 60px;
    z-index: 1000;
}

.logo img{
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.page-light .logo img{
    filter: brightness(0);
}

.separator{
    padding: 20px 0;
    max-width: 500px;
}

.separator img{
    width: 100%;
    height: auto;
}

.paragraph{
    display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  gap: 10px;
max-width: 500px;
margin-bottom: 20px;
  
}

.paragraph span{
    color: white;
    font-size: 10pt;
    text-align: center;
    font-weight: 200;
    font-family: 'Raleway', sans-serif;
}

.top-title{
    color: white;
    font-size:9px;
    font-family: 'TeXGyreAdventor', sans-serif;
    letter-spacing: 9px;
    font-weight: 100;
}

.title{
    color: white;
    font-family: 'TeXGyreAdventor', sans-serif;
    font-size: 30px;
}

.title-paragraph{
    color: white;
    font-weight: bold;
    font-size: 14pt;
    font-family: 'Raleway', sans-serif;
    text-align: center;

}

.sub-title-paragraph{
    font-weight: normal;
    font-size: 12pt;
    font-family: 'Raleway', sans-serif;
    color: white;
    text-align: center;
    font-weight: 300;
}

.press-kit{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-top: 40px;
    margin-top: 20px;
}

.buttons{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.buttons a{
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    font-family: 'TeXGyreAdventor', sans-serif;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 16px 40px;
    cursor: pointer;
    transition: all 0.35s ease;
    min-width: 240px;
    outline: none;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.buttons a:hover{
    background: rgba(255, 255, 255, 0.08);
    border-color: #c9a96e;
    color: #c9a96e;
    letter-spacing: 4px;
}

.press-kit a:active{
    transform: translateY(1px);
}

@media (max-width: 1279px){
    section{
        margin: 20px;
    }

    .container{
        height: auto;
        min-height: calc(100vh - 40px);
        padding: 80px 0;
        align-items: center;
    }

    .content{
        align-items: center;
        width: 100%;
    }

    .content-container{
        width: 100%;
        box-sizing: border-box;
    }

    .logo{
        top: 20px;
        left: 30px;
    }

    .logo img{
        width: 60px;
        height: 60px;
    }

    .top-title{
        font-size: 11px;
        letter-spacing: 6px;
    }

    .title{
        font-size: 28px;
    }

    .title-paragraph{
        font-size: 14pt;
    }

    .sub-title-paragraph{
        font-size: 13pt;
    }

    .paragraph{
        max-width: 90%;
    }

    .paragraph span{
        font-size: 11pt;
    }

    .separator{
        max-width: 80%;
    }

    .press-kit{
        width: 90%;
        padding-top: 30px;
        margin-top: 15px;
    }

    .buttons{
        flex-wrap: wrap;
    }

    .press-kit a{
        min-width: 0;
        width: 100%;
        max-width: 280px;
        padding: 14px 30px;
        font-size: 10px;
        letter-spacing: 2px;
    }
}

@media (max-width: 768px){

    .page-footer{
        flex-direction: column;
        gap: 10px;
        justify-content: center;
        align-items: center;
    }

    section{
        margin: 10px;
    }

    .container{
        min-height: calc(100vh - 20px);
        padding: 40px 0;
    }

    .logo{
        top: 15px;
        left: 20px;
    }

    .logo img{
        width: 50px;
        height: 50px;
    }

    .top-title{
        font-size: 10px;
        letter-spacing: 4px;
    }

    .title{
        font-size: 26px;
    }

    .title-paragraph{
        font-size: 13pt;
    }

    .sub-title-paragraph{
        font-size: 12pt;
    }

    .paragraph span{
        font-size: 11pt;
    }

    .press-kit a{
        max-width: 100%;
        font-size: 10px;
        letter-spacing: 2px;
    }

    .modal-buttons{
        flex-direction: column;
    }
}

.modal-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(4px);
}

.modal{
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px;
    max-width: 440px;
    width: 90%;
    text-align: center;
    color: #fff;
    box-sizing: border-box;
}

.modal-content p{
    font-family: 'Raleway', sans-serif;
    font-size: 12pt;
    font-weight: 300;
    margin: 0 0 10px;
    line-height: 1.5;
}

.modal-size{
    font-family: 'Raleway', sans-serif;
    font-size: 10pt;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 30px;
    min-height: 1.2em;
}

.modal-buttons{
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.modal-btn{
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    font-family: 'TeXGyreAdventor', sans-serif;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 14px 32px;
    cursor: pointer;
    transition: all 0.35s ease;
    min-width: 120px;
    outline: none;
}

.modal-btn:hover{
    background: rgba(255, 255, 255, 0.08);
    border-color: #c9a96e;
    color: #c9a96e;
    letter-spacing: 4px;
}

@media (max-width: 768px){
    .modal{
        padding: 30px 20px;
    }

    .modal-content p{
        font-size: 11pt;
    }

    .modal-size{
        font-size: 9pt;
    }
}

.contact .background-image img{
    object-position: bottom left;
}

.contact .top-title,
.contact .title{
    color: black;
}

.contact .separator img{
    filter: brightness(0);
}

.contact-info{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 60px;
    padding-top: 20px;
    flex-wrap: wrap;
}

.contact-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: 500px;
    text-align: center;
}

.contact-label{
    color: black;
    font-family: 'TeXGyreAdventor', sans-serif;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.contact-value{
    color: black;
    font-family: 'Raleway', sans-serif;
    font-size: 11pt;
    font-weight: 300;
    line-height: 1.5;
    text-align: center;
}

.contact-value a{
    color: black;
    text-decoration: none;
    transition: color 0.35s ease;
    font-weight: 500;
}

.contact-value a:hover{
    color: #0d0d0d;
}

@media (max-width: 768px){
    .contact-info{
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .contact-value{
        font-size: 12pt;
    }
}

.page-light{
    background-color: #ffffff;
}

.page-light .logo img{
    filter: brightness(0);
}

.page-light .top-title,
.page-light .title{
    color: black;
}

.page-light .separator img{
    filter: brightness(0);
}

.page{
    background-image: url('./images/background_signature_vianney_light-1.jpg');
    background-size: cover;
    background-position: left bottom;
    background-repeat: no-repeat;
}

.page .container{
    height: auto;
    min-height: calc(100vh - 60px);
    padding: 120px 20px;
    align-items: center;
}

.page-paragraph{
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    max-width: 700px;
    width: 100%;
    text-align: center;
    padding-top: 20px;
}

.page-paragraph p{
    color: black;
    font-family: 'Raleway', sans-serif;
    font-size: 11pt;
    font-weight: 300;
    line-height: 1.7;
    text-align: center;
    margin: 0;
}

.page-footer{
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 30px;
    font-family: 'TeXGyreAdventor', sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: transparent;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.page-footer a{
    color: black;
    text-decoration: none;
    transition: color 0.35s ease;
}

.page-footer a:hover{
    color: #c9a96e;
}

@media (max-width: 768px){
    .page-paragraph p{
        font-size: 12pt;
    }

    .page-footer{
        position: relative;
    }
}

.contact-description{
    color: black;
    font-family: 'Raleway', sans-serif;
    font-size: 11pt;
    font-weight: 300;
    line-height: 1.7;
    text-align: center;
    margin: 0;
}

/* GENERAL INFORMATION */

.general-information{
    background-color: #000000;
}

/* Newsletter */

.newsletter-form{
    width: 100%;
    max-width: 480px;
    padding: 10px 0 0;
}

#mc_embed_signup_scroll.form-row{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    width: 100%;
}

#mc_embed_signup_scroll input[type="email"],
#mc_embed_signup_scroll input[type="submit"]{
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

#mc_embed_signup_scroll input[type="email"]{
    flex: 1 1 auto;
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(5px);
    border: 1px solid #000000;
    border-right: none;
    color: #000;
    font-family: 'Raleway', sans-serif;
    font-size: 11pt;
    font-weight: 300;
    padding: 14px 18px;
    outline: none;
    min-width: 0;
}

#mc_embed_signup_scroll input[type="email"]::placeholder{
    color: #000000;
}

#mc_embed_signup_scroll input[type="email"]:focus{
    border-color: #000000;
}

#mc_embed_signup_scroll input[type="submit"]{
    flex: 0 0 auto;
    background: transparent;
    border: 1px solid #000000;
    color: #000;
    font-family: 'TeXGyreAdventor', sans-serif;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 14px 32px;
    cursor: pointer;
    transition: all 0.35s ease;
    outline: none;
}

#mc_embed_signup_scroll input[type="submit"]:hover{
    background: #000000;
    color: #ffffff;
    letter-spacing: 4px;
}

#mce-responses{
    flex: 0 0 100%;
    width: 100%;
    margin-top: 12px;
    text-align: center;
}

#mce-responses .response{
    font-family: 'Raleway', sans-serif;
    font-size: 10pt;
    font-weight: 300;
    color: #000;
}

#mce-error-response{
    color: #c0392b !important;
}

@media (max-width: 768px){
    #mc_embed_signup_scroll.form-row{
        flex-direction: column;
    }

    #mc_embed_signup_scroll input[type="email"]{
        border-right: 1px solid #000000;
        border-bottom: none;
    }
}

.site-maintenance{
    background-color: #000000;
}

/* BANNER INFO */

.info-banner{
    width: 100%;
    
    margin: 0 auto;
    padding: 20px 0;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #000000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 1000000;

}

.info-banner-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;
    margin: 0 auto;
    max-width: 1200px;
    gap: 40px;
    flex-direction: row;
    padding: 0 20px;
}

.info-banner-content span{
    font-family: 'Raleway', sans-serif;
    font-size: 12pt;
    font-weight: 300;
    color: #ffffff;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}

.info-banner-content .close{
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    color: #ffffff;
    font-weight: bold;
}

/* END BANNER INFO */
