@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    width: 100%;
    display: flex;
    flex-direction: row;
}

.left-bar {
    position: fixed;
    width: 40%;
    height: 100vh;
    background-color: #ed1c24;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* position: relative; */
}

.left-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
    opacity: .15;
}

.left-bar-wrapper {
    z-index: 1;
}

.left-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.left-bar .left-bar-logo {
    text-align: center;
}

.left-bar .left-bar-logo img {
    width: 50%;
    text-align: center;
    margin-bottom: 2rem;
}

.left-bar-text {
    margin-bottom: 2.5rem;
}

.left-bar-text p {
    font-family: "Titillium Web", sans-serif;
    color: white;
    font-size: .8rem;
    margin: 1.5rem 0;
}

.left-bar-text p:nth-child(2) {
    font-weight: bold;
    font-style: italic;
}

.left-bar-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    color: white;
    font-weight: 300;

}

.left-bar-contact p {
    font-family: "Titillium Web", sans-serif;
}

.left-bar-contact a {
    font-family: "Titillium Web", sans-serif;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
}




.right-bar {
    width: 60%;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    gap: 2rem;
    margin-left: 40%;
}

.brand {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 16px solid #ed1c24;
    /* border-radius: 5px; */
}

.brand-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shadow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}

.brand-descriptions {
    position: absolute;
    bottom: 3.5rem;
    left: 2rem;
}

.brand-logo {
    width: 20%;

}

.brand-logo img {
    width: 100%
}

.brand-text {
    margin-top: .8rem;
    color: white;
    font-family: "Titillium Web", sans-serif;
    font-size: .8rem;
    width: 50%;
}

.media-icons {
    margin-top: 1rem;
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.media-icons a {
    text-decoration: none;
}

.icons {
    width: 30px;
    height: 30px;
}
.arrow-down {
    display: none;}


@media only screen and (max-width: 600px) {
    .container {
        flex-direction: column;
    }

    .left-bar {
        width: 100%;
        position: relative;
        padding: 2rem;
    }

    .right-bar {
        width: 100%;
        padding: .8rem;
        gap: 1rem;
        margin-left: 0;
    }

    .brand-text {
        margin-top: .4rem;
        font-size: .6rem;
        width: 90%;
    }

    .icons {
        width: 20px;
        height: 20px;
    }

    .media-icons {
        margin-top: .6rem;
        gap: .5rem;
    }

    .brand-descriptions {
        bottom: 10%;
        left: 10%;
    }

    .arrow-down {
        display: block;
        position: absolute;
        bottom: 0;
        right: 50%;
        transform: translateX(50%);
        animation: moveUpDown 1s ease-in-out infinite;

    }
    .brand {
    border: 4px solid #ed1c24;

}
}


@keyframes moveUpDown {
    
    0% {
        transform: translateX(50%) translateY(0);
    }
    50% {
        transform: translateX(50%) translateY(-20px); /* yukarı hareket */
    }
    100% {
        transform: translateX(50%) translateY(0);
    }
}