/* Anasayfa CSS - Yamaçlı Hukuk Bürosu */

/* Genel Stiller */
body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

/* Landing Page */
.landing-page {
    width: 100vw;
    height: 100vh;
    background-image: url('../images/Yamacli.av.tr-anasayfa\ 1.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    color: #333333;
}

/* Logo Alanı */
.logo-container {
    padding: 50px 0 0 110px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo {
    height: 60px;
    margin-bottom: 5px;
}

.logo-text {
    font-size: 14px;
    font-weight: 400;
}

/* Slogan Alanı */
.slogan-container {
    padding-left: 110px;
    margin-top: -100px;
}

.slogan-container h1 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
    color: #333333;
}

/* Alt Alan */
.bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px 50px 110px;
}

/* Dil Seçenekleri */
.language-options {
    font-size: 14px;
}

.language-options a {
    color: #333333;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.language-options a:hover {
    opacity: 0.7;
}

.language-options .active {
    font-weight: 600;
}

/* Ok Butonu */
.arrow-button a {
    color: #333333;
    display: block;
    transition: transform 0.3s ease;
}

.arrow-button a:hover {
    transform: translateY(5px);
}

/* Responsive Stiller */
@media (max-width: 768px) {
    .logo-container {
        padding: 30px 0 0 60px;
    }
    
    .slogan-container {
        padding-left: 60px;
    }
    
    .slogan-container h1 {
        font-size: 36px;
    }
    
    .bottom-container {
        padding: 0 30px 30px 60px;
    }
}

@media (max-width: 480px) {
    .logo-container {
        padding: 20px 0 0 40px;
    }
    
    .slogan-container {
        padding-left: 40px;
    }
    
    .slogan-container h1 {
        font-size: 28px;
    }
    
    .bottom-container {
        padding: 0 20px 20px 40px;
    }
}
