@import url("https://fonts.googleapis.com/css2?family=Purista&display=swap");

body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    background-color: #f0f0f0;
    font-family: "Purista", sans-serif;
}
.container {
    display: flex;
    width: 100%;
    height: 100%;
}
.image-wrapper {
    cursor: pointer;
    position: relative;
    flex: 1;
    overflow: hidden;
}
.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: center;
    align-items: center;
    padding: 0 50px 75px 50px;
    box-sizing: border-box;
    transition: transform 0.5s ease;
    transform: translateY(100%);
}
.image-wrapper:hover .overlay {
    transform: translateY(0);
}
a {
    text-decoration: none;
    color: inherit;
}

@media (max-width: 768px) {
    body {
        flex-direction: column;
        height: 100vh;
    }
    .container {
        flex-direction: column;
        height: 100%;
    }
    .image-wrapper {
        height: 33.33vh;
    }
    .image-wrapper img {
        height: 100%;
    }
    .overlay {
        display: none;
    }
}
.hero-center {
    min-height: 100vh;
    display: flex;
    align-items: center;    /* dikeyde ortala */
    justify-content: center;/* yatayda ortala */
    text-align: center;
}



.hero-center .brand {
    display: flex;
    align-items: center;    /* logo ve yazıyı dikey hizala */
    justify-content: center;
    gap: 16px;              /* logo ile yazı arası boşluk */
    padding: 0 16px;
}

.hero-center .brand img {
    height: 64px;           /* ihtiyaca göre ayarlayın */
    width: auto;
    display: block;
}

.hero-center .brand-text {
    font-size: clamp(20px, 3vw, 36px);
    font-weight: 700;
    letter-spacing: 0.5px;
}
