/* Reset ve temel stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #2c2c2c;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 0 20px;
    background: #1a1a1a;
    min-height: 100vh;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    display: flex;
    flex-direction: column;
    border-radius: 0;
    overflow: hidden;
    border: 2px solid #ffd700;
}

.container.has-background {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Ana içerik alanı */
main {
    flex: 1;
}

/* Header ve Logo - Küçültüldü */
.header {
    text-align: center;
    padding: 10px 20px;
    background: #1a1a1a;
    margin: 0 -20px 20px -20px;
    border-radius: 0;
    border-bottom: 2px solid #ffd700;
}

.logo {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Kategori başlığı - genel */
.category-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: bold;
    margin: 40px 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
}

/* Platin başlık - Altın efekt */
.category-title.platin {
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(255, 215, 0, 0.3);
}

/* VIP başlık - Renkli efekt */
.category-title.vip {
    color: #ff6b6b;
    text-shadow: 2px 2px 4px rgba(255, 107, 107, 0.3);
}

/* Gold başlık - Bronz efekt */
.category-title.gold {
    color: #cd7f32;
    text-shadow: 2px 2px 4px rgba(205, 127, 50, 0.3);
}

/* Platin - 2'li grid */
.platin-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 50px;
    padding: 0 20px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* VIP - 3'lü grid */
.vip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
    padding: 0 20px;
}

/* Gold - 4'lü grid */
.gold-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
    padding: 0 20px;
}

/* Responsive tasarımlar */
@media (max-width: 900px) {
    .vip-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .gold-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
    
    .category-title {
        font-size: 1.7rem;
    }
}

@media (max-width: 600px) {
    .platin-grid {
        gap: 20px;
        padding: 0 10px;
    }
    
    .vip-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        padding: 0 10px;
    }
    
    .gold-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
        padding: 0 10px;
    }
    
    .category-title {
        font-size: 1.4rem;
        margin: 30px 0 15px 0;
    }
}

@media (max-width: 480px) {
    .platin-grid {
        gap: 15px;
        padding: 0 5px;
    }
    
    .vip-grid {
        gap: 8px;
        padding: 0 5px;
    }
    
    .gold-grid {
        gap: 6px;
        padding: 0 5px;
    }
    
    .category-title {
        font-size: 1.2rem;
        margin: 25px 0 10px 0;
        letter-spacing: 1px;
    }
}

.lady-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
    height: 250px;
    contain: layout style paint;
    background: #2c2c2c;
    border: 2px solid #ffd700;
}

/* VIP ve Gold kartları için yeni tasarım */
.vip-grid .lady-card, .gold-grid .lady-card {
    background: #2c2c2c;
    border: 2px solid #ffd700;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    contain: layout style paint;
}

.vip-grid .lady-card {
    height: 280px;
}

.gold-grid .lady-card {
    height: 280px;
}

/* VIP ve Gold kart içeriği */
.vip-grid .lady-card-content, .gold-grid .lady-card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

/* VIP ve Gold resim alanı */
.vip-grid .lady-image-area, .gold-grid .lady-image-area {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    margin: 4px 4px 0 4px;
    background: rgba(0,0,0,0.2);
}

.vip-grid .lady-image-area img, .gold-grid .lady-image-area img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

/* VIP ve Gold buton alanı */
.vip-grid .lady-buttons-area, .gold-grid .lady-buttons-area {
    padding: 4px 4px 4px 4px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex-shrink: 0;
}

/* Gold için özel buton alanı */
.gold-grid .lady-buttons-area {
    padding: 3px 3px 3px 3px;
    gap: 2px;
}

.vip-grid .lady-button, .gold-grid .lady-button {
    background: #000000;
    color: white;
    padding: 3px 6px;
    border-radius: 10px;
    font-size: 0.65rem;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
    border: 1px solid #ffd700;
    cursor: pointer;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Gold butonları için özel stil */
.gold-grid .lady-button {
    padding: 2px 4px;
    font-size: 0.6rem;
    height: 16px;
    border-radius: 8px;
}

/* Buton renkleri - Sabit renkler */
.vip-grid .lady-button.turk, .gold-grid .lady-button.turk {
    background: #000000;
    color: white;
    border: 1px solid #ffd700;
}

.vip-grid .lady-button.age, .gold-grid .lady-button.age {
    background: #000000;
    color: white;
    border: 1px solid #ffd700;
}

.vip-grid .lady-button.whatsapp, .gold-grid .lady-button.whatsapp {
    background: #000000;
    color: white;
    border: 1px solid #ffd700;
}

/* Platin kartları için özel stil */
.platin-grid .lady-card {
    height: 200px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    background: #2c2c2c;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 3px solid #ffd700;
    contain: layout style paint;
}

/* Platin kart içeriği */
.platin-card-content {
    display: flex;
    height: 100%;
    position: relative;
    padding: 15px;
    gap: 15px;
    align-items: stretch;
}

/* Sol taraf - butonlar */
.platin-buttons-section {
    width: 28%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 8px 0;
    height: 100%;
}

.platin-button {
    background: #000000;
    border: 1px solid #ffd700;
    color: white;
    padding: 6px 8px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: bold;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
    flex: none;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platin-button.turk {
    background: #000000;
    color: white;
    border: 1px solid #ffd700;
}

.platin-button.whatsapp {
    background: #000000;
    color: white;
    border: 1px solid #ffd700;
}

/* Sağ taraf - resimler */
.platin-images-section {
    width: 72%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    position: relative;
    height: 100%;
    align-items: stretch;
}

.platin-image-slot {
    background: rgba(0,0,0,0.3);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd700;
    font-weight: bold;
    font-size: 0.8rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    height: 100%;
    border: 1px solid #ffd700;
}

.platin-image-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive tasarım güncellemeleri */

@media (max-width: 768px) {
    .lady-card {
        height: 180px;
        border-radius: 12px;
    }
    
    .platin-grid .lady-card {
        height: 170px;
    }
    
    .platin-card-content {
        padding: 12px;
        gap: 12px;
    }
    
    .platin-button {
        font-size: 0.65rem;
        padding: 5px 6px;
        height: 28px;
    }
    
    .platin-images-section {
        gap: 6px;
    }
    
    .vip-grid .lady-card {
        height: 200px;
    }
    
    .gold-grid .lady-card {
        height: 200px;
    }
    
    .vip-grid .lady-button, .gold-grid .lady-button {
        padding: 2px 4px;
        font-size: 0.6rem;
        height: 18px;
    }
    
    .gold-grid .lady-button {
        padding: 1px 3px;
        font-size: 0.55rem;
        height: 15px;
    }
}

@media (max-width: 480px) {
    .lady-card {
        height: 160px;
        border-radius: 10px;
    }
    
    .platin-grid .lady-card {
        height: 150px;
    }
    
    .platin-card-content {
        padding: 10px;
        gap: 10px;
    }
    
    .platin-button {
        font-size: 0.6rem;
        padding: 4px 5px;
        height: 24px;
    }
    
    .platin-images-section {
        gap: 4px;
    }
    
    .vip-grid .lady-card {
        height: 180px;
    }
    
    .gold-grid .lady-card {
        height: 180px;
    }
    
    .vip-grid .lady-button, .gold-grid .lady-button {
        padding: 2px 4px;
        font-size: 0.55rem;
        height: 16px;
    }
    
    .gold-grid .lady-button {
        padding: 1px 2px;
        font-size: 0.5rem;
        height: 14px;
    }
}

/* Lady card hover efekti kaldırıldı - performans optimizasyonu */

.lady-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    background: #f8f9fa;
}

.lady-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.4), rgba(0,0,0,0.8));
    color: white;
    padding: 12px 10px 10px 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 30%;
}

/* İsim sol üstte */
.lady-name-top {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 1.3rem;
    font-weight: bold;
    color: #dda0dd;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.9);
    text-transform: capitalize;
    z-index: 10;
}

@media (max-width: 768px) {
    .lady-overlay {
        height: 25%;
        padding: 8px 6px 6px 6px;
    }
}

@media (max-width: 480px) {
    .lady-overlay {
        height: 20%;
        padding: 6px 4px 4px 4px;
    }
}

.lady-name {
    display: none;
}

@media (max-width: 768px) {
    .lady-name-top {
        font-size: 1.1rem;
        top: 10px;
        left: 10px;
    }
}

@media (max-width: 480px) {
    .lady-name-top {
        font-size: 1rem;
        top: 8px;
        left: 8px;
    }
}

.lady-description {
    display: none;
}

.lady-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
}

@media (max-width: 768px) {
    .lady-details {
        gap: 3px;
    }
}

@media (max-width: 480px) {
    .lady-details {
        gap: 2px;
        flex-direction: row;
        justify-content: space-around;
    }
}

.lady-age, .lady-city {
    background: rgba(255,182,193,0.8);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.9);
    border: 1px solid rgba(255,182,193,0.5);
    font-weight: 600;
}

@media (max-width: 768px) {
    .lady-age, .lady-city {
        padding: 3px 5px;
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .lady-age, .lady-city {
        padding: 2px 4px;
        font-size: 0.6rem;
        border-radius: 8px;
    }
}

.lady-price {
    display: none;
}

.lady-info {
    /* Bu class artık kullanılmıyor, overlay ile değiştirildi */
    display: none;
}

/* Kısa metin alanı - kaldırıldı */
.short-text {
    display: none;
}

/* Footer - Header ile aynı boyutta */
.footer {
    text-align: center;
    padding: 10px 20px;
    background: #1a1a1a;
    margin: 20px -20px 0 -20px;
    border-radius: 0;
    border-top: 2px solid #ffd700;
}

.footer p {
    color: #ffd700;
    font-size: 0.9rem;
    margin: 0;
    font-weight: bold;
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .container {
        padding: 0 10px 0 10px;
    }
    
    .logo {
        font-size: 1.0rem;
        letter-spacing: 1px;
    }
    
    .header {
        padding: 8px 10px;
        margin: 0 -10px 15px -10px;
        border-radius: 0;
    }
    
    .footer {
        padding: 8px 10px;
        margin: 15px -10px 0 -10px;
    }
    
    .ladies-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        padding: 0 10px;
    }
    
    .lady-card {
        font-size: 0.8rem;
    }
    
    .lady-image {
        height: 120px;
    }
    
    .lady-info {
        padding: 10px;
    }
    
    .lady-name {
        font-size: 1rem;
        margin-bottom: 5px;
    }
    
    .lady-description {
        font-size: 0.7rem;
        margin-bottom: 8px;
        display: none;
    }
    
    .lady-details {
        flex-direction: column;
        gap: 5px;
    }
    
    .lady-age, .lady-city {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
    
    .lady-price {
        font-size: 0.7rem;
        padding: 5px 10px;
    }
    
    .short-text {
        padding: 25px 15px;
        margin: 30px 0;
    }
    
    .short-text p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 5px 0 5px;
    }
    
    .logo {
        font-size: 1.0rem;
        letter-spacing: 0.5px;
    }
    
    .header {
        padding: 6px 5px;
        margin: 0 -5px 10px -5px;
        border-radius: 0;
    }
    
    .footer {
        padding: 6px 5px;
        margin: 10px -5px 0 -5px;
    }
    
    .footer p {
        font-size: 0.8rem;
    }
    
    .ladies-grid {
        gap: 8px;
        padding: 0 5px;
    }
    
    .lady-image {
        height: 100px;
    }
    
    .lady-info {
        padding: 8px;
    }
    
    .lady-name {
        font-size: 0.9rem;
    }
    
    .lady-age, .lady-city, .lady-price {
        font-size: 0.6rem;
        padding: 2px 6px;
    }
    
    .short-text p {
        font-size: 0.8rem;
    }
}

/* Global img kurallarını kart alanlarında sıfırla */
.cover-photo-area img,
.platin-photo-slot-new img {
    contain: none !important;
    max-width: none !important;
    max-height: none !important;
    image-rendering: auto !important;
    -webkit-image-rendering: auto !important;
}

/* ============================================
   YENİ KART TASARIMI
   Platin: 2li grid, 3 foto üstte, şehir+isim altta
   VIP: 3lü grid, 1 kapak foto, şehir+isim altta
   Gold: 4lü grid, 1 kapak foto, şehir+isim altta
   ============================================ */

/* Platin kart yüksekliği - auto yap */
.platin-grid .lady-card {
    height: auto !important;
    min-height: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 0 !important;
    overflow: hidden;
    border-radius: 12px;
    contain: none !important;
}

/* Platin - 3 foto yan yana satır */
.platin-photos-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    padding: 3px;
    flex: 1;
}

.platin-photo-slot-new {
    aspect-ratio: 2/3;
    background: #111;
    overflow: hidden;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd700;
    font-size: 0.55rem;
    font-weight: bold;
}

.platin-photo-slot-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* VIP ve Gold kart - column layout */
.vip-grid .lady-card,
.gold-grid .lady-card {
    height: auto !important;
    min-height: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden;
    border-radius: 12px;
    contain: none !important;
}

/* ─── KAPAK FOTOĞRAFI ─────────────────────────────────────
   Yaklaşım: aspect-ratio DOĞRUDAN img etiketine uygula.
   Böylece position:absolute ve padding-top gerekmiyor.
   img genişliği = %100 (kart genişliği),
   yüksekliği = aspect-ratio'ya göre otomatik,
   object-fit:cover → resim kutuyu tam doldurur, kenar boşluk yok.
────────────────────────────────────────────────────────── */
.cover-photo-area {
    width: 100% !important;
    overflow: visible !important;
    background: #111 !important;
    display: block !important;
    flex-shrink: 0 !important;
    position: relative !important;
}

/* VIP ve Gold resmi - TÜM resim görünsün, SIFIR kırpma */
/* width:100% → kartın tam genişliği, height:auto → resmin kendi oranı */
.vip-grid .cover-photo-area img,
.gold-grid .cover-photo-area img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: unset !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: unset !important;
    aspect-ratio: unset !important;
    contain: none !important;
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
}

/* Resim yoksa placeholder metin */
.cover-photo-area .no-img-text {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%);
    color: #ffd700;
    font-size: 0.7rem;
    font-weight: bold;
    white-space: nowrap;
}

/* Kart alt bilgi - şehir + isim */
.card-label {
    padding: 5px 6px;
    background: #111;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    border-top: 1px solid #333;
    flex-shrink: 0;
}

.card-city {
    color: #ffd700;
    font-size: 0.58rem;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.2;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.card-name {
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-transform: capitalize;
}

@media (max-width: 600px) {
    .card-city { font-size: 0.5rem; }
    .card-name { font-size: 0.62rem; }
    .card-label { padding: 3px 4px; }
}

@media (max-width: 480px) {
    .card-city { font-size: 0.45rem; }
    .card-name { font-size: 0.55rem; }
    .card-label { padding: 2px 3px; gap: 0; }
}

/* SEO ve erişilebilirlik için */
img {
    max-width: 100%;
    height: auto;
    image-rendering: auto;
    image-rendering: crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    contain: layout style;
}

a {
    color: #ffd700;
    text-decoration: none;
}

/* Yükleme animasyonu - performans optimizasyonu için basitleştirildi */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,215,0,.3);
    border-radius: 50%;
    border-top-color: #ffd700;
}

/* Placeholder resimler için */
.placeholder-image {
    width: 100%;
    height: 100%;
    background: #2c2c2c;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd700;
    font-size: 1rem;
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid #ffd700;
}

/* Global Banner Alanı */
.global-banner {
    margin: 20px 20px 0 20px;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid #ffd700;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    cursor: pointer;
    position: relative;
    display: block;
    text-decoration: none;
}

.global-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.global-banner:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .global-banner {
        margin: 15px 10px 0 10px;
        border-width: 2px;
    }
}

@media (max-width: 480px) {
    .global-banner {
        margin: 10px 5px 0 5px;
        border-width: 2px;
    }
}

/* Platin üstü özel metin alanı */
.platin-top-message {
    background: #1a1a1a;
    border: 3px solid #ffd700;
    border-radius: 15px;
    padding: 15px 20px;
    margin: 20px 20px 30px 20px;
    text-align: left;
    color: white !important;
    font-size: 1.1rem;
    font-weight: bold;
    line-height: 1.4;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    position: relative;
}

/* Köşelerde altın efekt */
.platin-top-message::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ffd700, #ffb300, #ffd700, #ffb300);
    border-radius: 17px;
    z-index: -1;
}

.platin-top-message::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: #1a1a1a;
    border-radius: 13px;
    z-index: -1;
}

@media (max-width: 768px) {
    .platin-top-message {
        margin: 15px 10px 20px 10px;
        padding: 12px 15px;
        font-size: 1rem;
        border-width: 2px;
    }
    
    .platin-top-message::before {
        border-radius: 15px;
    }
    
    .platin-top-message::after {
        border-radius: 11px;
    }
}

@media (max-width: 480px) {
    .platin-top-message {
        margin: 10px 5px 15px 5px;
        padding: 10px 12px;
        font-size: 0.9rem;
        border-width: 2px;
    }
    
    .platin-top-message::before {
        border-radius: 13px;
    }
    
    .platin-top-message::after {
        border-radius: 9px;
    }
} 