/* Fall in Fun - Bileşen CSS'leri */

/* Navigation */
.navbar {
  background: white;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: #374151;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8), transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
}

.hero-title {
  font-size: 3.75rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #4b5563;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Event Types Section - Artık Tailwind sınıfları kullanılıyor */

/* Event Type Cards - Artık Tailwind sınıfları kullanılıyor */

/* Venues Section - Artık Tailwind sınıfları kullanılıyor */

/* Gallery Section - Artık Tailwind sınıfları kullanılıyor */

/* Testimonials Section - Artık Tailwind sınıfları kullanılıyor */

/* FAQ Section - Artık Tailwind sınıfları kullanılıyor */

.faq-item {
  background: white;
  border-radius: 16px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f9fafb;
}

.faq-question-text {
  font-weight: 600;
  color: #111827;
}

.faq-icon {
  font-size: 1.25rem;
  color: #9ca3af;
  transition: transform 0.3s ease;
}

.faq-icon.rotated {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: #4b5563;
  display: none;
}

.faq-answer.active {
  display: block;
}

/* Contact Section - Artık Tailwind sınıfları kullanılıyor */

/* Terms and Privacy Pages */
.terms-content h3 { 
  margin-top: 2rem; 
  margin-bottom: 1rem; 
  font-weight: 600; 
  color: #1f2937; 
}

.terms-content h4 { 
  margin-top: 1.5rem; 
  margin-bottom: 0.75rem; 
  font-weight: 600; 
  color: #374151; 
}

.terms-content p { 
  margin-bottom: 1rem; 
  line-height: 1.7; 
  color: #4b5563; 
}

.terms-content ul { 
  margin-bottom: 1rem; 
  padding-left: 1.5rem; 
}

.terms-content li { 
  margin-bottom: 0.5rem; 
  line-height: 1.6; 
  color: #4b5563; 
}

.terms-content strong { 
  color: #1f2937; 
  font-weight: 600; 
}

.toc-link { 
  transition: all 0.2s ease; 
}

.toc-link:hover { 
  color: #FF6B6B; 
}

.section-content { 
  line-height: 1.7; 
}

.highlight-box { 
  background: linear-gradient(135deg, #FF6B6B10, #4ECDC410); 
}

/* Cookie Toggle Switches */
.cookie-toggle {
  position: relative;
  width: 50px;
  height: 24px;
  background-color: #E5E7EB;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  outline: none;
}

.cookie-toggle::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background-color: white;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cookie-toggle.active {
  background-color: #FF6B6B;
}

.cookie-toggle.active::before {
  transform: translateX(26px);
}

.cookie-toggle:hover {
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

/* Cookie Checkboxes */
.cookie-checkbox {
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid #D1D5DB;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: white;
}

.cookie-checkbox::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 6px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: all 0.3s ease;
}

.cookie-checkbox.checked {
  background-color: #FF6B6B;
  border-color: #FF6B6B;
}

.cookie-checkbox.checked::before {
  opacity: 1;
}

.cookie-checkbox:hover {
  border-color: #FF6B6B;
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.contact-label {
  font-weight: 600;
  color: #111827;
}

.contact-value {
  color: #4b5563;
}

/* Footer - Artık Tailwind sınıfları kullanılıyor */

/* Responsive Design */
@media (max-width: 768px) {
  .navbar-nav {
    display: none;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .event-types {
    padding: 3rem 0;
  }
  
  .venues-section {
    padding: 3rem 0;
  }
  
  .gallery-section {
    padding: 3rem 0;
  }
  
  .testimonials-section {
    padding: 3rem 0;
  }
  
  .faq-section {
    padding: 3rem 0;
  }
  
  .contact-section {
    padding: 3rem 0;
  }
  
  .footer {
    padding: 3rem 0;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Contact Form Styles */
.contact-form-loading {
  opacity: 0.6;
  pointer-events: none;
}

.contact-form-loading .btn-primary {
  background-color: #9ca3af;
  cursor: not-allowed;
}

.contact-form-loading .btn-primary:hover {
  background-color: #9ca3af;
}

/* Form validation styles */
.field-error {
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Form message styles */
.form-message {
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Loading spinner animation */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.animate-spin {
  animation: spin 1s linear infinite;
}

/* Honeypot field - ensure it's completely hidden */
#contact-website {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
