/* ===== GENEL ===== */

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Montserrat, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #000;
  color: #fff;
  overflow: hidden; /* body scroll yok, sadece fullpage JS */
  -webkit-font-smoothing: antialiased;
}

/* Linkler */
a {
  text-decoration: none;
  color: inherit;
}

/* Navbar cam efekti */
.navbar-home {
  background-color: rgba(9, 9, 9, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
body.has-fixed-nav {
  padding-top: 0;
}

/* ===== FULLPAGE YAPISI ===== */

main.fullpage {
  position: relative;
  width: 100%;
  height: 100%;      /* yükseklik JS ile innerHeight’e çekilecek */
  overflow: hidden;
}

/* Her section: pozisyon ver, yükseklik JS ile ayarlanacak */
main.fullpage > section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;      /* JS bunu gerçek viewport yüksekliğine set edecek */
  transition: transform 0.75s cubic-bezier(0.25, 0.00, 0.35, 1.00);
}

/* ===== HERO & GÖRSEL SECTİONLAR ===== */

.hero-main,
.service-section,
.stats-section {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-main {
  padding: 0 1.5rem 3rem;
}

.hero-overlay,
.service-overlay,
.stats-overlay {
  position: absolute;
  inset: 0;
}

.hero-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.15));
}
.service-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.25));
}
.stats-overlay {
  background: rgba(0,0,0,0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-title {
  font-size: clamp(1.8rem, 5.6vw, 3.4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.1;
}

/* ===== METİN AĞIRLIKLI BÖLÜMLER ===== */

.section-why,
.portfolio-section,
.contact-section {
  position: relative;
  z-index: 2;
  padding: 4rem 1.5rem;
  box-sizing: border-box;
  overflow-y: auto;               /* içeride scroll olsun */
  -webkit-overflow-scrolling: touch;
}

.section-why {
  background: #111;
  color: #fff;
}
.portfolio-section,
.contact-section {
  background: #fff;
  color: #000;
}

/* ===== SERVİS CONTENT ===== */

.service-content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  padding: 0 1.5rem 1.5rem;
}

.service-btn {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-title {
  margin-top: 0.75rem;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ===== STATS CONTENT ===== */

/* ========== STATS BÖLÜMÜ ========== */

.stats-section {
  position: relative;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.stats-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255,255,255,0.12) 0, transparent 40%),
              rgba(0,0,0,0.70);
}

.stats-content {
  position: relative;
  z-index: 2;
}

/* Grid yapısı: mobilde 2x2, desktop’ta 4lü sıra */

.stats-grid {
  display: grid;
  gap: 1.5rem;
  padding: 2rem 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 992px) {
  .stats-grid {
    padding: 3rem 2rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Card görünümleri */

.stat-item {
  background: rgba(10, 10, 10, 0.55);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 1.4rem 1rem 1.2rem;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.stat-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.75);
  border-color: rgba(255, 215, 160, 0.7);
}

/* İkonlar */

.stat-icon {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
  color: rgba(255, 215, 160, 0.9); /* gold vibe */
}

/* Rakam ve label fontları */

.stat-number {
  font-family: "Playfair Display", "Times New Roman", serif; /* daha lüks bir his */
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat-label {
  margin-top: 0.2rem;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e0dfdb;
}


/* ===== DOT INDICATORS ===== */

.fp-dots {
  position: fixed;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.fp-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: 0.25s ease;
}

.fp-dot.active {
  background: #fff;
  transform: scale(1.4);
}

/* ===== TABLET / DESKTOP SPACING ===== */

@media (min-width: 768px) {
  .hero-main {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .section-why,
  .portfolio-section,
  .contact-section {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
