/*
Theme Name: VIP Models Agency
Theme URI: https://blackjackagency.site
Author: Custom Theme
Description: VIP Model Ajans Sitesi
Version: 1.0.0
Text Domain: vip-models
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0f0f1a;
    --bg-card: #1a1a2e;
    --bg-purple: #16213e;
    --gold: #c9a227;
    --green: #25D366;
    --white: #ffffff;
    --gray: #888;
    --text: #e0e0e0;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #16213e 100%);
    background-attachment: fixed;
    color: var(--white);
    line-height: 1.6;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =====================
   HEADER
   ===================== */
.site-header {
    background: rgba(15, 15, 26, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
}

.site-logo span {
    color: var(--gold);
}

.main-nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

.main-nav a {
    font-size: 14px;
    font-weight: 400;
    color: var(--text);
    transition: color 0.3s;
}

.main-nav a:hover {
    color: var(--gold);
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--green);
    border-radius: 50%;
    font-size: 20px;
    transition: transform 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* =====================
   HERO
   ===================== */
.hero-section {
    padding: 120px 0 40px;
    text-align: center;
}

.hero-subtitle {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 500;
}

.hero-title span {
    font-style: italic;
}

/* =====================
   PROMO
   ===================== */
.promo-area {
    padding: 20px 0;
}

.promo-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-box img {
    max-width: 100%;
    border-radius: 8px;
}

/* =====================
   MODELS GRID
   ===================== */
.models-section {
    padding: 30px 0 60px;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

@media (max-width: 1200px) {
    .models-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .models-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 500px) {
    .models-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================
   MODEL CARD
   ===================== */
.model-card {
    background: transparent;
    text-align: center;
}

.model-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 15px;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.model-card:hover .model-image {
    border-color: rgba(201, 162, 39, 0.5);
}

.model-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.model-card:hover .model-image img {
    transform: scale(1.05);
}

.model-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #d4af37 0%, #f5e6a3 100%);
    color: #1a1a2e;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.model-info {
    padding: 0 10px;
}

.model-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--white);
}

.model-description {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 12px;
}

.model-meta {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.model-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.btn-whatsapp-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 30px;
    background: var(--green);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 25px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-whatsapp-main:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.btn-profile-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    font-size: 18px;
    transition: background 0.3s;
}

.btn-profile-link:hover {
    background: var(--gold);
    color: #1a1a2e;
}

/* No Models */
.no-models {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    color: var(--gray);
}

.no-models h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--white);
}

/* =====================
   FOOTER
   ===================== */
.site-footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-text {
    color: var(--gray);
    font-size: 13px;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 768px) {
    .header-inner {
        flex-wrap: wrap;
        gap: 10px;
    }

    .main-nav {
        order: 3;
        width: 100%;
    }

    .main-nav ul {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .hero-section {
        padding: 100px 0 30px;
    }
}

/* WordPress */
.wp-block-image img {
    height: auto;
}

.aligncenter {
    display: block;
    margin: 0 auto;
}