/*
Theme Name: Astra Child - VIP Model
Template: astra
Version: 1.0.0
*/

/* KOYU TEMA RENKLERİ */
:root {
    --vip-bg: #0f0f1a;
    --vip-card: #1a1a2e;
    --vip-accent: #e94560;
    --vip-text: #ffffff;
    --vip-text-muted: #a0a0a0;
    --vip-border: #2d2d44;
}

body {
    background-color: var(--vip-bg) !important;
    color: var(--vip-text) !important;
}

/* Header */
.site-header {
    background: linear-gradient(135deg, var(--vip-card) 0%, #16213e 100%) !important;
    border-bottom: 3px solid var(--vip-accent) !important;
}

/* Model Grid */
.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px;
}

.model-card {
    background: var(--vip-card) !important;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--vip-border);
    transition: all 0.3s ease;
}

.model-card:hover {
    transform: translateY(-5px);
    border-color: var(--vip-accent);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
}

.model-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.model-info {
    padding: 20px;
}

.model-name {
    font-size: 22px;
    font-weight: bold;
    color: var(--vip-accent);
    margin-bottom: 10px;
}

.model-location {
    color: var(--vip-text-muted);
    margin-bottom: 15px;
}

.whatsapp-btn {
    display: block;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: opacity 0.3s;
}

.whatsapp-btn:hover {
    opacity: 0.9;
}

/* Footer */
.site-footer {
    background: var(--vip-card) !important;
    color: var(--vip-text-muted) !important;
}

/* MOBİL UYUMLULUK */
@media (max-width: 768px) {
    .models-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 10px;
    }
    
    .model-img {
        height: 200px;
    }
    
    .model-name {
        font-size: 16px;
    }
    
    .whatsapp-btn {
        font-size: 12px;
        padding: 10px;
    }
}
