/* Köksal Hurda - Custom Styles */
/* Only styles that Tailwind cannot handle or need custom definitions */

:root {
  --color-primary: #1a1a2e;
  --color-accent: #e67e22;
  --color-accent-hover: #d35400;
  --color-green: #27ae60;
  --color-green-hover: #219a52;
  --color-surface: #ffffff;
  --color-surface-alt: #f8f9fa;
  --color-text: #1a1a2e;
  --color-text-muted: #6b7280;
  --color-border: #e5e7eb;
}

.dark {
  --color-primary: #0f172a;
  --color-surface: #1e293b;
  --color-surface-alt: #0f172a;
  --color-text: #f1f5f9;
  --color-text-muted: #94a3b8;
  --color-border: #334155;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Focus states */
*:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* FAQ Accordion */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer.open {
  max-height: 500px;
}

.faq-icon {
  transition: transform 0.3s ease;
}

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

/* Mobile menu */
.mobile-menu {
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu.open {
  transform: translateX(0);
}

/* Gallery filter */
.gallery-item {
  transition: opacity 0.3s ease;
}

/* Sticky bottom bar */
.sticky-bottom-bar {
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

/* Counter animation */
.counter-value {
  font-variant-numeric: tabular-nums;
}

/* Dark mode transition */
body {
  transition: background-color 0.2s ease, color 0.2s ease;
}

/* Print styles */
@media print {
  .no-print,
  .sticky-bottom-bar,
  .mobile-menu {
    display: none !important;
  }
}

/* Aspect ratio fallback */
.aspect-video {
  aspect-ratio: 16 / 9;
}

.aspect-square {
  aspect-ratio: 1 / 1;
}

.aspect-4-3 {
  aspect-ratio: 4 / 3;
}
