/* --- Genel Ayarlar ve Değişkenler --- */
:root {
    /* TABELADAN ALINAN YENİ RENKLER */
    --primary-color: #552B7B; /* Tabeladaki asil mor rengi */
    --primary-hover: #3e1c5c; /* Morun biraz daha koyusu (mouse üzerine gelince) */
    --silver-accent: #bdc3c7; /* Yazılardaki gümüş/ayna etkisi için */
    --dark-color: #333;
    --light-color: #f4f4f4;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Header (Üst Menü) --- */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); /* Hafif gölge */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color); /* Logo mor renk */
    letter-spacing: 1px;
}

.logo span {
    font-weight: 300;
    color: #7f8c8d; /* 'Studio' yazısı gri/gümüş */
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    font-weight: 500;
    transition: color 0.3s;
    color: var(--dark-color);
}

nav ul li a:hover {
    color: var(--primary-color);
}

.btn-nav {
    background-color: var(--primary-color);
    color: var(--white) !important; /* Yazıyı zorla beyaz yap */
    padding: 10px 25px;
    border-radius: 30px;
    transition: 0.3s;
}

.btn-nav:hover {
    background-color: var(--primary-hover);
}

/* --- Hero Section (Ana Görsel) --- */
.hero {
    height: 100vh;
    
    /* İŞTE BURAYI DEĞİŞTİRİYORUZ */
    /* İlk kısım (linear-gradient) resmin üzerine mor bir perde çeker ki yazılar okunsun. */
    /* İkinci kısım (url) senin fotoğrafındır. */
    background: linear-gradient(rgba(85, 43, 123, 0.7), rgba(85, 43, 123, 0.5)), url('foto3.jpg');
    
    background-size: cover;      /* Resmi ekrana yayar */
    background-position: center; /* Resmi ortalar */
    
    /* ...diğer kodlar aynı kalsın (display: flex vb)... */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    background-color: var(--white);
    color: var(--primary-color); /* Buton içi mor yazı */
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background-color: var(--silver-accent);
    color: var(--white);
}

/* --- Hizmetler --- */
.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--primary-color);
    position: relative;
}

/* Başlığın altına şık bir çizgi ekleyelim */
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--silver-accent);
    margin: 10px auto 0;
}

.services {
    padding: 100px 0;
    background-color: var(--light-color);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s;
    border-top: 5px solid var(--primary-color); /* Kartların tepesinde mor çizgi */
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* --- Hakkımızda --- */
.about {
    padding: 100px 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
    font-size: 1.1rem;
    color: #555;
}

.about-image {
    flex: 1;
    height: 350px;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    /* Fotoğraf yerine mor border koyalım */
    border: 2px dashed var(--primary-color);
}

.img-placeholder {
    color: var(--primary-color);
    font-weight: 600;
}

/* --- Footer --- */
footer {
    background-color: var(--primary-color); /* Footer artık Mor */
    color: var(--white);
    padding: 60px 0 20px;
    text-align: center;
}

.footer-content h2 {
    margin-bottom: 20px;
    color: var(--white);
}

.phone-number {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 15px 0;
    color: var(--silver-accent); /* Telefon numarası gümüş rengi */
}

.copyright {
    margin-top: 50px;
    font-size: 0.9rem;
    opacity: 0.8;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
}

/* Mobil Uyumluluk */
@media (max-width: 968px) {
    .hero h1 { font-size: 2.5rem; }
    .about-content { flex-direction: column; }
    nav ul { display: none; } 
}/* --- SADE VE KÜÇÜK GALERİ --- */

/* Bu kutu galerinin dış çerçevesidir */
.slideshow-container {
    /* 1. GENİŞLİK AYARI */
    width: 600px;   /* Kutuyu genişletmek için bu sayıyı arttır (örn: 400px yap) */
                    /* Kutuyu daraltmak için bu sayıyı azalt (örn: 250px yap) */
    
    /* 2. YÜKSEKLİK AYARI */
    height: 350px;  /* Kutunun boyunu uzatmak için arttır (örn: 600px yap) */
                    /* Kutuyu kısaltmak için azalt (örn: 400px yap) */
    
    /* ...diğer kodlar aynı kalsın... */
    position: relative;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    background-color: #000;
  }
  
  
  /* Resimlerin Ayarı */
  .mySlides {
    display: none; /* Başlangıçta hepsi gizli */
    height: 100%;
  }
  
  .mySlides img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Bu kod resmi kırparak kutuyu doldurur */
  }
  
  /* İleri Geri Okları */
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    user-select: none;
    background-color: rgba(0,0,0,0.3); /* Arkası hafif siyah */
    border-radius: 0 3px 3px 0;
  }
  
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  .prev:hover, .next:hover {
    background-color: rgba(85, 43, 123, 0.9); /* Üzerine gelince Mor olsun */
  }
  
  /* Geçiş Efekti (Fade) */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  
  @keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
  }
  /* --- Sosyal Medya Linki --- */
.social-media {
    margin-top: 10px; /* Üstteki email yazısından biraz ayrılsın */
    font-size: 1.1rem;
}

.social-media a {
    color: var(--silver-accent); /* Tabeladaki gümüş rengi */
    font-weight: 700; /* Kalın yazı */
    text-decoration: none; /* Altındaki çizgiyi kaldır */
    transition: 0.3s;
    
}

.social-media a:hover {
    color: var(--white); /* Üzerine gelince beyaz olsun */
    border-bottom: 1px solid var(--white); /* Çizgi düz olsun */
}
  