/* Base */
:root {
  --bg: #fbf7f3;
  --ink: #2f1e1a;
  --muted: #6b5e57;
  --accent: #b08a6e;
  --accent-2: #c9b07d;
  --card: #fffdfb;
  --shadow: 0 18px 40px rgba(47, 30, 26, 0.18);
  --radius: 22px;
  --maxw: 1160px;
}

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

html,
body {
  height: 100%;
}

body {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(1200px 600px at 20% -10%, #efe1d6, transparent),
    linear-gradient(180deg, #fbf7f3 0%, #f7efe8 60%, #fbf7f3 100%);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 140px;
}

/* Son kartların footer altında kalmaması için ek boşluk */
body {
  padding-bottom: 220px;
}

img,
video {
  max-width: 100%;
  display: block;
}

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

/* Top bar */
.icon {
  background: #2f1e1a;
  color: #f3e9e1;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
}

.icon h1 {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}

.icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icons img {
  width: 24px;
  height: 24px;
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
}

.icons img:hover {
  transform: translateY(-2px) scale(1.05);
  opacity: 1;
}

/* Hero */
header {
  position: relative;
}

.head {
  position: relative;
  min-height: 80vh;
  display: grid;
  place-items: center;
  padding: 120px 24px 140px;
  overflow: hidden;
}

#headvideo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.9);
  z-index: 0;
}

.head::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(47, 30, 26, 0.7) 0%,
    rgba(47, 30, 26, 0.45) 45%,
    rgba(251, 247, 243, 0.95) 100%
  );
  z-index: 1;
}

.anamenu {
  position: absolute;
  top: 22px;
  left: 24px;
  right: 24px;
  z-index: 3;
  display: flex;
  justify-content: center;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 26px;
  padding: 10px 20px;
  background: rgba(47, 30, 26, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

header nav ul li {
  padding: 4px 6px;
}

header nav ul li a {
  color: #f7f2ee;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

header nav ul li:hover {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.eko {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.animate-charcter {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(32px, 6vw, 64px);
  line-height: 1.1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f7f2ee;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  animation: none;
  background: none;
  -webkit-text-fill-color: inherit;
}

.musaittir,
.musaıttır {
  position: relative;
  z-index: 2;
  margin-top: -110px;
  margin-bottom: 50px;
  text-align: center;
  color: #f3e9e1;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 12px;
}

/* Promo banner */
.kampanya {
  width: min(100% - 32px, 920px);
  margin: -70px auto 50px;
  padding: 22px 28px;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}

.kampanyatext {
  color: var(--accent);
  letter-spacing: 0.28em;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 600;
}

.kampanyap {
  background: #2f1e1a;
  color: #f7f2ee;
  border-radius: 16px;
  padding: 12px 16px;
  font-size: 14px;
}

/* Services */
.hizmet,
.hızmet {
  padding: 20px 0 10px;
}

.circle-container {
  width: min(100% - 32px, var(--maxw));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 22px;
}

.circle {
  position: relative;
  height: 320px;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(176, 138, 110, 0.25);
  animation: none;
  opacity: 1;
  margin: 0;
}

.circle::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.45) 100%
  );
  z-index: 1;
}

.circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.circle p {
  position: absolute;
  inset: 18px;
  z-index: 2;
  color: #f7f2ee !important;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.55) !important;
  line-height: 1.1;
}

/* Section heading */
.hizmetler {
  padding: 26px 0 0;
  display: flex;
  justify-content: center;
}

.animate-charcter2 {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: none;
  background: none;
  -webkit-text-fill-color: inherit;
}

.hizmetler .container {
  width: min(100% - 32px, var(--maxw));
}

.animate-charcter2 a {
  color: inherit;
}

/* Working hours */
.tablo-saatler {
  width: min(100% - 32px, var(--maxw));
  margin: 50px auto;
  padding: 26px;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.tablo-saatler h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  text-align: left;
  background: none;
}

.tablo-saatler hr {
  border: none;
  height: 1px;
  background: rgba(47, 30, 26, 0.12);
  margin: 14px 0;
}

.calisma-saatleri {
  width: 100%;
  margin-top: 16px;
  border-collapse: collapse;
  background: transparent;
  height: auto;
}

.calisma-saatleri th,
.calisma-saatleri td {
  padding: 12px 10px;
  text-align: center;
  font-size: 14px;
  color: var(--ink);
  border-bottom: 1px solid rgba(47, 30, 26, 0.08);
  font-family: "Manrope", sans-serif;
}

.calisma-saatleri th {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--muted);
}

.calisma-saatleri td {
  background: #f4ece6;
}

.calisma-saatleri-mobile {
  display: none;
}

/* Gallery strip */
.page-box3 {
  width: 100%;
  height: auto;
  overflow: hidden;
  padding: 30px 0;
  background: linear-gradient(135deg, #2f1e1a, #4a322b);
  position: relative;
}

.slider-track {
  display: flex;
  width: fit-content;
  gap: 18px;
  animation: slide 60s linear infinite;
  padding: 0 20px;
  will-change: transform;
}

.slider-track img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease;
}

.slider-track img:hover {
  transform: scale(1.04);
}

.page-box3:hover .slider-track {
  animation-play-state: paused;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* About + contact */
.end-container {
  position: relative;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  background-image: url(Resimler/113.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.end-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(47, 30, 26, 0.7);
}

.hakkimizdatablo,
.iletisimtablo {
  position: relative;
  z-index: 1;
  padding: 34px 28px 28px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #f7f2ee;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  text-align: left;
}

/* İletişim satırlarında ikon + metin yan yana */
.iletisimtablo table tr td{
  display: flex;
  align-items: flex-start;  /* adres gibi çok satırda daha iyi */
  gap: 12px;
  padding: 10px 0;
  line-height: 1.75;
}

/* Başlık satırı flex olmasın */
.iletisimtablo table tr:first-child td,
.iletisimtablo table tr:first-child th{
  display: table-cell;
}

/* İkonlar */
.iletisimtablo img#iletisimicon,
.iletisimtablo img#iletisimiconi{
  width: 22px;
  height: 22px;
  flex: 0 0 22px;          /* ikon sabit kalsın */
  margin-top: 2px;          /* yazıyla hizalar */
}


/* Footer */
footer {
  background: #2f1e1a;
  color: #f7f2ee;
  text-align: center;
  padding: 14px 0;
  position: relative;
}

footer p {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Floating phone */
.tiklarandevu {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.phone-button {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #2f1e1a;
  color: #f7f2ee;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(47, 30, 26, 0.4);
  font-size: 13px;
}

.phone-button a {
  color: #f7f2ee;
  font-weight: 600;
}

#phoneNumber {
  width: 52px;
  height: 52px;
  margin-left: 6px;
  animation: shake 5s infinite;
}

@keyframes shake {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-4px);
  }
  50% {
    transform: translateX(4px);
  }
  75% {
    transform: translateX(-4px);
  }
  100% {
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 900px) {
  header nav ul {
    gap: 14px;
    padding: 10px 14px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .animate-charcter {
    letter-spacing: 0.08em;
  }
}

@media (max-width: 700px) {
  .icon {
    padding: 8px 14px;
  }

  .icon h1 {
    font-size: 10px;
  }

  .head {
    min-height: 65vh;
    padding: 100px 16px 120px;
  }

  .musaittir,
  .musaıttır {
    margin-top: -140px;
    margin-bottom: 36px;
    letter-spacing: 0.2em;
    font-size: 10px;
  }

  .kampanya {
    margin-top: -20px;
    padding: 18px 20px;
  }

  .circle {
    height: 260px;
  }

  .tablo-saatler {
    padding: 20px;
  }

  .calisma-saatleri th,
  .calisma-saatleri td {
    font-size: 11px;
    padding: 8px 6px;
  }

  .slider-track img {
    width: 200px;
    height: 200px;
  }

  .phone-button {
    font-size: 11px;
    padding: 10px 12px;
  }

  #phoneNumber {
    width: 46px;
    height: 46px;
  }
}

/* Extra mobile fixes */
@media (max-width: 900px) {
  header nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .circle-container {
    gap: 16px;
  }
}

@media (max-width: 700px) {
  header nav ul {
    gap: 10px;
    padding: 10px 12px;
  }

  .head {
    padding: 96px 14px 120px;
  }

  .circle {
    width: min(90vw, 320px);
    height: 240px;
  }

  .hizmetler .container {
    padding: 0 16px;
  }

  .calisma-saatleri {
    display: none;
  }

  .calisma-saatleri-mobile {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 16px;
  }

  .calisma-saatleri-mobile .gun {
    background: #f4ece6;
    border-radius: 12px;
    padding: 12px 14px;
    box-shadow: 0 8px 18px rgba(47, 30, 26, 0.12);
  }

  .calisma-saatleri-mobile .gun h4 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
  }

  .calisma-saatleri-mobile .gun p {
    font-weight: 600;
    color: var(--ink);
  }

  .end-container {
    flex-direction: column;
    gap: 16px;
  }

  .hakkimizdatablo,
  .iletisimtablo {
    width: 100%;
  }

  .tiklarandevu {
    right: 12px;
    bottom: 72px;
  }

  .phone-button {
    padding: 10px 12px;
  }

  #phoneNumber {
    width: 44px;
    height: 44px;
  }
}

