/* =============================
   Gaziantep Hacamat - Style.css
   Versiyon: 1.0
   ============================= */

/* -----------------------------
   GENEL AYARLAR
--------------------------------*/
:root {
  --primary-color: #136f41;       /* Doğal yeşil ton */
  --secondary-color: #f8f9fa;
  --success-color: #198754;
  --warning-color: #ffc107;
  --text-color: #333;
  --text-muted: #555;
  --font-family: 'Poppins', Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 13px;
}

body {
  font-family: var(--font-family);
  color: var(--text-color);
  background-color: #fff;
  line-height: 1.6;
}

/* -----------------------------
   NAVBAR
--------------------------------*/
.navbar {
  transition: all 0.3s ease;
  background-color: #fff;
}

.navbar .navbar-brand {
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--primary-color);
}

.navbar .navbar-brand:hover {
  color: var(--primary-color);
  text-decoration: none;
}

.navbar .nav-link {
  color: var(--text-color);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.2s ease-in-out;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: var(--primary-color);
}

/* -----------------------------
   HERO (Arka Plan Görselli)
--------------------------------*/
#hero {
  position: relative;
  min-height: 90vh;
  background: url("https://www.gaziantepprp.com/img/gaziantepprp.jpg") center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
}

/* Overlay efekti */
#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* İçerik katmanı */
#hero .container {
  position: relative;
  z-index: 2;
}

/* Metinler */
#hero h1 {
  color: #fff;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

#hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

#hero .btn {
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

#hero .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* -----------------------------
   SECTIONS (Genel Başlıklar)
--------------------------------*/
section h3 {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

section p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* -----------------------------
   TABLE (Fiyatlar)
--------------------------------*/
.table {
  border-radius: 10px;
  overflow: hidden;
}

/* -----------------------------
   FOOTER
--------------------------------*/
footer a {
  color: #fff;
  text-decoration: none;
  transition: all 0.2s ease;
}

footer a:hover {
  text-decoration: underline;
}

/* -----------------------------
   RESPONSIVE AYARLAR
--------------------------------*/
@media (max-width: 768px) {
  #hero {
    text-align: center;
    background-position: top center;
    padding: 6rem 1rem;
  }

  #hero h1 {
    font-size: 1.8rem;
  }

  #hero p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  #hero h1 {
    font-size: 1.5rem;
  }

  #hero p {
    font-size: 0.9rem;
  }

  #hero .btn {
    width: 100%;
    padding: 0.75rem;
  }
}
