  :root {
    --primary-color: #212529;
    --text-color: #333;
    --bg-color: #ffffff;
    --shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  }
/* Ana Site CSS */
html {
    position: relative;
    min-height: 100%;
}
/* Genel Stiller */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
	margin-bottom: 300px!important; /* footer yüksekliğinden fazla olması gerekir. */
}

html, body {
    height: 100%; /* HTML ve body yüksekliğinin tam ekranı kaplamasını sağlar */
    margin: 0; /* Varsayılan body boşluğunu kaldırır */
    padding: 0; /* Varsayılan body dolgusunu kaldırır */
    display: flex; /* Flexbox düzenini etkinleştirir */
    flex-direction: column; /* Çocukları dikey olarak hizalar */
}

.nunito-sans {
  font-family: "Nunito Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100,
    "YTLC" 500;
}
/* BAŞLIK STİLLERİ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}
/* LİNK STİLLERİ */
a {
    color: var(--text-color)!important;
    text-decoration: none;
}

a:hover {
    color: var(--text-color)!important;
	font-weight:bold;
    text-decoration: underline;
}

/* HEADER STİLLERİ */
header {
    /*box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);*/
}
  .main-header {
    background: var(--bg-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 999;
  }

  .main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1320px;
    padding: 15px 20px;
    margin: 0 auto;
	position: relative;
  }

  .logo img {
    height: 57px;
  }

  .main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 24px;
	align-items: center;
  }

  .main-nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
  }

  .main-nav ul li a:hover {
    color: var(--primary-color);
  }
  
  .header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
  }
  
  .header-actions .btn {
    margin-left: 12px;
    padding: 8px 16px;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
  }

  .menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-color);
    border-radius: 2px;
  }
  
  .mobile-only {
    display: none;
  }

  .desktop-only {
    display: flex;
  }
  
  .user-dropdown {
    position: relative;
  }

  .dropdown-toggle {
    background: transparent;
    border: 1px solid var(--primary-color);
    padding: 8px 16px;
    border-radius: 6px;
    color: var(--primary-color);
    font-weight: 500;
    cursor: pointer;
  }

  .dropdown-toggle:hover {
    background: var(--primary-color);
    color: #fff;
  }

  .dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: 8px 0;
    display: none;
    min-width: 180px;
    z-index: 999;
  }

  .dropdown-menu li {
    list-style: none;
  }

  .dropdown-menu li a {
    display: block;
    padding: 10px 16px;
    color: #333;
    text-decoration: none;
  }

  .dropdown-menu li a:hover {
    background-color: #f3f3f3;
  }

  .user-dropdown:hover .dropdown-menu {
    display: block;
  }
  
 .user-icon {
    cursor: pointer;
    padding: 10px;
  }

  .mobile-user-menu {
    display: none;
    position: absolute;
    top: 60px;
    right: 20px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 6px;
    padding: 10px 0;
    z-index: 999;
    width: 200px;
  }

  .mobile-user-menu li {
    list-style: none;
  }

  .mobile-user-menu li a {
    display: block;
    padding: 10px 16px;
    color: #333;
    text-decoration: none;
  }

  .mobile-user-menu li a:hover {
    background-color: #f5f5f5;
  } 
  
  
  @media (max-width: 768px) {
    .main-nav {
      position: absolute;
      top: 60px;
      left: 0;
      right: 0;
      background: #fff;
      box-shadow: var(--shadow);
      display: none;
      flex-direction: column;
    }
    body.mobile-menu-open .main-nav {
      display: flex;
    }

    .main-nav ul {
      flex-direction: column;
      gap: 16px;
      padding: 20px;
    }
	.main-nav .btn-primary{color:#fff!important;}
    .menu-toggle {
      display: flex;
    }

    .header-actions.desktop-only {
      display: none;
    }

    .mobile-only {
      display: block;
    }
	    .desktop-only {
      display: none !important;
    }
  }
/* MAİN */
main {
	flex:1;
}

.bg-dark{
	background:lightseagreen!important;
}

/* NAVBAR */
.navbar-brand {
    font-weight: 700;
}

/* Ana Sayfa Özellikleri */
.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
/*    height: 70px;*/
    border-radius: 50%;
}

.step-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    font-size: 24px;
    font-weight: bold;
    border-radius: 50%;
}

.testimonial-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    font-weight: bold;
    border-radius: 50%;
}

/* Kullanıcı Paneli Stiller */
.user-dashboard .card {
    transition: transform 0.3s ease;
}

.user-dashboard .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Form Stiller */
.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.btn-primary {
    background: var(--primary-color)!important;
    border: 1px solid var(--primary-color)!important;	
    color: #fff!important;
    border: none;
}

.btn-primary:hover {
	color:#fff!important;
    background-color:  var(--primary-color)!important;
    border: 1px solid var(--primary-color)!important;
}
.btn-outline {
    background: transparent;
    border: 1px solid var(--primary-color)!important;
    color: var(--primary-color)!important;
}

.btn-outline:hover {
    background: var(--primary-color)!important;
    color: #fff!important;
    border: 1px solid var(--primary-color)!important;	
}


/* Paket Kartları */
.pricing-card {
    transition: transform 0.3s ease;
    border-radius: 10px;
}

.pricing-card:hover {
    transform: scale(1.03);
}

.pricing-card.featured {
    border-color: #0d6efd;
    border-width: 2px;
}

/* Ödeme Sayfası */
.payment-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
}

/* Kullanıcı Logları */
.screenshot-thumbnail {
    max-width: 100px;
    border-radius: 5px;
    border: 1px solid #dee2e6;
}

/* Breadcrumb */
#breadcrumb {
	background: #f9f9f9;
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
	padding-top: 8px;
    padding-bottom: 8px;
	padding-left:15px;
}
}
.breadcrumb {
    background-color: transparent;
    padding: 0.75rem 0px;
}
.breadcrumb-item a{
	text-decoration: none;
	font-size:smaller;
	color:var(--bs-breadcrumb-item-active-color);
}
.breadcrumb-item.active{
    font-size: smaller;
    padding-top: 3px;
	color: var(--bs-breadcrumb-item-active-color);
}


/* Footer Stilleri Başlangıcı */
.site-footer {
    margin-top: 50px;
    flex-shrink: 0;
    background-color: #fff;
    color: #595959;
    /*padding: 40px 0 20px;  Üstten, alttan ve yanlardan boşluk */
    font-size: 15px;
    line-height: 1.6;
	
}

.footer-header{
	height: 10px;
    background: #f9f9f9;
    margin-bottom: 30px;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #333;
    margin-bottom: 20px;
}

.footer-column h3 {
    color: var(--text-color);
    font-size: 17px;
    margin-bottom: 15px;
    position: relative;
}

/* Başlıkların Altındaki İnce Çizgi (İsteğe bağlı, Hupalupa'da yok ama ekleyebilirsiniz) */
/*
.footer-column h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: #your-highlight-color; // Vurgu renginizi buraya girin
    margin-top: 5px;
}
*/

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--text-color);
}

.footer-logo {
    display: inline-block;
    margin-bottom: 15px;
}

.footer-logo img {
    max-width: 150px;
    height: auto;
    display: block;
}

.footer-info p {
    margin-bottom: 15px;
}

.footer-contact p {
    margin-bottom: 8px;
    color: var(--text-color);
}

.footer-contact i {
    margin-right: 8px;
    color: var(--text-color);
    font-size: 16px;
}

.social-links {
    margin-top: 15px;
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--text-color);
    font-size: 20px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    color: var(--text-color);
}

.footer-bottom {
    text-align: left;
    font-size: 12px;
    color: #595959;
	margin-bottom:40px;
	padding-bottom:20px;
}

.footer-bottom div{
	float:left;
}

.footer-bottom p {
    margin: 5px 0;
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Küçük ekranlarda sütunları otomatik sığdır */
        gap: 20px; /* Boşluğu azalt */
    }

    .footer-column {
        margin-bottom: 20px; /* Sütunlar alt alta gelince aralarına boşluk */
    }

    .footer-info {
        margin-bottom: 30px; /* Logo/info sütunu altına daha fazla boşluk */
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 30px 0 15px;
    }

     .footer-logo img {
        max-width: 120px; /* Küçük ekranlarda logoyu küçült */
    }

    .social-links a {
        font-size: 18px; /* Küçük ekranlarda ikon boyutunu küçült */
    }

     .footer-bottom {
         font-size: 13px;
     }
}

/* Footer Stilleri Sonu */

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2.5rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
}

/* Özel Animasyonlar */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Yükleniyor Animasyonu */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: #0d6efd;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* .mobile için stil */
@media (max-width: 767px) {
    .mobile {
        display: block!important; /* Mobile cihazlarda görünür */
    }
    .desktop {
        display: none!important; /* Mobile cihazlarda gizli */
    }
}

/* .desktop için stil */
@media (min-width: 768px) {
    .desktop {
        display: block!important; /* Desktop cihazlarda görünür */
    }
    .mobile {
        display: none!important; /* Desktop cihazlarda gizli */
    }
}