/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow: hidden;
}
a{
    color: #1a365d;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Ana Web Sitesi Konteyneri */
.website-container {
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Header Bölümü - Logo ve Firma Adı */
.header {
    padding: 2vh 4vw 1vh;
    text-align: center;
    flex-shrink: 0;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2vh;
}

.logo-image {
    max-width: 25vw;
    height: auto;
    object-fit: contain;
}

/* Avukat İsimleri Bölümü - Ana Bölüm */
.lawyers-section {
    flex: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10vh 0;
}

.section-line {
    width: 100%;
    height: 0.2vh;
    background-color: #1a365d;
    margin: 1vh 0;
}

.lawyers-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2vw;
    flex-wrap: wrap;
    flex: none;
    align-items: center;
    padding: 2vw;
}

.lawyer-name {
    font-family: 'Inter', sans-serif;
    font-size: 2.5vw;
    font-weight: 600;
    color: #1a365d;
    text-align: center;
    line-height: 1;
}

.separator {
    font-size: 2.5vw;
    color: #1a365d;
    font-weight: bold;
}

/* İletişim Bilgileri Bölümü */
.contact-section {
    padding: 1vh 0;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.address {
    margin-bottom: 1vh;
}

.address p {
    font-family: 'Inter', sans-serif;
    font-size: 1.4vw;
    font-weight: 400;
    color: #1a365d;
    line-height: 1.4;
    margin: 0;
    text-align: center;
}

.contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1vw;
    flex-wrap: wrap;
}

.email, .phone {
    font-family: 'Inter', sans-serif;
    font-size: 1.4vw;
    font-weight: 400;
    color: #1a365d;
}

.contact-separator {
    font-size: 1.4vw;
    color: #1a365d;
}

/* Alt Çizgi */
.bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6vh;
    background-color: #1a365d;
}

/* Responsive Tasarım */

/* Büyük Ekranlar - Viewport optimizasyonu */
@media (min-width: 1200px) {
    .logo-image {
        max-width: 30vw;
    }
    
    .lawyer-name {
        font-size: 2vw;
    }
    
    .separator {
        font-size: 2.2vw;
    }
    
    .address p, .email, .phone {
        font-size: 1.2vw;
    }
}

/* Tablet Boyutları */
@media (max-width: 768px) {
    .logo-image {
        max-width: 30vw;
    }
    
    .lawyer-name {
        font-size: 3vw;
    }
    
    .separator {
        font-size: 3vw;
    }
    
    .address p, .email, .phone {
        font-size: 1.8vw;
    }
}

/* Mobil Boyutları */
@media (max-width: 480px) {
    .logo-image {
        max-width: 70vw;
    }
    
    .lawyers-main {
        flex-direction: column;
        gap: 1vh;
    }
    
    .lawyer-name {
        font-size: 4vw;
    }
    
    .separator {
        display: none;
    }
    
    .address p, .email, .phone {
        font-size: 4vw;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 0.5vh;
    }
    
    .contact-separator {
        display: none;
    }
}

/* Çok Küçük Ekranlar */
@media (max-width: 320px) {
    .logo-image {
        max-width: 50vw;
    }
    
    .lawyer-name {
        font-size: 5vw;
    }
    
    .address p, .email, .phone {
        font-size: 3vw;
    }
}

/* Yazdırma Stilleri */
@media print {
    html, body {
        height: auto;
        overflow: visible;
    }
    
    body {
        background-color: white;
    }
    
    .website-container {
        height: auto;
        overflow: visible;
    }
    
    .bottom-bar {
        position: static;
        margin-top: 2vh;
    }
}