/* --------------------
   RESET & BASE
-------------------- */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --------------------
   SCROLLBAR (Özel Kaydırma Çubuğu)
-------------------- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #052b1d; /* Kuka Green */
}

::-webkit-scrollbar-thumb {
  background: #D4AF37; /* Kuka Gold */
  border-radius: 4px;
}

::selection {
    background: #D4AF37;
    color: #052b1d;
}

/* --------------------
   TAILWIND HARİCİ ÖZEL DÜZELTMELER
-------------------- */
/* Resimlerin taşmasını engellemek için genel kural */
img {
    max-width: 100%;
    height: auto;
}

/* Google Maps iframe responsive düzeltmesi */
iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
}