/*
rose claire : #dbbab5
rose foncé : #cd9d96

*/


@font-face {
  font-family: "Metropolis1920";
  src:
    local("Metropolis1920"),
    url("{{ url('../fonts/Metropolis1920.otf') }}") format("opentype");
}

@font-face {
  font-family: "Italiana-Regular";
  src:url("{{ url('../fonts/Italiana-Regular.ttf') }}") format("truetype");
}

@font-face {
  font-family: "Amalina";
  src:url("{{ url('../fonts/Amalina.ttf') }}") format("truetype");
}


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Josefin Sans", sans-serif;
}

.hidden{
    display: none;
}

.container {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    height: 100vh;
}

.hero-container {
    display: flex;
}

.hero-desktop {
    /*width: 100%;*/
    min-width: 600px;
}

.hero-mobile {
    display: none;
    width: 100%;
}

.content-wrapper {
    padding: 5em 2em 0 10em;
}

.desktop-logo {
    display: block;
}

.logo-container {
    display: none;
}

.logo {
    object-fit: contain;
    width: 15em;
}

.logomobile{

}

.title {
    margin: 2.5em 0 0 0;
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #e4aba8;
    line-height: 1.2em;
}

.coming-soon {
    color: #413a3a;
    font-size: 3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 0.5em;
    width: 50%;
    line-height: 1.2em;
}

.description {
    color: #e4aba8;
    width: 60%;
    min-width: 400px;
    line-height: 1.5em;
    margin-bottom: 2em;
}

form {
    width: 100%;
    position: relative;
}

.input-container {
    width: 65%;
    min-width: 400px;
}

#email {
    border: 1px solid #e4aba8;
    border-radius: 50px;
    background: transparent;
    padding: 0 2em;
    margin-left: 0.2em;
    height: 50px;
    width: 70%;
    outline: none;
}

.danger-button {
    background: #e15f5b;
    position: absolute;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    top: 20px;
    right: 63%;
    transition: 0.5s;
}

.danger-text, .confirmation-text {
    font-size: 12px;
    font-weight: 600;
    padding: 0.8em 2rem;
    transition: 0.5s;
}

.danger-text{
    color: #e15f5b;
}

.confirmation-text{
    color:  #398446;
    font-size: 20px;
}

#addEmail{
    cursor:pointer;
    font-weight: lighter;
    color: #000;
    font-size: 15px;
}

#addEmail:hover{
    font-weight: bold;
}

.button {
    background: linear-gradient(135deg, #f8bfbf, #ee8c8c);
    height: 55px;
    border: none;
    border-radius: 50px;
    outline: none;
    width: 90px;
    transform: translate(-55%, 3px);
    box-shadow: 0 10px 30px -5px #e4aba8;
    cursor: pointer;
}

.input::placeholder {
    color: #CCC;
}

.button:active {
    background: linear-gradient(135deg, #ffebeb, #fbb1b1);
}

@media screen and (max-width: 1000px) {
    .hero-desktop {
        min-width: 480px;
    }
}

@media screen and (max-width: 768px) {
    .container {
        height: initial;
        flex-direction: column;
    }

    #confirmation-text{
        text-align: center;
    }

    .content-wrapper {
        padding: 0;
    }

    .logo-container {
        display: block;
        text-align: center;
    }

    .desktop-logo {
        display: none;
    }

    .logo {
        padding: 2em;
    }

    .title {
        font-size: 2.5rem;
        margin:  1.5em 0 0 0;
        text-align: center;
        width: 100%;
    }

    .hero-desktop {
        display: none;
    }

    .hero-mobile {
        display: block;
    }

    .coming-soon {
        width: 100%;
        font-size: 2.5rem;
        text-align: center;
        padding: 0 1em;
    }

    .description {
        text-align: center;
        font-size: 0.8rem;
        width: 100%;
        padding: 0 3.5em;
    }

    .input-container {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .danger-button {
        top: 13px;
        right: 34%;
    }

    .danger-text .confirmation-text{
        text-align: center;
    }

    .button {
        position: absolute;
        height: 50px;
        transform: translate(-55%);
        right: 0;
    }
}