/* Bootstrap 5 CDN */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

/* Body reset for detail page */
body.verimlilik-open {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  height: auto !important;
}

.verimlilik-detail-container {
  width: 100%;
  min-height: 100vh;
  position: relative;
}

/* Bootstrap-like utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col-lg-6, .col-md-6, .col-lg-4, .col-md-4, .col-lg-3, .col-lg-8 {
  padding: 0 15px;
}

@media (min-width: 992px) {
  .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
  .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
  .col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
}

@media (min-width: 768px) {
  .col-md-6 { flex: 0 0 50%; max-width: 50%; }
  .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
}

@media (max-width: 767px) {
  .col-lg-6, .col-md-6, .col-lg-4, .col-md-4, .col-lg-3, .col-lg-8 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Navigation */
.navbar {
  padding: 1rem 0;
  background-color: #fff !important;
  box-shadow: 0 2px 4px rgba(0,0,0,.1);
  margin-top: 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333 !important;
  margin: 0;
}

.navbar-right-container {
  display: flex;
  align-items: center;
}

.btn {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.375rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
}

.btn-outline-secondary {
  color: #6c757d;
  border-color: #6c757d;
  background-color: transparent;
}

.btn-outline-secondary:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #1a0033 0%, #2d0136 50%, #1c032b 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="grad"><stop offset="0%" style="stop-color:rgba(255,255,255,0.1)"/><stop offset="100%" style="stop-color:rgba(255,255,255,0)"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23grad)"/><circle cx="800" cy="300" r="150" fill="url(%23grad)"/><circle cx="400" cy="700" r="120" fill="url(%23grad)"/></svg>');
  opacity: 0.3;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, #1a0033 0%, #2d0136 50%, #1c032b 100%);
}

.py-5 {
  padding: 3rem 0;
}

.display-6 {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
}

.fw-bold {
  font-weight: 700;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5);
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.me-2 {
  margin-right: 0.5rem;
}

.ms-3 {
  margin-left: 1rem;
}

.d-flex {
  display: flex;
}

.gap-3 {
  gap: 1rem;
}

.text-center {
  text-align: center;
}

.h3 {
  font-size: 1.75rem;
}

.align-items-center {
  align-items: center;
}

.justify-content-center {
  justify-content: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Cards */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border: 1px solid rgba(0,0,0,.125);
  border-radius: 0.375rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.card-header {
  padding: 0.75rem 1rem;
  background-color: #f8f9fa;
  border-bottom: 1px solid rgba(0,0,0,.125);
  border-radius: 0.375rem 0.375rem 0 0;
}

.card-body {
  flex: 1 1 auto;
  padding: 1rem;
}

.card-title {
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.card-text {
  margin-bottom: 1rem;
}

.border-0 {
  border: 0;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.h-100 {
  height: 100%;
}

.g-4 {
  gap: 1.5rem;
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.card:hover .feature-icon {
  transform: scale(1.1);
}

.rounded-circle {
  border-radius: 50%;
}

.d-inline-flex {
  display: inline-flex;
}

/* Background colors */
.bg-light {
  background-color: #f8f9fa;
}

.bg-primary {
  background-color: #0d6efd;
}

.bg-success {
  background-color: #198754;
}

.bg-info {
  background-color: #0dcaf0;
}

.bg-warning {
  background-color: #ffc107;
}

.bg-secondary {
  background-color: #6c757d;
}

.bg-danger {
  background-color: #dc3545;
}

.bg-dark {
  background-color: #212529;
}

/* Text colors */
.text-white {
  color: #fff;
}

.text-muted {
  color: #6c757d;
}

.text-success {
  color: #198754;
}

/* Lists */
.list-unstyled {
  list-style: none;
  padding-left: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

/* Images */
.img-fluid {
  max-width: 100%;
  height: auto;
}

.rounded-3 {
  border-radius: 0.375rem;
}

/* Utilities */
.p-4 {
  padding: 1.5rem;
}

.small {
  font-size: 0.875rem;
}

.sticky-top {
  position: sticky;
  top: 90px;
  z-index: 1020;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6;
}

/* Responsive */
@media (max-width: 768px) {
  .display-6 {
    font-size: 2rem;
  }
  
  .lead {
    font-size: 1.1rem;
  }
  
  .py-5 {
    padding: 2rem 0;
  }
  
  .gap-3 {
    gap: 0.5rem;
    flex-direction: column;
  }
  
  .d-flex {
    flex-direction: column;
  }
  
  .text-center {
    text-align: center;
  }
  
  .container {
    padding: 0 10px;
  }
  
  .navbar-brand {
    font-size: 1rem;
  }
  
  .btn-sm {
    padding: 0.2rem 0.4rem;
    font-size: 0.8rem;
  }
  
  .card-body {
    padding: 1rem;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
  }
  
  .navbar-right-container {
    flex: 1;
    justify-content: center;
  }
} 