/* Menü Sayfası Özel Stilleri */

/* Site wrapper'ı imza bölümü için düzenle */
body .site-wrapper {
    scroll-snap-type: y mandatory !important;
    scroll-behavior: smooth !important;
    overflow-y: scroll !important;
    height: 100vh !important;
    overscroll-behavior-y: none !important;
}

/* İmzalarımız Bölümü - Scroll-snap ile */
.imza-section {
    display: block;
    height: auto;
    scroll-snap-type: inherit;
}

.imza-slide {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    scroll-snap-align: start;
    flex-shrink: 0;
}

/* Shakira Arka Plan */
#shakira-slide .imza-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("https://images.pexels.com/photos/312418/pexels-photo-312418.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
}

/* Nut Kiss Arka Plan */
#nutkiss-slide .imza-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("https://images.pexels.com/photos/4109744/pexels-photo-4109744.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
}

.imza-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    z-index: -1;
}

.imza-content {
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 2rem;
    z-index: 1;
}

.imza-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #d4a373;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 2px;
}

.imza-description {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #f0f0f0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.imza-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4a373;
    background: rgba(212, 163, 115, 0.2);
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-block;
    border: 3px solid #d4a373;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #d4a373;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.scroll-arrow {
    font-size: 2rem;
    font-weight: bold;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Nut Kiss slide'ında scroll indicator'ı gizle */
#nutkiss-slide .scroll-indicator {
    display: none;
}

/* Footer'ı scroll-snap'e dahil et */
footer {
    scroll-snap-align: end;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .imza-title {
        font-size: 3.5rem;
    }
    
    .imza-description {
        font-size: 1.2rem;
        padding: 0 1rem;
    }
    
    .imza-price {
        font-size: 2rem;
        padding: 12px 25px;
    }
    
    .imza-content {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .imza-title {
        font-size: 2.5rem;
    }
    
    .imza-description {
        font-size: 1rem;
    }
    
    .imza-price {
        font-size: 1.8rem;
        padding: 10px 20px;
    }
}

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

/* ====================================================== */
/* --- MOBİL RESPONSIVE TASARIM (MENÜ SAYFASI) --- */
/* ====================================================== */

/* Tablet */
@media (max-width: 768px) {
    .imza-title {
        font-size: 3.5rem;
    }
    
    .imza-description {
        font-size: 1.2rem;
        padding: 0 1rem;
    }
    
    .imza-price {
        font-size: 2rem;
        padding: 12px 25px;
    }
    
    .imza-content {
        padding: 1rem;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
    
    .scroll-indicator span {
        font-size: 0.9rem;
    }
    
    .scroll-arrow {
        font-size: 1.5rem;
    }
}

/* Mobil */
@media (max-width: 480px) {
    .imza-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        letter-spacing: 1px;
    }
    
    .imza-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        padding: 0 1.5rem;
    }
    
    .imza-price {
        font-size: 1.8rem;
        padding: 10px 20px;
        border-width: 2px;
    }
    
    .imza-content {
        padding: 1rem 0.5rem;
        max-width: 100%;
    }
    
    .scroll-indicator {
        bottom: 15px;
    }
    
    .scroll-indicator span {
        font-size: 0.8rem;
        margin-bottom: 5px;
    }
    
    .scroll-arrow {
        font-size: 1.2rem;
    }
    
    /* Background attachment scroll for mobile performance */
    #shakira-slide .imza-background,
    #nutkiss-slide .imza-background {
        background-attachment: scroll;
    }
}

/* Çok küçük ekranlar */
@media (max-width: 360px) {
    .imza-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .imza-description {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
    
    .imza-price {
        font-size: 1.5rem;
        padding: 8px 16px;
    }
}

/* Landscape orientation fixes for mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .imza-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .imza-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .imza-price {
        font-size: 1.5rem;
        padding: 8px 16px;
    }
    
    .scroll-indicator {
        bottom: 10px;
    }
}

/* İmzalarımız Shakira Slide arka plan */
#shakira-slide .imza-background {
  position: absolute;
  inset: 0;
  background-image: url("/shakira-mobile.avif");
  background-size: cover;
  background-position: center;
  z-index: -2;
}

@media (min-width: 768px) {
  #shakira-slide .imza-background {
    background-image: url("/shakira-desktop.avif");
  }
}

/* Nut Kiss Arka Plan */
#nutkiss-slide { 
  position: relative; 
  min-height: 80vh; 
}

#nutkiss-slide .imza-background {
  position: absolute;
  inset: 0;
  background-image: url("/nutkiss-mobile.avif");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* İçerik üstte kalsın */
#nutkiss-slide .content {
  position: relative;
  z-index: 1;
}

/* Desktop için */
@media (min-width: 768px) {
  #nutkiss-slide .imza-background {
    background-image: url("/nutkiss-desktop.avif");
    background-attachment: fixed; /* fixed sadece desktop’ta */
  }
}

/* ... menü-new.css içinde en son satırlar ... */

/* Shakira ve Nut Kiss başlıkları */
#shakira-slide .content h1,
#nutkiss-slide .content h1 {
  color: #fff;
  font-weight: 700;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}

#shakira-slide .content p,
#nutkiss-slide .content p {
  color: #f1f1f1;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

#shakira-slide .content h1,
#nutkiss-slide .content h1 {
  color: #fff;
  font-weight: 700;

  /* Safari + Chromium tabanlı tarayıcılar */
  -webkit-text-stroke: 1px #000; 
  paint-order: stroke fill;

  /* Firefox fallback */
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

#shakira-slide .content p,
#nutkiss-slide .content p {
  color: #fff;
  font-weight: 500;

  -webkit-text-stroke: 0.5px #000;
  paint-order: stroke fill;

  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

/* İmzalarımız başlık ve açıklamalar için koyu ton + gölge */
#shakira-slide .imza-title,
#nutkiss-slide .imza-title {
  color: #fff;
  font-weight: 700;
  -webkit-text-stroke: 1px #000; /* Safari ve Chromium için outline */
  paint-order: stroke fill;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7); /* Firefox fallback */
}

#shakira-slide .imza-description,
#nutkiss-slide .imza-description {
  color: #f1f1f1;
  font-weight: 500;
  -webkit-text-stroke: 0.5px #000;
  paint-order: stroke fill;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}
