/* VERTICAL FIRST PAGE (HOME) */


.vertical_first {
    background-color: black;
    color: white;
    min-height: 100vh;
    width: 100%;
    display: grid;
    align-content: center;
    background-image: url(../../images/bg/mobile.jpg);
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center;
    align-content: space-around;
}

.vertical_first .vertical_first_container {
    min-width: 100%;
    margin: auto 0;
}

@font-face {
    font-family: 'Garde';
    src: url('../Garde.ttf') format('truetype');
}

.garde-text {
    font-family: 'Garde', serif;
    font-size: 40px;
    letter-spacing: 2px;
    text-align: center;
    margin: 0;
    animation: floatIn 0.8s forwards; /* animation speed */
    animation-delay: 0.5s; /* animation delay */
    opacity: 0;
}

.first_line {
    font-family: "Libre Caslon Text", serif;
    font-size: 15px;
    letter-spacing: 8px;
    animation: floatIn 0.9s forwards; /* animation speed */
    animation-delay: 0.1s; /* animation delay */
    opacity: 0;
}

.third_line {
    font-family: "Libre Caslon Text", serif;
    font-size: 20px;
    letter-spacing: 2px;
    padding-top: 25px;
    padding-bottom: 25px;
    animation: floatIn 0.8s forwards; /* animation speed */
    animation-delay: 1s; /* animation delay */
    opacity: 0;
}

.vertical_first .welcome {
    text-align: center;
    margin-top: auto 0;
}

.vertical_first .contacts{
    display: flex;
    position: relative;
    top: 90%;
    animation: floatIn 0.8s forwards; /* animation speed */
    animation-delay: 1s; /* animation delay */
    width: 80%;
    margin: 0 auto;
    justify-content: space-around;
}

.vertical_first  .contacts a{
    margin: 0 18px; /* Add some space between icons */
}

.vertical_first .contacts a img{
    width: 100%;
    height: 30px;
    width: auto;
    transition: transform 0.1s ease-in-out;
    z-index: 500;
}

.vertical_first .contacts a img:hover{
    transform: scale(1.15);
}

/* Animations for text lines (float in) */
@keyframes floatIn {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.vertical_first .right {
    overflow-x: hidden;
    max-height: 60vh;
}

/* Fade in animation for logo */
.fade-in-logo {
    animation: fadeIn 5s forwards;
}

.vertical_first .right .fade-in-logo{
    text-align: center;
}

.vertical_first .right .fade-in-logo img {
    width: 80%;
    height: auto;
    z-index: 1; 
}