
/* --- MEVCUT CSS (Değişmedi) --- */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

body{
background-color: #fff; /* Şampanya rengi arka plan */
    color: #4A4238; /* Yumuşak kahve tonlu yazı */
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #E8E2D6;
    display: flex;
    justify-content: space-between; /* Başlığı sola, hamburgeri sağa yaslar */
    align-items: center;           /* Dikeyde tam merkeze hizalar */
    padding: 10px 20px;            /* Mobilde daha şık durması için padding düşürüldü */
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
}

header h1 {
    color: #B08D57;
    font-weight: 600;
    font-size: 1.2rem;             /* Mobilde devasa görünmemesi için küçültüldü */
    letter-spacing: 0.5px;
    margin: 0;                     /* Gereksiz boşlukları temizler */
    flex: 1;                       /* Başlığın alanını belirler */
}

nav{
  display:flex;
  gap:15px;
}

nav a{
  text-decoration:none;
  color:#111;
  font-weight:500;
  font-size:16px;
}

.hamburger {
    display: none;                 /* Masaüstünde gizli */
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1100;                 /* Menünün de üstünde kalmalı */
    padding: 10px;                 /* Tıklama alanını genişletir (UX) */
}

.hamburger div {
    width: 25px;
    height: 2px;                   /* Daha zarif bir görünüm için 2px */
    background: #4A4238;           /* Yazı renginle uyumlu */
    transition: 0.3s;
}

.hero {
  height: 100vh;
  width: 100vw;
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
    url('img/arkaplan.png') center/cover no-repeat;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  box-sizing: border-box;
}

.hero h2{
  font-size:42px;
  margin-bottom:20px;
  line-height:1.2;
}

.btn{
  padding:12px 25px;
  background:#C9A55C;
  color:#fff;
  border:none;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  transition: 0.3s;  
  text-decoration:none;
  margin:10px;
  display:inline-block;
  border-radius:30px;
  font-size:16px;
  cursor:pointer;
}
.btn:hover {
  letter-spacing: 2px;
  background-color: #b28e44;
  box-shadow: 0 8px 15px rgba(201, 165, 92, 0.3);
}
section{
  padding:80px 10%;
}

.services-desc {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: #444;
  font-weight: 400;
  line-height: 1.5;
}

.services{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.card{
  padding:30px;
  border-radius:15px;
  background:#f9f9f9;
  text-align:center;
  transition:0.3s;
  cursor: default;
}

.card:hover{
transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(201, 165, 92, 0.15); /* Altın rengi hafif gölge */
}
.card h3 {
    color: #B08D57;
}
.services h3 {
  margin-bottom: 10px;
  color: #C9A55C;
  font-weight: 600;
  font-size: 22px;
}

.services p {
  font-size: 16px;
  color: #555;
  line-height: 1.4;
}

#gallery {
  text-align: left;
}

.gallery{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:20px;
}

.gallery img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  transition: 0.4s;
  cursor: pointer;
}

.gallery img:hover {
  transform: scale(1.08);
  filter: brightness(0.9);
}

.form{
  background:#f9f9f9;
  padding:25px;
  border-radius:15px;
  max-width:500px;
  margin:auto;
}

.form input, .form select{
  width:100%;
  padding:12px;
  margin:10px 0;
  border-radius:10px;
  border:1px solid #ddd;
  font-size:16px;
}

#contact {
  max-width: 900px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

#contact h2 {
  text-align: center;
  font-size: 36px;
  color: #C9A55C;
  margin-bottom: 30px;
  font-weight: 600;
}

.contact-card {
  background: #f9f9f9;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 20px;
}

.contact-info p {
  font-size: 18px;
  margin-bottom: 12px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info p strong {
  min-width: 140px;
  color: #C9A55C;
}

.contact-info p a {
  color: #111;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-info p a:hover {
  color: #C9A55C;
}

.contact-links {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-links a {
  background: #C9A55C;
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(201,165,92,0.4);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-links a:hover {
  background: #b28e44;
  box-shadow: 0 6px 15px rgba(178,142,68,0.6);
}

.icon {
  font-size: 22px;
  color: #C9A55C;
}

footer{
  text-align:center;
  padding:30px;
  background:#111;
  color:#fff;
}

.whatsapp{
  position:fixed;
  bottom:20px;
  right:20px;
  background:#25D366;
  color:#fff;
  padding:15px;
  border-radius:50%;
  font-size:20px;
  text-decoration:none;
}

/* RESPONSIVE (Değişmedi) */
@media(max-width:992px){
  .hero h2{font-size:32px;}
  nav a{font-size:15px;}
  .services{grid-template-columns:repeat(2,1fr);}
  .gallery{grid-template-columns:repeat(auto-fit,minmax(180px,1fr));}
}

@media(max-width:768px){
  header{
    padding: 10px 15px; /* Dar telefonlar için kenar boşluklarını azalttık */
    justify-content: space-between; /* Başlık sola, ikon sağa */
    flex-wrap: nowrap; /* Kesinlikle alt satıra taşma yapmasın */
  }

  .hero h2{font-size:28px;}
  section{padding:60px 5%;}

nav {
        position: fixed;           /* Absolute yerine Fixed daha güvenlidir */
        top: 0;
        right: -100%;              /* Ekranın dışından başlar */
        background: #fff;
        flex-direction: column;
        width: 250px;              /* Tam genişlik yerine şık bir yan menü */
        height: 100vh;             /* Boydan boya ekranı kaplar */
        display: flex;             /* Gizleme/gösterme işlemini transition ile yapalım */
        transition: 0.4s ease-in-out;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        padding-top: 80px;         /* Linklerin header altında kalmaması için */
        z-index: 1050;             /* Header'ın hemen üstü */
    }
nav a {
        padding: 15px 25px;
        border-bottom: 1px solid #f5f5f5;
        font-size: 18px;
        display: block;
    }

nav.active {
        right: 0;                  /* Menü açıldığında içeri girer */
    }

  .hamburger{
    display:flex;
  }
}

@media(max-width:480px){
  .hero h2{font-size:22px;}
  nav a{font-size:14px;}
  .services{grid-template-columns:1fr;}
  .gallery{grid-template-columns:1fr;}
}

/* --- YENİ ÇALIŞMA SAATLERİ DÜZENLEMESİ (Önceki Adımdaki) --- */
.working-hours-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 18px;
  color: #333;
  margin-bottom: 12px;
}

.working-hours-row strong {
  min-width: 140px;
  color: #C9A55C;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 500;
}

.hours-list div {
  line-height: 1.4;
}

/* --- YENİ EKLENEN CSS: LIGHTBOX PENCERESİ STİLLERİ --- */
.gallery-lightbox {
  display: none; /* Varsayılan olarak gizli */
  position: fixed;
  z-index: 2000; /* Header'dan da üstte olması için */
  padding-top: 80px; /* Üstten biraz boşluk */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; /* Resim sığmazsa kaydırılabilir */
  background-color: rgba(0,0,0,0.9); /* Siyah, %90 opaklıkta arka plan */
  cursor: pointer; /* Pencereye tıklanabileceğini belirt */
}
html{
  scroll-behavior:smooth;
}
.gallery-lightbox-content {
  margin: auto;
  display: block;
  max-width: 80%; /* Resmin genişliği ekranın %80'ini geçmesin */
  max-height: 80vh; /* Resmin yüksekliği ekranın %80'ini geçmesin */
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0,0,0,0.5);
  cursor: default; /* Resmin kendisine tıklayınca kapanmasın (isteğe bağlı) */
  animation-name: zoom; /* Giriş animasyonu */
  animation-duration: 0.3s;
}

/* Giriş Animasyonu */
@keyframes zoom {
  from {transform:scale(0.8); opacity: 0.3;} 
  to {transform:scale(1); opacity: 1;}
}

/* Kapatma Çarpısı */
.close-lightbox {
  position: absolute;
  top: 30px;
  right: 50px;
  color: #fff;
  font-size: 60px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
  z-index: 2001; /* Resimden de üstte */
}

.close-lightbox:hover,
.close-lightbox:focus {
  color: #C9A55C; /* Üzerine gelince senin temanın rengini alsın */
  text-decoration: none;
}

/* Mobil için Resim Boyutlandırması */
@media only screen and (max-width: 768px){
  .gallery-lightbox-content {
    max-width: 95%; /* Telefondan bakınca resim daha çok alan kaplasın */
  }
  .close-lightbox {
    font-size: 40px;
    right: 25px;
    top: 15px;
  }
  @keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Kurumsal Bölümü Genel Ayarlar */
.about-section {
    background-color: #ffffff;
    text-align: center; /* Başlık ve metni ortalar */
    line-height: 1.8;   /* Satır aralığını açarak okunabilirliği artırır */
}

.about-content {
    max-width: 800px;   /* Metnin çok yayılmasını engeller, odak sağlar */
    margin: 0 auto;
    color: #555;
    font-size: 17px;
}

/* Giriş cümlesi için daha belirgin stil */
.lead-text {
    font-size: 20px;
    color: #4A4238;
    margin-bottom: 25px;
}

/* Vurgu Kutusu (Premium hissi veren hafif arka plan) */
.highlight-box {
    background: #fdfaf4;
    border-left: 4px solid #C9A55C;
    padding: 20px;
    margin: 30px 0;
    font-style: italic;
    border-radius: 0 10px 10px 0;
}

/* Başlık Altındaki Çizgi */
.section-title {
    position: relative;
    margin-bottom: 50px;
    color: #B08D57;
    font-size: 32px;
}

.section-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #C9A55C;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

/* Mobil Düzenleme */
@media (max-width: 768px) {
    .about-content {
        font-size: 16px;
        padding: 0 10px;
    }
    .lead-text {
        font-size: 18px;
    }
}
#myBtn {
  display: none; /* Başlangıçta gizli kalsın, JavaScript açacak */
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  background-color: rgba(50, 50, 50, 0.85);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  font-family: Arial, sans-serif;
  font-size: 24px;
}

#myBtn:hover {
  background-color: #000;
  transform: translateY(-5px);
}
}
