body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background: url('assets/images/law-office.webp') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    color: white;
    text-align: center;
    overflow-x: hidden;
}
header {
    width: 100%;
    display: flex;
    justify-content: space-between; /* LOGO sol, menü sağ */
    align-items: center;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    width: 90px;       /* 🔹 YATAY genişlik: 160px, 180px, 200px gibi artırabilirsin */
    height: 40px;       /* 🔸 Oranı korur */
    display: block;                                                                 
}

nav {
    display: flex;
    justify-content: center;
    width: 100%;
}
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}
nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #F5F5DC;
    text-decoration: none;
    font-weight: bold;
}

#hero {
    text-align: center;
    padding: 50px;
    background-color: #ddd;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 6px 10px;
    font-size: 12px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #F5F5DC;
    text-align: center;
    z-index: 999;
}

.whatsapp {
    position: fixed;
    right: 25px; /* Sağ kenardan 20px boşluk bırak */
    bottom: 12px; /* Sayfanın alt kısmında 20px boşluk bırak */
    z-index: 1000; /* Üstte kalmasını sağla */
}

.whatsapp a {
    text-decoration: none;
    color: #25D366;
    font-size: 13px;
    background: transparent;           /* şeffaf arka plan */
    padding: 8px 12px;
    border-radius: 20px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); /* 🔹 BURAYA EKLE */
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}


/* HERO ALANI */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 120px;
    text-align: center;
    background: url('../images/law-office.webp') no-repeat center center fixed;
    background-size: cover;
    overflow: hidden;
}


/* Yazılar yukarı gelsin */
.hero h1, .hero p, .hero img {
    position: relative;
    z-index: 1;
}

/* Ana başlık */
.hero h1 {
    font-size: 70px;
    font-family: 'Playfair Display', serif;
    letter-spacing: 3px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    margin: 10px 0 5px 0;
    animation: fadeDown 1.5s ease-out;
}

/* Ana başlık renk ayrımı */
.hero .highlight {
    color: #F5F5DC;
}

.hero .light {
    color: white;
}

/* Alt başlık */
.hero p {
    font-size: 28px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    letter-spacing: 2px;
    color: #F5F5DC;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
    margin-top: 0;
    animation: fadeUp 2s ease-out;
}

/* Logo */
.hero img {
    /* height: 120px; */  /* Bunu sil ya da yoruma al */
    max-height: 268px;
    width: auto;
    height: auto;
    margin-bottom: 10px;
    animation: fadeDown 1s ease-out;
}

/* Animasyonlar */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ekibimiz {
    padding: 120px 30px 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}
.ekibimiz h1 {
    grid-column: 1 / -1;
    font-size: 2.8em;
    text-align: center;
    margin-bottom: 40px;
    color: #f5f5dc;
}
.ekip-kart {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease;
    text-align: center;
    color: #f5f5dc;
}
.ekip-kart:hover {
    transform: translateY(-6px);
}
.ekip-kart img {
    width: 100%;
    max-width: 200px;
    border-radius: 50%;
    margin-bottom: 15px;
}
.ekip-kart h2 {
    font-size: 1.5em;
    color: #e4c590;
    margin-bottom: 10px;
}
.ekip-kart p {
    font-size: 0.95em;
    line-height: 1.5;
}

.sosyal a {
    color: #F5F5DC;
    margin: 0 10px;
    font-size: 1.3em;
    text-decoration: none;
}
.about, .contact {
    background: rgba(0, 0, 0, 0.6);
    color: #f5f5dc;
    backdrop-filter: blur(3px);
    padding: 80px 50px;
    max-width: 900px;
    margin: 100px auto;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
.about h2, .contact h2 {
    color: #f5f5dc; /* bej – zarif ve görünür */
    font-size: 42px;
    font-family: 'Playfair Display', serif;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5); /* parlaklık için gölge */
}
.about h2::after,.contact h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #8B0000; /* bordo veya altın tonları olabilir */
    margin: 10px auto 0;
    border-radius: 2px;
}
.about p, .contact p {
    font-size: 17px;
    line-height: 1.7;
    color: #f0f0f0;
    margin-bottom: 20px;
}
html {
    scroll-behavior: smooth;
}
.degerler {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
    margin-bottom: 60px;
}

.deger-kart {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 20px;
    text-align: left;
    color: #f5f5dc;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    backdrop-filter: blur(3px);
}

.deger-kart h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #e4c590; /* altın/bej tonları */
}

.deger-kart p,
.deger-kart li {
    font-size: 16px;
    line-height: 1.6;
}

.deger-kart ul {
    padding-left: 20px;
}
@media (max-width: 768px) {

    header {
        padding: 8px 12px;
    }

    nav {
        width: auto;
    }

    nav ul {
        flex-wrap: wrap;     
        justify-content: center;
        gap: 8px;
    }

    nav ul li {
        margin: 0;
    }

    nav ul li a {
        font-size: 14px;
        white-space: nowrap;
    }
}
@media (max-width: 768px) {

    .hero {
        height: auto;
        min-height: 100vh;
        padding-top: 140px;
        padding-bottom: 40px;
    }

    .hero h1 {
        font-size: 34px;
        letter-spacing: 1px;
    }

    .hero p {
        font-size: 18px;
        letter-spacing: 1px;
    }

    .hero img {
        max-height: 160px;
    }
}
@media (max-width: 768px) {

    .ekibimiz {
        padding: 140px 16px 40px;
        grid-template-columns: 1fr;
    }

    .ekibimiz h1 {
        font-size: 26px;
    }
}
@media (max-width: 768px) {

    .about, .contact {
        padding: 50px 18px;
        margin: 120px 12px;
    }

    .about h2, .contact h2 {
        font-size: 26px;
    }

    .about p, .contact p {
        font-size: 15px;
    }
}
@media (max-width: 768px) {
    footer {
        position: static;
    }
}



