* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Exo', sans-serif;
    background: #102016;
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Ana İçerik Bölümü */
.main-content {
    display: flex;
    align-items: center;
    min-height: 80vh;
    gap: 60px;
    padding: 60px 0;
}

.left-section {
    flex: 1;
    max-width: 600px;
}

.right-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.description {
    margin-bottom: 2.5rem;
}

.description p {
    font-size: 1.1rem;
    color: #b8b8b8;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.description strong {
    color: #ffffff;
    font-weight: 600;
}

.download-btn {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Exo', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
}

/* Profil Fotoğrafı */
.profile-image {
    position: relative;
    width: 480px;
    height: 480px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #333 0%, #555 100%);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Partner/Logo Bölümü */
.partners-section {
    background: #ffffff;
    padding: 60px 40px;
    margin: 0;
    width: 100%;
    overflow: hidden;
}

.logo-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.logo:hover {
    text-decoration: none;
    transform: scale(1.05);
}

/* Mobil için kayma animasyonu */
@media (max-width: 768px) {
    .partners-section {
        overflow: hidden;
        position: relative;
        padding: 30px 0;
        white-space: nowrap;
    }
    
    .logo-container {
        display: flex;
        flex-wrap: nowrap;
        animation: scroll 15s linear infinite;
        gap: 120px;
        width: max-content;
    }
    
    .logo {
        flex-shrink: 0;
        white-space: nowrap;
        margin: 0 20px;
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.333%);
    }
}

.lamborghini-logo {
    width: 80px;
    height: 80px;
}

.shopify-logo {
    height: 45px;
}

.seedify-logo {
    height: 50px;
}

.westvvinc-logo {
    height: 35px;
}

.meta-logo {
    height: 50px;
}

/* Hikaye Bölümü */
.story-section {
    background: #102016;
    text-align: center;
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.story-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.story-paragraph {
    font-size: 1.1rem;
    color: #b8b8b8;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive Tasarım */
@media (max-width: 1024px) {
    .main-content {
        gap: 40px;
    }
    
    .main-title {
        font-size: 3rem;
    }
    
    .profile-image {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 40px 0;
    }
    
    /* Mobilde resim yukarıda olsun */
    .right-section {
        order: -1;
    }
    
    .left-section {
        order: 1;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .description p {
        font-size: 1rem;
    }
    
    .profile-image {
        width: 320px;
        height: 320px;
    }
    
    .logo-container {
        justify-content: center;
        gap: 20px;
    }
    
    .logo {
        flex: 0 1 auto;
    }
    
    .partners-section {
        padding: 30px 20px;
    }
    
    .story-title {
        font-size: 2rem;
    }
    
    .story-paragraph {
        font-size: 1rem;
    }
    
    .story-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Mobilde resim yukarıda olsun */
    .right-section {
        order: -1;
    }
    
    .left-section {
        order: 1;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .description p {
        font-size: 0.95rem;
    }
    
    .download-btn {
        padding: 14px 28px;
        font-size: 1rem;
        width: 100%;
    }
    
    .profile-image {
        width: 280px;
        height: 280px;
    }
    
    .logo-container {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 30px;
        overflow: hidden;
        justify-content: flex-start;
    }
    
    .story-title {
        font-size: 1.8rem;
    }
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-title,
.description,
.download-btn,
.profile-image {
    animation: fadeInUp 0.8s ease forwards;
}

.description {
    animation-delay: 0.2s;
}

.download-btn {
    animation-delay: 0.4s;
}

.profile-image {
    animation-delay: 0.6s;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #777;
}
