/* === BREGNEFF DESIGN SYSTEM === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap');

:root {
    --primary: #000000;
    --accent: #007bff; /* Синий для кнопок действий */
    --success: #28a745;
    --danger: #dc3545;
    --bg-light: #f4f6f9;
    --text-dark: #333;
    --white: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

/* Логотип */
.brand-logo {
    font-weight: 800;
    font-size: 24px;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}
.brand-logo i { font-size: 20px; }

/* Карточки */
.card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

/* Кнопки */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: 0.2s;
    font-size: 14px;
}
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: #333; }

.btn-accent { background: var(--accent); color: white; }
.btn-accent:hover { background: #0056b3; }

.btn-success { background: var(--success); color: white; }
.btn-danger { background: var(--danger); color: white; }
.btn-outline { border: 1px solid #ddd; background: white; color: #555; }

/* Сетка проектов */
.grid-shoots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

/* Статистика */
.stats-row {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}
.stat-box {
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    display: flex;
    align-items: center;
    gap: 15px;
}
.stat-icon {
    width: 50px; height: 50px;
    background: #f0f2f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
}
.stat-info h3 { margin: 0; font-size: 24px; }
.stat-info p { margin: 0; color: #777; font-size: 13px; }

/* Фото сетка */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}
.photo-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    background: white;
}
.photo-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}
.photo-actions {
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}
.delete-btn {
    color: var(--danger);
    background: none;
    border: none;
    cursor: pointer;
}