/* =========================================================
   STIL UNIVERSAL MARCEL 2026
   Compatibil cu: skypeshowprivate.com, freecamsflirt.com, skypeadult.com
   Include: Header, Grid modele, Carduri, Footer, Responsive
========================================================= */

/* --- RESET GENERAL --- */
* {
    box-sizing: border-box; /* Toate elementele să includă padding + border în width/height */
    margin: 0;
    padding: 0;
}

/* --- BODY & FONTURI --- */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f4; /* Fundal neutru, consistent pe toate site-urile */
    color: #333; /* Text principal */
}

/* =========================================================
   CONTAINERE GENERALE
   max-width, padding și centrare
========================================================= */
.container,
.grid-container,
.main-wrapper,
.footer-container {
    max-width: 1200px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

/* =========================================================
   HEADER PRINCIPAL
   - Logo în stânga
   - Titlu centrat
   - Caseta de căutare în dreapta
========================================================= */
.main-header {
    background: #fff;
    border-bottom: 4px solid #ff4081;
    padding: 15px 0;
}

.header-flex {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap;
}

/* =========================================================
   GRID MODELE / CARDURI
   - 4 coloane pe desktop
   - Gap între carduri
   - Stil card, imagine și content
========================================================= */
ul.grid,
.models-grid,
.gallery-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 30px auto !important;
}

.card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: 0.3s ease;
    position: relative;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    display: block;
}

.card .content {
    padding: 15px;
    text-align: center;
}

.card .name {
    font-weight: bold;
    font-size: 18px;
}

/* =========================================================
   STATUS ONLINE / OFFLINE PE CARDURI
========================================================= */
.badge-status {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: bold;
    color: #fff;
    z-index: 5;
}

.badge-online {
    background: #27ae60;
}

.badge-offline {
    background: #7f8c8d;
}

/* =========================================================
   FOOTER PRINCIPAL
   - 4 coloane
   - Titlu colorat vibrant
========================================================= */
.main-footer {
    background: #ffffff !important;
    color: #333 !important;
    padding: 60px 0 0 0 !important;
    border-top: 5px solid #ff4081 !important;
    margin-top: 50px;
}

.footer-container {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 40px !important;
}

.footer-title {
    color: #ff4081;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #333;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ff4081;
    padding-left: 5px;
}

.footer-bottom {
    background: #f9f9f9;
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid #eee;
    margin-top: 40px;
    font-size: 13px;
    color: #888;
}

/* =========================================================
   RESPONSIVE - TABLET / MOBIL
   Ajustări grid și header
========================================================= */
@media (max-width: 992px) {
    ul.grid,
    .footer-container {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 650px) {
    ul.grid,
    .footer-container {
        grid-template-columns: 1fr !important;
    }

    .footer-section {
        text-align: center;
    }

    .header-flex {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}