/* ///////////////////////////////////////////////////////////////////////////
   1. SETĂRI GENERALE ȘI CONTAINER 
/////////////////////////////////////////////////////////////////////////// */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f9f9;
}

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

.page-title {
    color: #0a116e;
    border-bottom: 2px solid #eee;
    padding-bottom: 15px;
    font-family: sans-serif;
    margin-bottom: 20px;
}

/* ///////////////////////////////////////////////////////////////////////////
   2. GRILA DE MODELE (Valabilă pentru toate paginile: Femei, Bărbați, etc.)
/////////////////////////////////////////////////////////////////////////// */
.models-grid {
    display: grid;
    /* Creează coloane automate: minim 250px, maxim 1 rând întreg */
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    padding: 20px 0;
}

/* ///////////////////////////////////////////////////////////////////////////
   3. CARDUL INDIVIDUAL AL MODELULUI
/////////////////////////////////////////////////////////////////////////// */
.model-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

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

.model-card img {
    width: 100%;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.model-info {
    padding: 20px 15px;
}

.model-name {
    margin: 0 0 15px 0;
    font-size: 18px;
    color: #333;
    font-family: sans-serif;
}

/* ///////////////////////////////////////////////////////////////////////////
   4. BUTONUL "WATCH LIVE" (Albastrul tău preferat)
/////////////////////////////////////////////////////////////////////////// */
.btn-watch {
    display: block;
    background-color: #1a668a; /* Albastrul petrol din index */
    color: #ffffff;
    padding: 12px 0;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    border-radius: 6px;
    text-transform: uppercase;
    transition: background 0.3s;
}

.btn-watch:hover {
    background-color: #fa6c00; /* Se face portocaliu la hover, stilul tău */
    color: #fff;
}

/* ///////////////////////////////////////////////////////////////////////////
   5. PAGINAȚIE SAU MESAJE "NU SUNT REZULTATE"
/////////////////////////////////////////////////////////////////////////// */
.no-results {
    text-align: center;
    padding: 50px;
    color: #666;
    font-size: 18px;
}
