/* ============================================
   MAKEUP DİDEM GİRGİN - Statik Web Sitesi
   CSS Dosyası
   ============================================ */

/* Reset ve Temel Stiller */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #ffffff;
  color: #111827;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 128px; /* Header (80px) + Sticky WhatsApp (48px) */
}

@media (max-width: 768px) {
  body {
    padding-top: 124px; /* Mobilde daha küçük */
  }
}

/* Renk Tanımlamaları */
:root {
  --primary-50: #fef2f2;
  --primary-100: #fee2e2;
  --primary-200: #fecaca;
  --primary-300: #fca5a5;
  --primary-400: #f87171;
  --primary-500: #ef4444;
  --primary-600: #dc2626;
  --primary-700: #b91c1c;
  --primary-800: #991b1b;
  --primary-900: #7f1d1d;
  
  --accent-50: #fdf4ff;
  --accent-100: #fae8ff;
  --accent-200: #f5d0fe;
  --accent-300: #f0abfc;
  --accent-400: #e879f9;
  --accent-500: #d946ef;
  --accent-600: #c026d3;
  
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  
  --green-500: #22c55e;
  --green-600: #16a34a;
}

/* Container ve Layout */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

@media (min-width: 768px) {
  .section-container {
    padding: 4rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .section-container {
    padding: 5rem 2rem;
  }
}

/* Sticky WhatsApp CTA - Header'ın üstünde sabit */
.sticky-whatsapp-cta {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #ffffff;
  padding: 0.75rem 1rem;
  z-index: 1001;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.sticky-whatsapp-cta:hover {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.sticky-whatsapp-cta svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .sticky-whatsapp-cta {
    padding: 0.625rem 0.75rem;
    font-size: 0.875rem;
  }
  
  .sticky-whatsapp-cta svg {
    width: 18px;
    height: 18px;
  }
}

/* Header - Sticky WhatsApp butonunun altında */
header {
  position: fixed;
  top: 48px; /* Sticky WhatsApp butonunun yüksekliği */
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  transition: all 0.3s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}


header.scrolled {
  background-color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  nav {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  nav {
    padding: 0 2rem;
  }
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-600);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo img {
  max-height: 50px;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

@media (min-width: 768px) {
  .logo {
    font-size: 1.875rem;
  }
  
  .logo img {
    max-height: 60px;
    max-width: 220px;
  }
}

@media (max-width: 480px) {
  .logo img {
    max-height: 40px;
    max-width: 150px;
  }
}

/* Menü */
.desktop-menu {
  display: none;
}

@media (min-width: 1024px) {
  .desktop-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
}

.menu-item {
  padding: 0.5rem 1rem;
  color: var(--gray-700);
  font-weight: 500;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.2s;
}

.menu-item:hover {
  color: var(--primary-600);
  background-color: var(--gray-50);
}

.mobile-menu-btn {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--gray-700);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.2s;
}

.mobile-menu-btn:hover {
  color: var(--primary-600);
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  display: none;
  padding-bottom: 1rem;
  border-top: 1px solid var(--gray-200);
  margin-top: 0.5rem;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-item {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--gray-700);
  font-weight: 500;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.2s;
}

.mobile-menu-item:hover {
  color: var(--primary-600);
  background-color: var(--gray-50);
}

/* Butonlar */
.btn-primary {
  background-color: var(--primary-600);
  color: #ffffff;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: var(--primary-700);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: #ffffff;
  color: var(--primary-600);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  border: 2px solid var(--primary-600);
  cursor: pointer;
}

.btn-secondary:hover {
  background-color: var(--gray-50);
}

.btn-whatsapp {
  background-color: var(--green-500);
  color: #ffffff;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.btn-whatsapp:hover {
  background-color: var(--green-600);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
  transform: translateY(-2px);
}

/* Sticky WhatsApp CTA - Header'da sabit */
.sticky-whatsapp-cta {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #ffffff;
  padding: 0.75rem 1rem;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.sticky-whatsapp-cta:hover {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.sticky-whatsapp-cta svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .sticky-whatsapp-cta {
    padding: 0.625rem 0.75rem;
    font-size: 0.875rem;
  }
  
  .sticky-whatsapp-cta svg {
    width: 18px;
    height: 18px;
  }
}

/* Header'ı sticky WhatsApp butonunun altına kaydır */
header {
  position: fixed;
  top: 48px; /* Sticky WhatsApp butonunun yüksekliği */
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  transition: all 0.3s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

  gap: 0.5rem;
  transition: all 0.3s;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  border: none;
  cursor: pointer;
}

.btn-whatsapp:hover {
  background-color: var(--green-600);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

/* Kartlar */
.card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  overflow: hidden;
}

.card:hover {
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

/* Grid Sistemleri */
.grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

/* Responsive grid - inline style yoksa varsayılan davranış */
/* Responsive grid - inline style olmayan grid'lere varsayılan davranış */
@media (min-width: 768px) {
  .grid:not([style*="grid-template-columns"]) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .grid:not([style*="grid-template-columns"]) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.2;
}

h1 {
  font-size: 2.25rem;
}

@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: 3.75rem;
  }
}

h2 {
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  h2 {
    font-size: 3rem;
  }
}

h3 {
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  h3 {
    font-size: 1.875rem;
  }
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@media (min-width: 768px) {
  .section-subtitle {
    font-size: 1.25rem;
  }
}

/* Hero Slider */
.hero-slider {
  position: relative;
  height: 100vh;
  max-height: 800px;
  overflow: hidden;
  margin-top: 80px;
}

@media (max-width: 768px) {
  .hero-slider {
    height: 85vh;
    min-height: 600px;
    max-height: 700px;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    height: 80vh;
    min-height: 550px;
    max-height: 650px;
  }
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s;
  z-index: 0;
}

.slide.active {
  opacity: 1;
  z-index: 10;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, var(--primary-100), var(--accent-50), var(--primary-50));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  .slide-bg {
    background-size: cover;
    background-position: center center;
    min-height: 100%;
  }
}

@media (max-width: 480px) {
  .slide-bg {
    background-size: cover;
    background-position: center center;
    min-height: 100%;
  }
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
}

.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  text-align: center;
  padding: 1rem;
}

@media (max-width: 768px) {
  .slide-content {
    padding: 2rem 1rem;
    align-items: flex-end;
    padding-bottom: 3rem;
  }
}

@media (max-width: 480px) {
  .slide-content {
    padding: 1.5rem 1rem;
    align-items: flex-end;
    padding-bottom: 2.5rem;
  }
}

.slide-text {
  max-width: 64rem;
  margin: 0 auto;
}

.slide-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (min-width: 640px) {
  .slide-title {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  .slide-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .slide-title {
    font-size: 4.5rem;
  }
}

.slide-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@media (min-width: 640px) {
  .slide-subtitle {
    font-size: 1.25rem;
  }
}

@media (min-width: 768px) {
  .slide-subtitle {
    font-size: 1.5rem;
  }
}

.slide-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .slide-buttons {
    flex-direction: row;
  }
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  background-color: rgba(255, 255, 255, 0.8);
  color: var(--gray-800);
  padding: 0.75rem;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.slider-nav:hover {
  background-color: #ffffff;
  transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
  left: 1rem;
}

.slider-nav.next {
  right: 1rem;
}

.slider-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  display: flex;
  gap: 0.5rem;
}

.indicator {
  height: 0.5rem;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  width: 0.5rem;
}

.indicator.active {
  width: 2rem;
  background-color: #ffffff;
}

.indicator:hover {
  background-color: rgba(255, 255, 255, 0.75);
}

/* Before/After Slider */
.before-after-container {
  position: relative;
  width: 100%;
  height: 24rem;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  cursor: col-resize;
  user-select: none;
}

@media (min-width: 768px) {
  .before-after-container {
    height: 500px;
  }
}

.before-after-bg {
  position: absolute;
  inset: 0;
}

.before-after-bg.after {
  background: linear-gradient(to bottom right, var(--primary-200), var(--accent-200));
}

.before-after-bg.before {
  background: linear-gradient(to bottom right, var(--gray-300), var(--gray-400));
  clip-path: inset(0 50% 0 0);
}

.before-after-slider {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #ffffff;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  z-index: 10;
  left: 50%;
  transform: translateX(-50%);
}

.before-after-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3rem;
  height: 3rem;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
}

.before-after-handle:active {
  cursor: grabbing;
}

.before-after-label {
  position: absolute;
  top: 1rem;
  background-color: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  z-index: 20;
}

.before-after-label.before {
  left: 1rem;
}

.before-after-label.after {
  right: 1rem;
}

/* Galeri */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  background-color: var(--gray-100);
  color: var(--gray-700);
}

.filter-btn:hover {
  background-color: var(--gray-200);
}

.filter-btn.active {
  background-color: var(--primary-600);
  color: #ffffff;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 0.5rem;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-item-overlay {
  background-color: rgba(0, 0, 0, 0.2);
}

.gallery-item-category {
  opacity: 0;
  color: #ffffff;
  font-weight: 600;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-item-category {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  background-color: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: #ffffff;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s;
  z-index: 10;
}

.lightbox-close:hover {
  color: var(--gray-300);
}

.lightbox-content {
  position: relative;
  max-width: 1280px;
  max-height: 90vh;
  width: 100%;
  height: 100%;
}

.lightbox-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0.5rem;
}

/* Footer */
footer {
  background-color: var(--gray-900);
  color: var(--gray-300);
  padding: 3rem 1rem;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.footer-section h3,
.footer-section h4 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--gray-300);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--primary-400);
}

.footer-bottom {
  border-top: 1px solid var(--gray-800);
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
}

/* Form Stilleri */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.3s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-textarea {
  resize: none;
}

.alert {
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.alert-success {
  background-color: #dcfce7;
  border: 1px solid #86efac;
  color: #166534;
}

.alert-error {
  background-color: #fee2e2;
  border: 1px solid #fca5a5;
  color: #991b1b;
}

/* Utility Sınıfları */
.text-center {
  text-align: center;
}

.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }

.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }

.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

.pt-20 { padding-top: 5rem; }

.bg-white { background-color: #ffffff; }
.bg-gray-50 { background-color: var(--gray-50); }
.bg-gray-900 { background-color: var(--gray-900); }

.text-white { color: #ffffff; }
.text-gray-600 { color: var(--gray-600); }
.text-gray-700 { color: var(--gray-700); }
.text-gray-900 { color: var(--gray-900); }
.text-primary-600 { color: var(--primary-600); }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }

.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-full { border-radius: 9999px; }

.shadow-lg { box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1); }

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

.fade-in {
  animation: fadeIn 0.6s ease-in;
}

/* ============================================
   YENİ MODERN ÖZELLİKLER
   ============================================ */

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(to right, var(--primary-600), var(--accent-600));
  z-index: 9999;
  transition: width 0.1s ease;
}

/* Scroll Animasyonları */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Parallax Efekti */
.parallax {
  will-change: transform;
}

/* Floating WhatsApp Butonu */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background-color: var(--green-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
  overflow: hidden;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(34, 197, 94, 0.5);
}

.floating-whatsapp svg {
  width: 28px;
  height: 28px;
}

.floating-whatsapp-text {
  position: absolute;
  right: 70px;
  background-color: var(--green-500);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  white-space: nowrap;
  font-weight: 600;
  display: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.floating-whatsapp-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--green-500);
  animation: pulse 2s infinite;
  opacity: 0.6;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

@media (max-width: 640px) {
  .floating-whatsapp {
    width: 56px;
    height: 56px;
    bottom: 1rem;
    right: 1rem;
  }
  
  .floating-whatsapp svg {
    width: 24px;
    height: 24px;
  }
}

/* Back to Top Butonu */
.back-to-top {
  position: fixed;
  bottom: 5rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background-color: var(--primary-600);
  border: none;
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-700);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(220, 38, 38, 0.4);
}

@media (max-width: 640px) {
  .back-to-top {
    bottom: 4rem;
    right: 1rem;
    width: 44px;
    height: 44px;
  }
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Testimonial Card */
.testimonial-card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid var(--gray-200);
}

.testimonial-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.testimonial-rating {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.testimonial-text {
  color: var(--gray-700);
  line-height: 1.75rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* Counter Animasyonu */
.counter {
  display: inline-block;
}

/* Loading Spinner (isteğe bağlı) */
.loading-spinner {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 4px solid var(--gray-200);
  border-top-color: var(--primary-600);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Mikro Interaksiyonlar - Button Hover */
.btn-primary,
.btn-secondary,
.btn-whatsapp {
  position: relative;
  overflow: hidden;
}

.btn-primary::before,
.btn-secondary::before,
.btn-whatsapp::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before,
.btn-secondary:hover::before,
.btn-whatsapp:hover::before {
  width: 300px;
  height: 300px;
}

/* Card Hover Efektleri */
.card {
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

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

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Real Brides Grid */
.real-brides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.real-bride-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.real-bride-item:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.real-bride-item:hover .real-bride-overlay {
  opacity: 1 !important;
}

@media (max-width: 1024px) {
  .real-brides-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .real-brides-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }
  
  .section-container h2[style*="font-size: 3.5rem"] {
    font-size: 2.5rem !important;
  }
}

@media (max-width: 480px) {
  .real-brides-grid {
    grid-template-columns: 1fr !important;
    gap: 0.75rem;
  }
}

/* Didem Girgin Tanıtım Bölümü Responsive */
@media (min-width: 768px) {
  .section-container .grid[style*="grid-template-columns: 1fr"] {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 767px) {
  .section-container .grid[style*="grid-template-columns: 1fr"] {
    grid-template-columns: 1fr !important;
  }
  
  /* Hoş Geldin başlıkları mobilde küçült */
  .section-container h2[style*="font-size: 3rem"] {
    font-size: 2rem !important;
  }
  
  .section-container h2[style*="font-size: 4rem"] {
    font-size: 2.5rem !important;
  }
  
  /* Dekoratif imza mobilde gizle */
  .section-container div[style*="position: absolute"][style*="right: -2rem"] {
    display: none !important;
  }
}

/* Responsive */
@media (max-width: 640px) {
  .section-container {
    padding: 2rem 1rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

