/* Site ana stili */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Hero section */
.hero-section {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(111, 66, 193, 0.8), rgba(232, 62, 140, 0.8));
    z-index: 0;
}

.z-index-1 {
    position: relative;
    z-index: 1;
}

.min-vh-75 {
    min-height: 75vh;
}

/* Profil kartları */
.profile-card {
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.profile-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.profile-img-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.profile-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.online-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 12px;
    height: 12px;
    background-color: #28a745;
    border-radius: 50%;
    border: 2px solid white;
}

/* Yorumlar */
.testimonial-avatar img, 
.review-avatar img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

/* Diğer stiller... */
.online-indicator {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #28a745;
    border-radius: 50%;
}

.verified-badge {
    position: absolute;
    right: 10px;
    top: 10px;
    color: #28a745;
    font-size: 22px;
}

/* Mesajlaşma stilleri */
.message-bubble {
    display: flex;
    margin-bottom: 15px;
}

.message-bubble.incoming {
    justify-content: flex-start;
}

.message-bubble.outgoing {
    justify-content: flex-end;
}

.message-content {
    max-width: 70%;
    padding: 10px 15px;
    border-radius: 15px;
}

.incoming .message-content {
    background-color: #f1f1f1;
}

.outgoing .message-content {
    background-color: #d1e7ff;
}

/* Header stili */
.navbar {
    background-color: transparent;
    transition: all 0.3s ease;
    padding: 20px 0;
}

.navbar-scrolled {
    background-color: var(--primary-color) !important;
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Footer stili */
footer {
    margin-top: 3rem;
    padding: 2rem 0;
    background-color: #343a40;
    color: #fff;
}

/* Form stilleri */
.form-container {
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,.1);
}

/* Ana Stiller */
:root {
    /* Hero section renklerini tüm site için ana renkler olarak kullan */
    --primary-color: #6f42c1;
    --secondary-color: #e83e8c;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
    --text-color: #333;
    --bg-color: #fff;
    --gradient-start: #e83e8c;
    --gradient-end: #6f42c1;
    
    /* Yeni canlı renkler */
    --accent-color: #ff9800;
    --success-color: #28a745;
    --info-color: #17a2b8;
}

body {
  font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
  overflow-x: hidden;
}

.text-shadow {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.z-index-1 {
  z-index: 1;
}

.z-index-2 {
  z-index: 2;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background-color: #000;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  display: flex;
  align-items: center;
}

.hero-parallax {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.7;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(111, 66, 193, 0.8), rgba(232, 62, 140, 0.8));
  z-index: 0;
}

/* ===== One Night Shot - Modern Landing Overrides ===== */

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  font-size: 0.85rem;
  text-transform: uppercase;
  opacity: 0.9;
}

.hero-kicker::before {
  content: "";
  width: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.7);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.hero-card {
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
}

.search-card {
  border-radius: 16px;
}

.search-section .card-body {
  padding: 1.5rem;
}

.search-section .form-label {
  font-weight: 600;
}

.search-section .input-group-text {
  background: #fff;
}

.search-section .form-control,
.search-section .form-select {
  border-radius: 12px;
}

.search-section .btn {
  border-radius: 12px;
}

.profile-card {
  border-radius: 16px;
}

.profile-card .card-img-top {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.min-vh-80 {
  min-height: 80vh;
}

/* Buttons */
.btn {
  border-radius: 30px;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn-lg {
  padding: 0.8rem 2rem;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  border: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(111, 66, 193, 0.4);
}

.btn-outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  transform: translateY(-3px);
}

.btn-gradient {
  background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
  border: none;
  color: white;
  position: relative;
  z-index: 1;
}

.btn-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--gradient-end), var(--gradient-start));
  z-index: -1;
  transition: opacity 0.3s ease;
  opacity: 0;
  border-radius: 30px;
}

.btn-gradient:hover::before {
  opacity: 1;
}

.btn-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
}

/* Counter Numaraları */
.counter-badge {
  background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
  color: white;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 1.2rem;
}

.feature-counter {
  transition: all 0.3s ease;
  border-radius: 8px;
}

.features-counter {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.counter-icon {
  color: var(--primary-color);
}

.rating i {
  color: #ffc107;
}

/* Profil Kartları */
.profile-card {
  transition: all 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border: none;
  margin-bottom: 20px;
}

.profile-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.profile-img-wrapper {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.profile-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.profile-card:hover .profile-img-wrapper img {
  transform: scale(1.05);
}

.online-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 12px;
  height: 12px;
  background-color: #28a745;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.profile-card .card-body {
  padding: 1.5rem;
}

.profile-card .badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

/* Testimonial Section */
.testimonial-section {
  background-color: #f8f9fa;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.testimonial-card {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-avatar img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-rating i {
  color: #ffc107;
  font-size: 18px;
}

.testimonial-text {
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 20px;
  color: #555;
}

.testimonial-user {
  display: flex;
  align-items: center;
}

/* CTA Section */
.cta {
  background-color: #f8f9fa;
  position: relative;
}

.cta-card {
  background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
  color: white;
  padding: 3rem;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(233, 30, 99, 0.2);
}

.cta-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.cta-text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

.cta-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,.1)' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.3;
  z-index: 1;
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: #aeaeae;
  padding: 80px 0 20px;
}

.footer-title {
  color: white;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 30px;
  background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
}

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

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

.footer-links a {
  color: #aeaeae;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

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

.footer-contact li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.footer-contact li i {
  width: 30px;
  color: var(--primary-color);
}

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

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 30px 0;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-disclaimer {
  opacity: 0.7;
}

.newsletter-form .form-control {
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  border-radius: 30px 0 0 30px;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .btn {
  border-radius: 0 30px 30px 0;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .navbar {
    background-color: var(--dark-color) !important;
    padding-top: 15px;
    padding-bottom: 15px;
    position: static !important;
  }
  
  .hero-section {
    padding-top: 120px;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .profile-img-wrapper {
    height: 220px;
  }
}

@media (max-width: 767.98px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .cta-card {
    padding: 2rem;
  }
  
  .footer {
    padding-top: 40px;
  }
  
  .feature-counter {
    margin-bottom: 15px;
  }
}

@media (max-width: 575.98px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .cta-title {
    font-size: 1.8rem;
  }
  
  .profile-img-wrapper {
    height: 180px;
  }
}

/* Hero bölümü dışında diğer bölümlerin görünürlüğünü sağla */
section:not(.hero-section) {
  background-color: var(--bg-color);
  color: var(--text-color);
}

/* Görsel efektler ve animasyonlar */
.feature-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 10px 20px rgba(232, 62, 140, 0.3);
}

/* Özel animasyonlar */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
} 