@font-face {
    font-family: 'Inter';
    src: url('../assets/images/download-pages/Inter-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

html, body {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

body {
    background-color: #FFFFFF;
    color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 100%;
    height: 100vh;
    max-width: 1024px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0 40px;
}

.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

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

.main-content {
    display: flex;
    align-items: center;
}

.text-content {
    flex-basis: 45%;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #000;
    max-width: 600px;
}

.tagline {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 1.3;
    max-width: 600px;
}

.badge-container {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    margin-bottom: 25px;
}

.download-button {
    display: inline-block;
    background-color: #333333;
    color: white;
    text-decoration: none;
    padding: 10px;
    border-radius: 80px;
    font-weight: 700;
    font-size: 28px;
    text-align: center;
    align-self: flex-start;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    max-width: 300px;
    margin-bottom: 0;
    pointer-events: none;
}

.download-button:hover {
    background-color: #333333;
}

.app-stores-text {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 500;
    text-align: left;
}

.app-stores {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
}

.app-store-icon {
    height: 45px;
    width: auto;
    transition: transform 0.2s;
}

.app-store-icon:hover {
    transform: scale(1.05);
}

.phones-content {
    flex-basis: 55%;
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone {
    height: 100%;
    object-fit: contain;
}

.phone-left {
    z-index: 1;
    position: absolute;
    left: 0;
    bottom: 12px;
    max-width: 220px;
}

.phone-right {
    height: 100%;
    position: absolute;
    top: 50%;
    right: 60px;
    transform: translateY(-50%);
    z-index: 2;
}

/* 1200px üzerinde gizlenecek butonlar */
.top-buttons {
    display: none;
}

/* Bottom buttons default olarak gizli */
.bottom-buttons {
    display: none;
}

/* Responsive tasarım */
@media (max-width: 968px) {
    .container {
        padding: 0 30px;
    }
    
    h1 {
        font-size: 32px;
        margin-bottom: 10px;
    }
    
    .tagline {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .main-content {
        flex-direction: column;
    }
    
    .text-content {
        display: flex;
        flex-direction: column;
        flex-basis: auto;
        width: 100%;
        margin-bottom: 0;
        padding-right: 0;
        align-items: center;
        text-align: center;
        height: auto;
    }
    
    h1, .tagline {
        text-align: center;
    }
    
    /* Text content içindeki butonları gizle */
    .text-content .badge-container,
    .text-content .app-stores-text,
    .text-content .app-stores {
        display: none;
    }
    
    /* Telefonların üzerindeki butonlar */
    .top-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin: 10px 0 40px 0;
    }
    
    .top-buttons .badge-container {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-bottom: 0;
    }
    
    .top-buttons .download-button {
        font-size: 24px;
        padding: 8px 20px;
    }
    
    /* Alttaki butonları göster */
    .bottom-buttons {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-top: 25px;
    }
    
    .bottom-buttons .app-stores-text {
        display: block;
        text-align: center;
        margin-bottom: 15px;
        font-size: 14px;
    }
    
    .bottom-buttons .app-stores {
        display: flex;
        justify-content: center;
    }
    
    .phones-content {
        flex-basis: 50% !important;
        position: relative;
        margin: 0;
        height: 100%;
    }
    
    .phone-left {
        position: relative;
        left: 0%;
        transform: translateX(-50%);
        height: 230px;
    }
    
    .phone-right {
        transform: translateX(50%) translateY(-50%);

        right: 0%;
        height: 260px;

    }
    
    .download-button {
        align-self: center;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 20px 15px;
    }
    
    h1 {
        font-size: 28px;
    }
    
    .tagline {
        font-size: 16px;
    }
    
    .top-buttons .download-button {
        font-size: 20px;
        padding: 8px 15px;
    }
    
    .bottom-buttons .app-stores-text {
        font-size: 12px;
    }
    
    .app-store-icon {
        height: 40px;
    }
}
