/* Reset ve Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4a90e2;
    --secondary-color: #2c3e50;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    /* background-image: url('img/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
    font-family: 'Inter', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}



.content-wrapper {
    min-height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-image: url('/images/bg-img.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.hero-content .logo-area{
    width: 145px;
    margin-bottom: 45px;
    margin:0 auto 45px auto;
    img{
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

.content-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.hero-content .text-area{
    text-align: center;
    width: 60%;
}

.hero-content h1 {
    font-size: 32px;
    margin-bottom: 18px;
    animation: fadeInUp 1s ease;
    font-weight: 300;
    .bold{
        font-weight: 600;
    }
}

.hero-content p {
    color: #878797;
    font-size: 16px;
    font-weight: 400;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: backwards;
}


footer{
    width: 100%;
}
.footer-area{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 24px 10px 48px 10px;
    border-top: 1px solid #F3F6FF;
    .footer-left-area{
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        .icon-area{
            width: 22px;
            height: 22px;
            img{
                width: 100%;
                height: 100%;
                object-fit: contain;
            }
        }
        .desc-area{
            p{
                color: #878797;
                font-size: 12px;
                font-weight: 400;
            }
        }
    }
    .footer-right-area{
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        a{
            color: #878797;
            font-size: 12px;
            font-weight: 400;
            text-decoration: none;
        }
    }

}



/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content .text-area{
        text-align: center;
        width: 100%;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 540px) {
    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-content h1 {
        font-size: 24px;
    }
    
    .hero-content p {
        font-size: 14px;
    }
    
    .footer-area{
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 10px;
    }
}

