/*
 * Kıbrıs Night Club - Responsive CSS
 * Mobil uyumlu, tablet ve desktop için özel stiller
 */

/* Genel Responsive Kuralları */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }
  
  /* Navigasyon */
  .navbar-brand {
    font-size: 1.5rem;
  }
  
  .navbar-nav {
    text-align: center;
    padding: 1rem 0;
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 1rem !important;
    margin: 0.25rem 0;
  }
  
  /* Hero */
  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }
  
  /* Section Başlıkları */
  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
  }
  
  /* Servis Kartları */
  .service-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  /* Hakkımızda */
  .about-features {
    flex-direction: column;
    align-items: center;
  }
  
  .feature-item {
    margin-bottom: 1rem;
    text-align: center;
  }
  
  /* Transfer Bilgi */
  .transfer-info .row .col-md-4 {
    margin-bottom: 2rem;
  }
  
  /* İletişim */
  .contact-card {
    margin-bottom: 2rem;
    padding: 1.5rem;
  }
  
  /* Footer */
  .footer-content {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .footer-links,
  .footer-contact {
    margin-bottom: 2rem;
    text-align: center;
  }
  
  /* WhatsApp Butonu */
  .whatsapp-btn {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
    bottom: 1.5rem;
    right: 1.5rem;
  }
}

@media (max-width: 576px) {
  .container {
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  /* Hero */
  .hero-content {
    padding: 1.5rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  /* Section Başlıkları */
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  /* Butonlar */
  .btn-lg {
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
  }
  
  /* Servis Kartları */
  .service-card {
    padding: 1.25rem;
  }
  
  /* Footer */
  .footer {
    padding: 2rem 0 1rem;
  }
}

/* Tablet Özel */
@media (min-width: 768px) and (max-width: 991px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .service-card {
    padding: 1.75rem;
  }
}

/* Büyük Ekranlar */
@media (min-width: 1200px) {
  .hero-title {
    font-size: 4rem;
  }
  
  .section-title {
    font-size: 3rem;
  }
  
  .service-card {
    padding: 2.25rem;
  }
}

/* Çok Küçük Ekranlar */
@media (max-width: 320px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .navbar-brand {
    font-size: 1.3rem;
  }
  
  .whatsapp-btn {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}

/* Yüksek DPI Ekranlar */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero-title,
  .section-title {
    font-weight: 600;
  }
  
  .service-icon {
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
  }
}

/* Yatay Mod */
@media (orientation: landscape) and (max-width: 768px) {
  .hero-section {
    min-height: 80vh;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
}

/* Touch Cihazlar */
@media (hover: none) and (pointer: coarse) {
  .btn:hover {
    transform: none;
  }
  
  .service-card:hover {
    transform: none;
  }
  
  .social-links a:hover {
    transform: none;
  }
}

/* Print */
@media print {
  .whatsapp-btn,
  .back-to-top {
    display: none !important;
  }
  
  .hero-section {
    background: white !important;
    color: black !important;
  }
  
  .service-card {
    background: white !important;
    border: 1px solid #ddd !important;
    color: black !important;
  }
}