/*
 * Kıbrıs Night Club - Premium Website CSS
 * Bootstrap 5 Uyumlu - Profesyonel Tasarım
 * Neon efektler minimal, göz yormayan seviyede
 */

/* CSS Değişkenleri - Renk Paleti */
:root {
  /* Ana Renkler */
  --primary-color: #FFD700; /* Altın sarısı */
  --secondary-color: #2c3e50; /* Koyu lacivert */
  --accent-color: #e74c3c; /* Canlı kırmızı */
  --dark-color: #1a1a1a; /* Koyu siyah */
  --light-color: #ffffff; /* Beyaz */
  --gray-color: #6c757d; /* Gri */
  
  /* Neon Efektler (Sınırlı) */
  --neon-primary: rgba(255, 215, 0, 0.3);
  --neon-secondary: rgba(44, 62, 80, 0.2);
  --neon-glow: 0 0 10px rgba(255, 215, 0, 0.5);
  
  /* Tipografi */
  --font-primary: 'Playfair Display', serif;
  --font-secondary: 'Inter', sans-serif;
  
  /* Boşluklar */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-xxl: 3rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  /* Gölgeler */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 8px rgba(0,0,0,0.15);
  --shadow-lg: 0 8px 16px rgba(0,0,0,0.2);
  --shadow-neon: 0 0 20px rgba(255, 215, 0, 0.3);
}

/* Genel Stiller */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-secondary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--light-color);
  background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
  overflow-x: hidden;
}

/* Tipografi */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  margin-bottom: var(--spacing-md);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: var(--spacing-md);
  color: rgba(255, 255, 255, 0.9);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--light-color);
  text-decoration: none;
}

/* Navigasyon */
.navbar {
  background: rgba(26, 26, 26, 0.95) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  padding: 1rem 0;
}

.navbar-brand {
  font-family: var(--font-primary);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color) !important;
  text-shadow: var(--neon-glow);
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9) !important;
  padding: 0.5rem 1rem !important;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color) !important;
  background: rgba(255, 215, 0, 0.1);
  text-shadow: var(--neon-glow);
}

.navbar-nav .nav-link.active {
  color: var(--primary-color) !important;
  background: rgba(255, 215, 0, 0.2);
  text-shadow: var(--neon-glow);
}

/* Hero Bölümü */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: url("../img/1.jpg") center / cover no-repeat;
    filter: blur(8px);
    transform: scale(1.1); /* blur kenarlarını gizlemek için */
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55); /* karartma */
    z-index: 2;
}

.hero-section .container {
    position: relative;
    z-index: 3;
}


.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  background: linear-gradient(45deg, var(--primary-color), var(--light-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-xl);
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Butonlar */
.btn {
  font-family: var(--font-secondary);
  font-weight: 600;
  border-radius: var(--radius-md);
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(45deg, var(--primary-color), #ffed4a);
  color: var(--dark-color);
  border: none;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.btn-primary:hover {
  background: linear-gradient(45deg, #ffed4a, var(--primary-color));
  color: var(--dark-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), var(--shadow-neon);
}

.btn-outline-light {
  background: transparent;
  color: var(--light-color);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--light-color);
  border-color: rgba(255, 255, 255, 0.5);
  text-shadow: var(--neon-glow);
}

/* Section Stilleri */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--spacing-lg);
  background: linear-gradient(45deg, var(--primary-color), var(--light-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.section-subtitle {
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: var(--spacing-xl);
  color: rgba(255, 255, 255, 0.8);
}

/* Kartlar */
.service-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.service-card:hover {
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: var(--shadow-neon);
  transform: translateY(-5px);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  text-shadow: var(--neon-glow);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
  padding: 3rem 0 1rem;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.footer-content h3 {
  color: var(--primary-color);
  text-shadow: var(--neon-glow);
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 215, 0, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
}

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

/* WhatsApp Butonu */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  z-index: 999;
}

.whatsapp-btn:hover {
  background: #128c7e;
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

/* Animasyonlar */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Utility Classes */
.text-gold {
  color: var(--primary-color) !important;
}

.bg-gold {
  background: var(--primary-color) !important;
}

.border-gold {
  border-color: var(--primary-color) !important;
}

.shadow-gold {
  box-shadow: var(--shadow-neon) !important;
}