/* Project base styles extracted from index.html */
:root {
  --glass: rgba(255, 255, 255, 0.10);
  --blur: 14px;
  --glass-border: rgba(255, 255, 255, 0.14);
}

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

.glass {
  background: var(--glass);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.grid-bg {
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* Light theme tweaks for glass on bright backgrounds */
body.light {
  --glass: rgba(255, 255, 255, 0.75);
  --blur: 12px;
  --glass-border: rgba(0, 0, 0, 0.06);
}

/* Hero Slider Styles */
#hero-slider {
  z-index: 1;
}

#hero-slider img {
  transition: opacity 1s ease-in-out;
}

#hero-slider img[style*="opacity: 0"] {
  opacity: 0 !important;
}

#hero-slider img[style*="opacity: 1"] {
  opacity: 1 !important;
}

/* Ensure content sections are above slider */
#urunler {
  position: relative;
  z-index: 10;
  background: white;
}

#yorumlar {
  position: relative;
  z-index: 10;
  background: transparent;
}

#sss {
  position: relative;
  z-index: 10;
  background: transparent;
}

footer {
  position: relative;
  z-index: 10;
  background: white;
}

/* Header styling for slider background */
header {
  background: transparent !important;
}

header nav {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Mobile Responsive Styles */
@media (max-width: 640px) {
  .glass {
    --blur: 8px;
  }
  
  /* Mobile menu animations */
  #mobileMenu {
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.3s ease;
  }
  
  #mobileMenu:not(.hidden) {
    transform: translateY(0);
    opacity: 1;
  }
  
  /* Mobile grid adjustments */
  .grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  
  /* Mobile text sizing */
  .text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  
  .text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  
  /* Mobile spacing */
  .px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .gap-4 {
    gap: 1rem;
  }
}

/* Tablet Responsive Styles */
@media (min-width: 641px) and (max-width: 1024px) {
  .glass {
    --blur: 10px;
  }
  
  /* Tablet grid adjustments */
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  /* Tablet text sizing */
  .sm\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  
  .sm\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}


