/* Gürler Collection - Final Konsept CSS */
:root {
  --primary-color: #ffffff;
  --accent-color: #d4af37;
  --text-color: #e2e8f0;
  --text-light: #cbd5e1;
}

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

/* Kaydırma tamamen engellendi */
html, body {
  width: 100%;
  height: 100%;
  overflow: hidden; 
  font-family: "Geist", sans-serif;
}

body {
  background: 
    linear-gradient(rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.78)),
    url("../assets/images/bg-perde.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-wrapper {
  width: 100%;
  height: 100%;
  max-width: 900px;
  padding: 4vh 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  text-align: center;
}

/* Logo Ayarları */
.header {
  width: 100%;
  display: flex;
  justify-content: center;
}

.logo {
  max-height: 120px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
}

.main-content {
  width: 100%;
}

.main-content h1 {
  color: var(--primary-color);
  font-size: clamp(1.6rem, 4.5vh, 2.6rem);
  margin-bottom: 2vh;
  line-height: 1.2;
  font-weight: 600;
}

.intro-text {
  font-size: clamp(0.9rem, 2vh, 1.1rem);
  line-height: 1.6;
  color: var(--text-color);
  max-width: 650px;
  margin: 0 auto 3vh auto;
}

.services-list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  list-style: none;
  margin-bottom: 3vh;
}

.services-list ul li {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--primary-color);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: clamp(0.75rem, 1.8vh, 0.9rem);
  backdrop-filter: blur(5px);
}

.status-msg strong {
  display: block;
  font-size: clamp(1rem, 2.2vh, 1.3rem);
  color: var(--accent-color);
  font-weight: 500;
}

/* Footer Hizalama (Merkezi) */
.footer {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 3vh;
  display: flex;
  flex-direction: column;
  align-items: center; /* Yatayda merkezler */
  justify-content: center;
}

.contact-row {
  display: flex;
  justify-content: center; /* Masaüstünde ortalar */
  align-items: center;
  gap: 40px;
  margin-bottom: 2vh;
  width: 100%;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.contact-item a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(0.9rem, 1.8vh, 1rem);
}

.address-item {
  display: flex;
  flex-direction: column;
  align-items: center; /* İkon ve metni dikeyde ortalar */
  text-align: center; /* Metni kendi içinde ortalar */
  color: var(--text-light);
  font-size: clamp(0.8rem, 1.6vh, 0.95rem);
  line-height: 1.6;
  max-width: 500px;
}

.icon {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

/* MOBİL ÖZEL AYARLAR */
@media (max-width: 600px) {
  .content-wrapper {
    padding: 3vh 15px;
    justify-content: space-between;
  }

  .logo {
    max-height: 85px;
  }

  .contact-row {
    flex-direction: column; /* Mobilde alt alta ve ortalı */
    gap: 12px;
    align-items: center;
  }

  .address-item {
    width: 100%;
  }
}