/* Yahşi Uygulaması - Landing Page */

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.container {
    display: flex;
    min-height: 100vh;
    max-width: 100%;
    margin: 0;
    background-image: url('./images/half-bg.png');
    background-color: transparent;
    background-size: 80%;
    background-position: right;
    background-repeat: no-repeat;
    padding: 0;
    position: relative;
}

/* Sol Bölüm - Uygulama Bilgileri */
.left-section {
    flex: 0 0 400px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    animation: slideInLeft 1s ease-out 0.3s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.logo {
    margin-bottom: 30px;
}

.logo img {
    max-width: 200px;
    height: auto;
    animation: bounceIn 1s ease-out 0.6s both;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.slogan {
    font-family: 'Montserrat', sans-serif;
    font-size: 44.2px;
    font-weight: 700;
    color: #000;
    margin-bottom: 40px;
    line-height: 1.2;
    text-align: center;
    max-width: 360px;
    animation: slideInUp 1s ease-out 0.9s both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.download-section {
    margin-bottom: 30px;
}

.google-play-btn {
    display: inline-block;
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}


.google-play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.google-play-btn img {
    width: 200px;
    height: auto;
    display: block;
}

.legal-text {
    margin-bottom: 30px;
    text-align: center;
}

.legal-link {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
    text-align: center;
}

.legal-link:hover {
    color: #ff6b9d;
}

.qr-code {
    margin-bottom: 20px;
    text-align: center;
}


@media(max-width:1024px){
    .qr-code{
        display: none;
    }
}

.qr-code img {
    width: 120px;
    height: 120px;
}

/* Orta Bölüm - Telefon Resmi */
.phone-section {
    flex: 0 0 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    position: absolute;
    left: 45%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.phone-image {
    max-width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-image img {
    max-width: 240px;
    height: auto;
    border-radius: 20px;
}

.mobile-phone-image {
    display: none;
}

/* Sağ Bölüm - Çift Fotoğrafı */
.right-section {
    flex: 1;
    position: relative;
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        flex-direction: column;
        background-image: unset;
    }

    .phone-section {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        order: 1;
        padding: 10px;
        position: relative;
        flex: unset !important;
        width: 100%;
        left: unset !important;
        top: unset !important;
        transform: unset !important;
    }

    .phone-image {
        display: none;
    }

    .mobile-phone-image {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin-bottom: 10px;
        width: 60%;
        max-width: 250px;
    }

    .mobile-phone-image img {
        width: 100%;
        height: auto;
    }

    .left-section {
        order: 2;
        padding: 20px 20px;
    }

    .right-section {
        order: 3;
        min-height: 300px;
    }

    .slogan {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .logo img {
        max-width: 120px;
    }
    
    .download-section {
        margin-bottom: 20px;
    }
    
    .legal-text {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .left-section {
        padding: 20px;
        align-items: center;
        justify-content: flex-start;
    }

    .slogan {
        font-size: 24px;
    }

    .phone-mockup {
        width: 250px;
        height: 500px;
    }

}

@media (max-width: 480px) {
    .slogan {
        font-size: 20px;
    }

    .download-btn {
        padding: 15px 25px;
        font-size: 16px;
    }

    .phone-mockup {
        width: 220px;
        height: 440px;
    }
}