/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Roboto:wght@400;500;700&display=swap');

/* ===== YENİ RENK PALETİ ===== */
:root {
  --lacivert: #1a237e;
  --lacivert-acik: #303f9f;
  --bej: #f5f5dc;
  --bej-koyu: #e6e6d2;
  --beyaz: #ffffff;
  --siyah: #212121;
  --vurgu: #ffab00;
  --golge: 0 5px 15px rgba(0,0,0,0.1);
}

/* ===== TEMEL AYARLAR ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  color: var(--siyah);
  background-color: var(--bej);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--lacivert);
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== NAVBAR ===== */
nav {
  background-color: var(--beyaz);
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  box-shadow: var(--golge);
  z-index: 1000;
  border-bottom: 3px solid var(--lacivert);
}

.logo img {
  width: 320px; /* Burada istediğiniz boyutu verebilirsiniz */
  height: auto;
}


.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: var(--lacivert);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
  transition: all 0.3s;
}

.nav-link:hover {
  color: var(--lacivert-acik);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--lacivert);
  bottom: 0;
  left: 0;
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

/* ===== HERO BÖLÜMÜ ===== */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(26, 35, 126, 0.8), rgba(26, 35, 126, 0.8)), 
              url('hero.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--bej);
  padding: 0 10%;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  color: var(--bej-koyu);
  font-weight: 700; 
}

.hero .akdeniz {
  font-size: 3.5rem; /* Daha büyük boyut */
  color: #f5f5dc; /* Bej rengi */
}
.hero .hukuk {
  font-size: 3.5rem; /* Daha küçük boyut */
  color: #f5f5dc; /* Lacivert rengi */
  font-weight: 500;
}

.hero h1 span {
  color: #1A237E;
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin-bottom: 2rem;
}

/* ===== BUTONLAR ===== */
.cta-button {
  background-color: var(--lacivert);
  color: var(--bej);
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: var(--golge);
}

.cta-button:hover {
  background-color: var(--lacivert-acik);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(26, 35, 126, 0.2);
}

/* ===== CHAT BUTONU ===== */
.chat-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--lacivert);
  color: var(--bej);
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  z-index: 999;
  box-shadow: var(--golge);
  transition: all 0.3s;
}

.chat-btn:hover {
  background: var(--bej);
  color: var(--lacivert);
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(26, 35, 126, 0.7); } /* Lacivert başlama rengi */
  70% { box-shadow: 0 0 0 15px rgba(26, 35, 126, 0); } /* Lacivert rengi kayboluyor */
  100% { box-shadow: 0 0 0 0 rgba(26, 35, 126, 0); } /* Lacivert rengi kayboluyor */
}

/* ===== HAKKIMIZDA ===== */
#hakkimizda {
  padding: 100px 10%;
  background-color: var(--bej);
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  position: relative;
}

.about-text h2::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 3px;
  background: var(--lacivert);
  bottom: -10px;
  left: 0;
}

.about-text p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stat-icon {
  color: var(--lacivert);
  font-size: 1.8rem;
}

.about-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--golge);
}

.about-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s;
}

.about-image:hover img {
  transform: scale(1.03);
}

/* ===== UZMANLIK ALANLARI ===== */
#uzmanlik-alanlari {
  padding: 80px 10%; /* Daha küçük padding */
  background-color: var(--lacivert-acik);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px; /* Daha küçük aralık */
  margin-top: 30px; /* Üstten daha az boşluk */
}

.expertise-card {
  background: var(--beyaz);
  border: 1px solid var(--bej);
  border-radius: 15px; /* Daha yuvarlak köşeler */
  padding: 15px; /* İçerik alanını küçültüyoruz */
  transition: all 0.3s ease;
  box-shadow: var(--golge);
}

.expertise-card:hover {
  transform: translateY(-4px); /* Hover efektini hafifletiyoruz */
  box-shadow: 0 8px 16px rgba(26, 35, 126, 0.1); /* Gölgeyi hafifletiyoruz */
  border-color: var(--lacivert-acik);
}

.expertise-icon {
  font-size: 1.6rem; /* İkon boyutunu küçültüyoruz */
  color: var(--lacivert);
  margin-bottom: 12px; /* Alt boşluğu küçültüyoruz */
}

.expertise-card h3 {
  font-size: 1rem; /* Başlık boyutunu küçültüyoruz */
  margin-bottom: 10px; /* Alt boşluğu küçültüyoruz */
}

.expertise-card p {
  font-size: 0.85rem; /* Yazı boyutunu küçültüyoruz */
  line-height: 1.4; /* Satır yüksekliğini küçültüyoruz */
  color: #555;
}


/* ===== AVUKATLAR ===== */
#avukatlarimiz {
  padding: 100px 0;
  background: var(--bej);
  
}
#avukatlarimiz-title {
  text-align: center; /* Başlığı ortalar */
  position: relative; /* Çizgiyi altına konumlandırabilmek için */
  font-size: 2.5rem; /* Başlık font boyutunu ayarlıyoruz */
  margin-bottom: 20px; /* Çizgi ile başlık arasında biraz boşluk bırakıyoruz */
}

#avukatlarimiz-title::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background: var(--lacivert); /* Çizgi rengini buradan ayarlıyoruz */
  bottom: 0;
  left: 50%;
  transform: translateX(-50%); /* Çizgiyi tam ortalıyoruz */
}


.avukat-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--golge);
  border: 2px solid var(--lacivert);
}

.avukat-card {
  display: none;
  background: var(--beyaz);
}

.avukat-card.active {
  display: flex;
}

.avukat-foto {
  flex: 1;
  overflow: hidden;
}

.avukat-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.avukat-foto:hover img {
  transform: scale(1.05);
}

.avukat-bilgi {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.avukat-bilgi h3 {
  color: var(--lacivert);
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.unvan {
  color: var(--siyah);
  font-weight: bold;
  margin-bottom: 20px;
}

.aciklama {
  line-height: 1.6;
  margin-bottom: 25px;
}

.social a {
  color: var(--lacivert);
  font-size: 1.2rem;
  margin-right: 15px;
  transition: all 0.3s;
}

.social a:hover {
  color: var(--vurgu);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(26, 35, 126, 0.7);
  color: var(--bej);
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.slider-btn:hover {
  background: var(--lacivert);
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(145deg, var(--lacivert), var(--lacivert-acik));
  color: var(--bej);
  padding: 60px 0 30px;
}

.footer-contact ul {
  list-style-type: none; /* Varsayılan liste işaretlerini kaldırıyoruz */
  padding-left: 0; /* Sol boşluğu kaldırıyoruz */
}

.footer-contact li {
  position: relative; /* Noktayı eklemek için gerekli */
  padding-left: 25px; /* Bey		az nokta için yer açıyoruz */
  color: var(--bej); /* Madde metnini beyaz yapıyoruz */
  margin-bottom: 10px; /* Maddeler arasına boşluk ekliyoruz */
}

.footer-contact li::before {
  content: ''; /* Nokta içeriği */
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%); /* Noktayı düzgün ortalıyoruz */
  width: 8px; /* Noktanın büyüklüğü */
  height: 8px; /* Noktanın büyüklüğü */
  background-color: var(--bej); /* Beyaz renk */
  border-radius: 50%; /* Noktayı yuvarlak yapıyoruz */
}


.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-section h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--vurgu);
  

}

.footer-address {
  text-align: right; /* Adresi sağa yasla */
  color: var(--bej); /* Rengi ayarlayabilirsin */
}

.footer-address h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.footer-address p {
  margin-bottom: 10px;
}

/* Footer Bottom - Çizgi eklemek için */
.footer-bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(245, 245, 220, 0.3); /* Çizgi */
}


.footer-links a {
  display: block;
  color: var(--bej);
  margin-bottom: 10px;
  transition: all 0.3s;
  padding: 8px 0;
}

.footer-links a:hover {
  color: var(--vurgu);
  padding-left: 5px;
}

.footer-contact p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}



.footer-social .social-icons {
  display: flex;
  gap: 15px;
}

.footer-social .social-icons a {
  color: var(--bej);
  font-size: 1.5rem;
  transition: all 0.3s;
}

.footer-social .social-icons a:hover {
  color: var(--vurgu);
  transform: translateY(-3px);
}



.footer-bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(245, 245, 220, 0.3);
}



/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--beyaz);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 1rem;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .about-content {
    flex-direction: column;
  }

  .about-image {
    margin-top: 30px;
  }

  .avukat-card {
    flex-direction: column;
  }

  .avukat-foto {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .footer-section {
    min-width: 100%;
  }
}
#uzmanlik-alanlari h2::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background: var(	--bej); /* Altın sarısı renk */
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}	
/* Tüm body'yi modern font ile değiştir */
body {
  font-family: 'Poppins', sans-serif;
}

/* Footer kısmındaki tüm metinler için fontu değiştir */
footer {
  font-family: 'Poppins', sans-serif;
}

/* Footer başlıkları */
footer h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600; /* Daha kalın yapmak için */
}

/* Footer metinleri */
.footer-section p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400; /* Normal ağırlık */
}

.footer-section li {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}
footer h3 {
  font-family: 'Roboto Slab', serif !important; /* Keskin ve güçlü font */
  color: #f5f5dc !important; /* Bej rengi */
  font-weight: 700 !important; /* Kalın yaparak vurguyu artırıyoruz */
}
.footer-links a {
  display: inline-block;
  padding: 10px 20px;
  margin-bottom: 10px;
  background-color: var(--beyaz);
  border: 2px solid var(--lacivert); /* Butonların etrafında minik kutucuk */
  border-radius: 5px; /* Köşeleri yuvarlatmak için */
  color: var(--lacivert); /* Yazı rengi lacivert */
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none; /* Alt çizgiyi kaldırıyoruz */
  transition: all 0.3s ease; /* Hover efekti */
}

/* Hover efekti ile butonun rengini değiştiriyoruz */
.footer-links a:hover {
  background-color: var(--lacivert); /* Butonun arka plan rengi lacivert olur */
  color: var(--bej); /* Yazı rengi bej olur */
  border-color: var(--lacivert); /* Sınır rengi aynı kalır */
}

/* ===== MOBİL MENÜ ===== */
/* Hamburger Butonu */
.mobile-menu-btn {
    display: none; /* Varsayılan olarak gizli */
    position: fixed;
    top: 25px;
    right: 20px;
    z-index: 1001;
    cursor: pointer;
}

.hamburger {
    width: 30px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--lacivert);
    transition: all 0.3s ease;
}

/* Mobil Menü Açıkken Hamburger Stili */
.mobile-menu-btn.active .hamburger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.mobile-menu-btn.active .hamburger span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-btn.active .hamburger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobil Menü Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobil Menü Sidebar */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background: var(--beyaz);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    padding: 80px 20px 20px;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu ul li {
    margin-bottom: 15px;
}

.mobile-menu ul li a {
    display: flex;
    align-items: center;
    color: var(--lacivert);
    font-size: 1.1rem;
    padding: 12px 15px;
    border-radius: 5px;
    transition: all 0.3s;
}
.mobile-menu ul li a[href="#iletisim"] {
    display: none;
}

.mobile-menu ul li a i {
    margin-right: 10px;
    font-size: 1.2rem;
    color: var(--vurgu);
}

.mobile-menu ul li a:hover {
    background: var(--bej-koyu);
    transform: translateX(5px);
}

/* Telefon numarasına yönlendiren linki gizle */
.mobile-btn {
    display: none; /* Varsayılan olarak gizli */
}

/* Mobilde butonun görünmesini sağlıyoruz */
@media (max-width: 768px) {
    .mobile-btn {
        display: inline-block; /* Sadece mobilde telefon numarasına yönlendiren linki görünür yap */
        text-decoration: none;
    }
}

/* Chat butonunun stilini ayarlıyoruz */
.chat-btn {
    display: inline-block;
    text-align: center;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    text-decoration: none;
}

.chat-btn:hover {
    background-color: #0056b3;
}

/* Pulse animasyonu */
.pulse {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

